Files
lldp-mapper/config.py.example
dstephenson 40d4679a59 Initial commit — LLDP network mapper
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-21 20:56:13 +00:00

21 lines
1.1 KiB
Plaintext

# 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"