Initial commit — LLDP network mapper
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -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"
|
||||
Reference in New Issue
Block a user