- Pull current config from router (OpenWRT 24.10.2) - Add backup, safe-apply, and push-all scripts - Add CLAUDE.md with workflow rules and context - Add network-map.md with current topology and planned VLANs Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
81 lines
1.7 KiB
Plaintext
81 lines
1.7 KiB
Plaintext
|
|
config dnsmasq
|
|
option domainneeded '1'
|
|
option localise_queries '1'
|
|
option rebind_protection '1'
|
|
option rebind_localhost '1'
|
|
option local '/lan/'
|
|
option domain 'lan'
|
|
option expandhosts '1'
|
|
option cachesize '1000'
|
|
option authoritative '1'
|
|
option readethers '1'
|
|
option leasefile '/tmp/dhcp.leases'
|
|
option resolvfile '/tmp/resolv.conf.d/resolv.conf.auto'
|
|
option localservice '1'
|
|
option ednspacket_max '1232'
|
|
|
|
config dhcp 'lan'
|
|
option interface 'lan'
|
|
option start '100'
|
|
option limit '150'
|
|
option leasetime '12h'
|
|
option dhcpv4 'server'
|
|
option dhcpv6 'server'
|
|
option ra 'server'
|
|
list ra_flags 'managed-config'
|
|
list ra_flags 'other-config'
|
|
|
|
config dhcp 'wan'
|
|
option interface 'wan'
|
|
option ignore '1'
|
|
|
|
config odhcpd 'odhcpd'
|
|
option maindhcp '0'
|
|
option leasefile '/tmp/hosts/odhcpd'
|
|
option leasetrigger '/usr/sbin/odhcpd-update'
|
|
option loglevel '4'
|
|
|
|
config host
|
|
option name 'everlost.lan'
|
|
list mac '2C:CF:67:22:B0:52'
|
|
option ip '10.0.0.2'
|
|
option leasetime 'infinite'
|
|
|
|
config host
|
|
option name 'homeassistant.lan'
|
|
list mac '2C:CF:67:71:81:82'
|
|
option ip '10.0.0.11'
|
|
option leasetime 'infinite'
|
|
|
|
config host
|
|
option name 'doorbell.lan'
|
|
list mac 'D0:76:02:1B:0E:26'
|
|
option ip '10.0.0.41'
|
|
option leasetime 'infinite'
|
|
|
|
config host
|
|
option name 'frigate.lan'
|
|
list mac '2C:CF:67:71:91:F0'
|
|
option ip '10.0.0.12'
|
|
option leasetime 'infinite'
|
|
|
|
config host
|
|
option name 'jester.lan'
|
|
list mac '10:C3:7B:4E:B2:3F'
|
|
option ip '10.0.0.21'
|
|
option leasetime 'infinite'
|
|
|
|
config host
|
|
option name 'wayfaerer.lan'
|
|
list mac 'B8:27:EB:F1:F4:FC'
|
|
option ip '10.0.0.22'
|
|
option leasetime 'infinite'
|
|
|
|
config dhcp 'guest'
|
|
option interface 'guest'
|
|
option start '100'
|
|
option limit '150'
|
|
option leasetime '12h'
|
|
|