2026-01-27 13:13:02 -05:00
[ database ]
path = "./oott.db" # Database path. Make sure it's writeable for the user running this process
2026-01-23 11:00:24 -05:00
[ networking ]
2026-05-29 07:35:25 -04:00
# interface = "eno1" # Optional: network interface to use for scans. If not set, the first non-loopback connected interface is used.
2026-01-23 11:00:24 -05:00
2026-01-23 08:28:56 -05:00
[ log ]
level = "info" # off, error, warn, info, debug, trace
2026-05-28 17:57:26 -04:00
[ arp_scanner ]
2026-06-01 19:00:56 -04:00
enabled = true # Set to false to disable the ARP scanner
2026-05-29 09:37:33 -04:00
wait_between_scans = "30m" # Wait time between scans. This does not include the scan time
2026-05-28 17:57:26 -04:00
sender_timeout = "1m" # If the ARP sender process takes longer than this it will be stopped (for a class C network - 254 IPs - it should take less than a minute)
scan_duration = "10m" # How long to wait for response packets on each scan (5m to 10m is a good timeframe for a class B or C network)
2026-01-23 10:25:45 -05:00
2026-05-29 09:37:33 -04:00
[ mdns_scanner ]
2026-06-01 19:00:56 -04:00
enabled = true # Set to false to disable the mDNS/Bonjour scanner
2026-05-29 09:37:33 -04:00
probe_timeout = "2s" # When an mDNS-discovered IP is not in the OS ARP cache, how long to wait for a targeted ARP probe reply to resolve its MAC address
2026-06-01 17:58:13 -04:00
[ ssdp_scanner ]
2026-06-01 19:00:56 -04:00
enabled = true # Set to false to disable the SSDP/UPnP scanner
2026-06-01 17:58:13 -04:00
probe_timeout = "2s" # When an SSDP/UPnP-discovered IP is not in the OS ARP cache, how long to wait for a targeted ARP probe reply to resolve its MAC address
2026-06-01 19:00:56 -04:00
[ dhcp_scanner ]
enabled = true # Set to false to disable the DHCP scanner
2026-01-23 10:25:45 -05:00
[ notifications ]
method = "pushover" # For now just pushover, you can set this to "none" to avoid sending notifications (it will just log)
2026-01-23 15:08:58 -05:00
notify_when_not_seen_for = "1w" # Send a notification if a device comes back online after not being seen for this timeframe
2026-01-23 10:25:45 -05:00
[ notifications . pushover ]
token = "" # Your pushover token goes here, just copy&paste from their website after creating the app
user_key = "" # User key goes here, this is the account wide code for pushover
2026-02-26 16:30:51 -05:00
[ web_server ]
ip_address = "0.0.0.0" # IP to bind the web server for the API and web UI to, use 0.0.0.0 to bind it to all interfaces
port = 3000 # Port to listen on
api_key = "CHANGE_ME" # API Key to use the system's API, change this!
2026-05-28 09:00:36 -04:00
[ retention ]
window = "365d" # How long to keep device events and notifications. Records older than this are deleted daily. Supports: d (days), w (weeks), h (hours), m (minutes)