Initial commit — LLDP network mapper

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
dstephenson
2026-04-21 20:56:13 +00:00
commit 40d4679a59
17 changed files with 2691 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
# config.py - Central configuration
# Copy this file to config.py and fill in your values.
# ─── NocoDB ───────────────────────────────────────────────────────────────────
NOCODB_URL = "http://192.168.x.x:8080"
NOCODB_TOKEN = "your-nocodb-api-token"
# ─── SSH ──────────────────────────────────────────────────────────────────────
SSH_USERNAME = "admin"
SSH_PASSWORD = "your-ssh-password"
SSH_PORT = 22
SSH_TIMEOUT = 30
# Netmiko device type for FS switches (IOS-like CLI)
DEVICE_TYPE = "cisco_ios"
# ─── Output paths ─────────────────────────────────────────────────────────────
DATA_DIR = "/data"
DB_PATH = "/data/network.db"
EXPORTS_DIR = "/data/exports"