OpenWRT disconnecting completely

Hi,

I’ve been using my OpenWRT router as my main router for a few weeks now. My Freebox POP is now in bridge mode and my devices are all connected to my OpenWRT router.

I’ve been having issues where my router is disconnecting completely : I lose internet, I can’t connect to it using a ethernet cable (but it works when OpenWRT is working fine too), and it happened one time that it seems to boot on an older firmware version, but two electrical reboots put it back in working mode.

Here are my configurations :

root@OpenWrt:~# ubus call system board
{
"kernel": "6.6.119",
"hostname": "OpenWrt",
"system": "ARMv8 Processor rev 4",
"model": "Xiaomi Mi Router AX3000T (OpenWrt U-Boot layout)",
"board_name": "xiaomi,mi-router-ax3000t-ubootmod",
"rootfs_type": "squashfs",
"release": {
"distribution": "OpenWrt",
"version": "24.10.5",
"revision": "r29087-d9c5716d1d",
"target": "mediatek/filogic",
"description": "OpenWrt 24.10.5 r29087-d9c5716d1d",
"builddate": "1766005702"
}
}
root@OpenWrt:~# cat /etc/config/network

config interface 'loopback'
option device 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'

config globals 'globals'
option ula_prefix 'fd80:86f9:aa6::/48'
option packet_steering '1'

config device
option name 'br-lan'
option type 'bridge'
list ports 'lan2'
list ports 'lan3'
list ports 'lan4'

config interface 'lan'
option device 'br-lan'
option proto 'static'
option ipaddr '192.168.1.1'
option netmask '255.255.255.0'
list ip6addr '2a01:e0a:102a:7051::1/64'

config device
option name 'wan'
option macaddr '50:88:11:50:ed:46'

config interface 'wan'
option device 'wan'
option proto 'dhcp'
option peerdns '0'
list dns '1.1.1.1'
list dns '208.67.222.222'
list dns '9.9.9.9'

config interface 'vpn'
option proto 'wireguard'
option private_key ''
option listen_port '51821'
list addresses '192.168.9.1/24'
list addresses 'fd00:9::1/64'
option defaultroute '0'
list dns '192.168.1.2'
list dns '192.168.1.3'

config wireguard_vpn 'wgclient'
option public_key ''
option preshared_key ''
list allowed_ips '192.168.9.2/32'
option route_allowed_ips '1'
option description 'Pixel 9'

config device
option type 'bridge'
option name 'br-guest'
option bridge_empty '1'

config interface 'guest'
option proto 'static'
option device 'br-guest'
option ipaddr '192.168.2.1'
option netmask '255.255.255.0'

config route
option interface 'lan'
option target '192.168.101.0/24'
option gateway '192.168.1.201'

config route
option interface 'lan'
option target '192.168.200.0/24'
option gateway '192.168.1.201'
option disabled '1'

config wireguard_vpn
option description 'Asus A17'
option public_key ''
option route_allowed_ips '1'
option persistent_keepalive '25'
list allowed_ips '192.168.9.3/32'

config device
option type '8021q'
option ifname 'br-lan'
option vid '100'
option name 'br-lan.100'

config interface 'RESEAU_VM_100'
option proto 'static'
option device 'br-lan.100'
option ipaddr '192.168.100.254'
option netmask '255.255.255.0'

config interface 'wan6'
option device 'wan'
option proto 'static'
option ip6addr '2a01:e0a:102a:7050::2/64'
option ip6gw 'fe80::2266:cfff:fe5a:18bd'

root@OpenWrt:~# cat /etc/config/firewall

config defaults
option input 'REJECT'
option output 'ACCEPT'
option forward 'REJECT'
option synflood_protect '1'

config zone 'lan'
option name 'lan'
option input 'ACCEPT'
option output 'ACCEPT'
option forward 'ACCEPT'
list network 'lan'
list network 'RESEAU_VM_100'

config forwarding
option src 'lan'
option dest 'wan'

config rule
option name 'Allow-DHCP-Renew'
option src 'wan'
option proto 'udp'
option dest_port '68'
option target 'ACCEPT'
option family 'ipv4'

config rule
option name 'Allow-Ping'
option src 'wan'
option proto 'icmp'
option icmp_type 'echo-request'
option family 'ipv4'
option target 'ACCEPT'

config rule
option name 'Allow-IGMP'
option src 'wan'
option proto 'igmp'
option family 'ipv4'
option target 'ACCEPT'

config rule
option name 'Allow-DHCPv6'
option src 'wan'
option proto 'udp'
option dest_port '546'
option family 'ipv6'
option target 'ACCEPT'

config rule
option name 'Allow-MLD'
option src 'wan'
option proto 'icmp'
option src_ip 'fe80::/10'
list icmp_type '130/0'
list icmp_type '131/0'
list icmp_type '132/0'
list icmp_type '143/0'
option family 'ipv6'
option target 'ACCEPT'

config rule
option name 'Allow-ICMPv6-Input'
option src 'wan'
option proto 'icmp'
list icmp_type 'echo-request'
list icmp_type 'echo-reply'
list icmp_type 'destination-unreachable'
list icmp_type 'packet-too-big'
list icmp_type 'time-exceeded'
list icmp_type 'bad-header'
list icmp_type 'unknown-header-type'
list icmp_type 'router-solicitation'
list icmp_type 'neighbour-solicitation'
list icmp_type 'router-advertisement'
list icmp_type 'neighbour-advertisement'
option limit '1000/sec'
option family 'ipv6'
option target 'ACCEPT'

config rule
option name 'Allow-ICMPv6-Forward'
option src 'wan'
option dest '*'
option proto 'icmp'
list icmp_type 'echo-request'
list icmp_type 'echo-reply'
list icmp_type 'destination-unreachable'
list icmp_type 'packet-too-big'
list icmp_type 'time-exceeded'
list icmp_type 'bad-header'
list icmp_type 'unknown-header-type'
option limit '1000/sec'
option family 'ipv6'
option target 'ACCEPT'

config rule
option name 'Allow-IPSec-ESP'
option src 'wan'
option dest 'lan'
option proto 'esp'
option target 'ACCEPT'

config rule
option name 'Allow-ISAKMP'
option src 'wan'
option dest 'lan'
option dest_port '500'
option proto 'udp'
option target 'ACCEPT'

config rule 'wg'
option name 'Allow-WireGuard'
option src 'wan'
option dest_port '51821'
option proto 'udp'
option target 'ACCEPT'

config zone 'wan'
option name 'wan'
list network 'wan'
list network 'wan6'
option input 'REJECT'
option output 'ACCEPT'
option forward 'REJECT'
option masq '1'
option mtu_fix '1'

config zone
option name 'vpn'
option input 'ACCEPT'
option output 'ACCEPT'
option forward 'ACCEPT'
list network 'vpn'
option masq '1'

config forwarding
option src 'vpn'
option dest 'lan'

config zone
option name 'guest'
option input 'REJECT'
option output 'ACCEPT'
option forward 'REJECT'
list network 'guest'

config rule
option name 'Allow-DNS-Guest'
option src 'guest'
option dest_port '53'
option target 'ACCEPT'

config rule
option name 'Allow-DHCP-Guest'
list proto 'udp'
option src 'guest'
option dest_port '67'
option target 'ACCEPT'

config rule
option name 'Block_Guest_from_LAN'
option src 'guest'
option dest 'lan'
option target 'REJECT'
list proto 'all'
list dest_ip '192.168.1.0/24'
list dest_ip '192.168.101.0/24'
list dest_ip '192.168.100.0/24'

config forwarding
option src 'vpn'
option dest 'wan'

config rule
option name 'Allow_VPN_to_VMs'
option src 'vpn'
list dest_ip '192.168.100.0/24'
list dest_ip '192.168.101.0/24'
option target 'ACCEPT'

config rule
option name 'Allow_VPN_to_VMs'
option src 'lan'
list dest_ip '192.168.100.0/24'
list dest_ip '192.168.101.0/24'
option target 'REJECT'
option enabled '0'

config forwarding
option src 'vpn'
option dest 'wan'

config redirect
option dest 'lan'
option target 'DNAT'
option name 'HTTP to nginx reverse proxy'
list proto 'tcp'
option src 'wan'
option src_dport '80'
option dest_ip '192.168.100.10'

config redirect
option dest 'lan'
option target 'DNAT'
option name 'HTTPS to nginx reverse proxy'
list proto 'tcp'
option src 'wan'
option src_dport '443'
option dest_ip '192.168.100.10'

root@OpenWrt:~# cat /etc/config/dhcp

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 '30'
option limit '120'
option leasetime '12h'
option dhcpv4 'server'
option force '1'
list dhcp_option '6,192.168.1.2,192.168.1.3'
option ra 'server'
option dhcpv6 'server'
option ndp 'relay'
option ra_management '1'
option ra_dns '0'
list dhcpv6_na '0'
option dns_service '0'

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'
option piofolder '/tmp/odhcpd-piofolder'

config dhcp 'guest'
option interface 'guest'
option start '100'
option limit '150'
option leasetime '12h'

config host
option name 'cam-salon'
list mac '30:8E:7A:09:5B:F4'
option ip '192.168.1.198'

config dhcp 'wan6'
option interface 'wan6'
option ignore '1'
option ra 'relay'
option dhcpv6 'relay'
option ndp 'relay'
option master '1'

config host
option name 'bridge-hue'
list mac 'EC:B5:FA:A4:E4:28'
option ip '192.168.1.199'

root@OpenWrt:~# cat /etc/config/wireless

config wifi-device 'radio0'
option type 'mac80211'
option path 'platform/soc/18000000.wifi'
option channel '6'
option band '2g'
option htmode 'HE40'
option cell_density '0'

config wifi-iface 'default_radio0'
option device 'radio0'
option network 'lan'
option mode 'ap'
option ssid 'Freebox-5A18BD'
option encryption 'sae-mixed'
option key ''
option ocv '0'

config wifi-device 'radio1'
option type 'mac80211'
option path 'platform/soc/18000000.wifi+1'
option channel 'auto'
option band '5g'
option htmode 'HE160'
option cell_density '0'
option country 'FR'

config wifi-iface 'default_radio1'
option device 'radio1'
option network 'lan'
option mode 'ap'
option ssid 'Freebox-5A18BD'
option encryption 'sae-mixed'
option key ''
option ocv '0'

config wifi-iface 'wifinet2'
option device 'radio0'
option mode 'ap'
option ssid 'Freebox-5A18BD-Guest'
option encryption 'psk2'
option network 'guest'
option key ''

config wifi-iface 'wifinet3'
option device 'radio1'
option mode 'ap'
option ssid 'Freebox-5A18BD-Guest'
option encryption 'psk2'
option network 'guest'
option key ''

I configured syslog to send my logs to graylog, and here are the logs from a bit before and a bit after the electrical reboot. I lost connectivity around 12:30 but it seems there is not log about it.

(Logs in the comments after)

I would love some help to fix this issue. Thanks a lot !

2025-12-23T12:03:04.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:04+01:00 OpenWrt-Maison hostapd: phy0-ap0: STA b8:06:0d:a9:c7:25 IEEE 802.11: deauthenticated due to local deauth request"	
2025-12-23T12:03:13.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:13+01:00 OpenWrt-Maison netifd: Network device 'wan' link is down"	
2025-12-23T12:03:13.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:13+01:00 OpenWrt-Maison netifd: Interface 'wan' has link connectivity loss"	
2025-12-23T12:03:13.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:13+01:00 OpenWrt-Maison netifd: Interface 'wan6' has link connectivity loss"	
2025-12-23T12:03:13.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:13+01:00 OpenWrt-Maison netifd: wan (4709): udhcpc: received SIGTERM"	
2025-12-23T12:03:13.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:13+01:00 OpenWrt-Maison netifd: wan (4709): udhcpc: unicasting a release of XX.XX.XX.XX to XX.XX.XX.XX"	
2025-12-23T12:03:13.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:13+01:00 OpenWrt-Maison netifd: wan (4709): udhcpc: sending release"	
2025-12-23T12:03:13.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:13+01:00 OpenWrt-Maison netifd: wan (4709): udhcpc: entering released state"	
2025-12-23T12:03:13.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:13+01:00 OpenWrt-Maison netifd: wan (4709): Command failed: ubus call network.interface notify_proto { ""action"": 0, ""link-up"": false, ""keep"": false, ""interface"": ""wan"" } (Permission denied)"	
2025-12-23T12:03:13.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:13+01:00 OpenWrt-Maison netifd: Interface 'wan' is now down"	
2025-12-23T12:03:16.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:16+01:00 OpenWrt-Maison netifd: Network device 'wan' link is up"	
2025-12-23T12:03:16.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:16+01:00 OpenWrt-Maison netifd: Interface 'wan' has link connectivity"	
2025-12-23T12:03:16.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:16+01:00 OpenWrt-Maison netifd: Interface 'wan' is setting up now"	
2025-12-23T12:03:16.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:16+01:00 OpenWrt-Maison netifd: Interface 'wan6' has link connectivity"	
2025-12-23T12:03:16.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:16+01:00 OpenWrt-Maison netifd: wan (5050): udhcpc: started, v1.36.1"	
2025-12-23T12:03:16.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:16+01:00 OpenWrt-Maison netifd: wan (5050): udhcpc: broadcasting discover"	
2025-12-23T12:03:18.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:18+01:00 OpenWrt-Maison netifd: Network device 'wan' link is down"	
2025-12-23T12:03:18.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:18+01:00 OpenWrt-Maison netifd: Interface 'wan' has link connectivity loss"	
2025-12-23T12:03:18.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:18+01:00 OpenWrt-Maison netifd: Interface 'wan6' has link connectivity loss"	
2025-12-23T12:03:18.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:18+01:00 OpenWrt-Maison netifd: wan (5050): udhcpc: received SIGTERM"	
2025-12-23T12:03:18.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:18+01:00 OpenWrt-Maison netifd: wan (5050): udhcpc: entering released state"	
2025-12-23T12:03:18.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:18+01:00 OpenWrt-Maison netifd: wan (5050): Command failed: ubus call network.interface notify_proto { ""action"": 0, ""link-up"": false, ""keep"": false, ""interface"": ""wan"" } (Permission denied)"	
2025-12-23T12:03:18.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:18+01:00 OpenWrt-Maison netifd: Interface 'wan' is now down"	
2025-12-23T12:03:19.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:19+01:00 OpenWrt-Maison hostapd: phy0-ap0: STA b8:06:0d:a9:c7:25 IEEE 802.11: authenticated"	
2025-12-23T12:03:19.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:19+01:00 OpenWrt-Maison hostapd: phy0-ap0: STA b8:06:0d:a9:c7:25 IEEE 802.11: associated (aid 13)"	
2025-12-23T12:03:21.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:21+01:00 OpenWrt-Maison netifd: Network device 'wan' link is up"	
2025-12-23T12:03:21.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:21+01:00 OpenWrt-Maison netifd: Interface 'wan' has link connectivity"	
2025-12-23T12:03:21.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:21+01:00 OpenWrt-Maison netifd: Interface 'wan' is setting up now"	
2025-12-23T12:03:21.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:21+01:00 OpenWrt-Maison netifd: Interface 'wan6' has link connectivity"	
2025-12-23T12:03:21.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:21+01:00 OpenWrt-Maison netifd: wan (5166): udhcpc: started, v1.36.1"	
2025-12-23T12:03:21.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:21+01:00 OpenWrt-Maison netifd: wan (5166): udhcpc: broadcasting discover"	
2025-12-23T12:03:24.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:24+01:00 OpenWrt-Maison netifd: wan (5166): udhcpc: broadcasting discover"	
2025-12-23T12:03:24.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:24+01:00 OpenWrt-Maison netifd: wan (5166): udhcpc: broadcasting select for XX.XX.XX.XX, server XX.XX.XX.XX"	
2025-12-23T12:03:24.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:24+01:00 OpenWrt-Maison netifd: wan (5166): udhcpc: lease of XX.XX.XX.XX obtained from XX.XX.XX.XX, lease time 604800"	
2025-12-23T12:03:24.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:24+01:00 OpenWrt-Maison netifd: Interface 'wan' is now up"	
2025-12-23T12:03:24.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:24+01:00 OpenWrt-Maison firewall: Reloading firewall due to ifup of wan (wan)"	
2025-12-23T12:03:27.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:27+01:00 OpenWrt-Maison hostapd: phy0-ap0: STA b8:06:0d:a9:c7:25 IEEE 802.11: deauthenticated due to local deauth request"	
2025-12-23T12:03:27.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:27+01:00 OpenWrt-Maison netifd: Network device 'wan' link is down"	
2025-12-23T12:03:27.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:27+01:00 OpenWrt-Maison netifd: Interface 'wan' has link connectivity loss"	
2025-12-23T12:03:27.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:27+01:00 OpenWrt-Maison netifd: Interface 'wan6' has link connectivity loss"	
2025-12-23T12:03:27.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:27+01:00 OpenWrt-Maison netifd: wan (5166): udhcpc: received SIGTERM"	
2025-12-23T12:03:27.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:27+01:00 OpenWrt-Maison netifd: wan (5166): udhcpc: unicasting a release of XX.XX.XX.XX to XX.XX.XX.XX"	
2025-12-23T12:03:27.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:27+01:00 OpenWrt-Maison netifd: wan (5166): udhcpc: sending release"	
2025-12-23T12:03:27.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:27+01:00 OpenWrt-Maison netifd: wan (5166): udhcpc: entering released state"	
2025-12-23T12:03:27.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:27+01:00 OpenWrt-Maison netifd: wan (5166): Command failed: ubus call network.interface notify_proto { ""action"": 0, ""link-up"": false, ""keep"": false, ""interface"": ""wan"" } (Permission denied)"	
2025-12-23T12:03:27.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:27+01:00 OpenWrt-Maison netifd: Interface 'wan' is now down"	
2025-12-23T12:03:30.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:30+01:00 OpenWrt-Maison netifd: Network device 'wan' link is up"	
2025-12-23T12:03:30.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:30+01:00 OpenWrt-Maison netifd: Interface 'wan' has link connectivity"	
2025-12-23T12:03:30.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:30+01:00 OpenWrt-Maison netifd: Interface 'wan' is setting up now"	
2025-12-23T12:03:30.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:30+01:00 OpenWrt-Maison netifd: Interface 'wan6' has link connectivity"	
2025-12-23T12:03:30.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:30+01:00 OpenWrt-Maison netifd: wan (5421): udhcpc: started, v1.36.1"	
2025-12-23T12:03:30.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:30+01:00 OpenWrt-Maison netifd: wan (5421): udhcpc: broadcasting discover"	
2025-12-23T12:03:33.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:33+01:00 OpenWrt-Maison netifd: wan (5421): udhcpc: broadcasting discover"	
2025-12-23T12:03:33.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:33+01:00 OpenWrt-Maison netifd: wan (5421): udhcpc: broadcasting select for XX.XX.XX.XX, server XX.XX.XX.XX"	
2025-12-23T12:03:33.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:33+01:00 OpenWrt-Maison netifd: wan (5421): udhcpc: lease of XX.XX.XX.XX obtained from XX.XX.XX.XX, lease time 604800"	
2025-12-23T12:03:33.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:33+01:00 OpenWrt-Maison netifd: Interface 'wan' is now up"	
2025-12-23T12:03:33.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:33+01:00 OpenWrt-Maison firewall: Reloading firewall due to ifup of wan (wan)"	
2025-12-23T12:03:34.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:34+01:00 OpenWrt-Maison hostapd: phy0-ap0: STA b8:06:0d:a9:c7:25 IEEE 802.11: authenticated"	
2025-12-23T12:03:34.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:34+01:00 OpenWrt-Maison hostapd: phy0-ap0: STA b8:06:0d:a9:c7:25 IEEE 802.11: associated (aid 13)"	
2025-12-23T12:03:42.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:42+01:00 OpenWrt-Maison hostapd: phy0-ap0: STA b8:06:0d:a9:c7:25 IEEE 802.11: deauthenticated due to local deauth request"	
2025-12-23T12:03:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:50+01:00 OpenWrt-Maison netifd: Network device 'wan' link is down"	
2025-12-23T12:03:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:50+01:00 OpenWrt-Maison netifd: Interface 'wan' has link connectivity loss"	
2025-12-23T12:03:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:50+01:00 OpenWrt-Maison netifd: Interface 'wan6' has link connectivity loss"	
2025-12-23T12:03:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:50+01:00 OpenWrt-Maison netifd: wan (5421): udhcpc: received SIGTERM"	
2025-12-23T12:03:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:50+01:00 OpenWrt-Maison netifd: wan (5421): udhcpc: unicasting a release of XX.XX.XX.XX to XX.XX.XX.XX"	
2025-12-23T12:03:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:50+01:00 OpenWrt-Maison netifd: wan (5421): udhcpc: sending release"	
2025-12-23T12:03:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:50+01:00 OpenWrt-Maison netifd: wan (5421): udhcpc: entering released state"	
2025-12-23T12:03:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:50+01:00 OpenWrt-Maison netifd: wan (5421): Command failed: ubus call network.interface notify_proto { ""action"": 0, ""link-up"": false, ""keep"": false, ""interface"": ""wan"" } (Permission denied)"	
2025-12-23T12:03:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:50+01:00 OpenWrt-Maison netifd: Interface 'wan' is now down"	
2025-12-23T12:03:52.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:52+01:00 OpenWrt-Maison netifd: Network device 'wan' link is up"	
2025-12-23T12:03:52.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:52+01:00 OpenWrt-Maison netifd: Interface 'wan' has link connectivity"	
2025-12-23T12:03:52.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:52+01:00 OpenWrt-Maison netifd: Interface 'wan' is setting up now"	
2025-12-23T12:03:52.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:52+01:00 OpenWrt-Maison netifd: Interface 'wan6' has link connectivity"	
2025-12-23T12:03:52.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:52+01:00 OpenWrt-Maison netifd: wan (5677): udhcpc: started, v1.36.1"	
2025-12-23T12:03:52.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:52+01:00 OpenWrt-Maison netifd: wan (5677): udhcpc: broadcasting discover"	
2025-12-23T12:03:53.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:53+01:00 OpenWrt-Maison netifd: Network device 'wan' link is down"	
2025-12-23T12:03:53.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:53+01:00 OpenWrt-Maison netifd: Interface 'wan' has link connectivity loss"	
2025-12-23T12:03:53.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:53+01:00 OpenWrt-Maison netifd: Interface 'wan6' has link connectivity loss"	
2025-12-23T12:03:53.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:53+01:00 OpenWrt-Maison netifd: wan (5677): udhcpc: received SIGTERM"	
2025-12-23T12:03:53.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:53+01:00 OpenWrt-Maison netifd: wan (5677): udhcpc: entering released state"	
2025-12-23T12:03:53.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:53+01:00 OpenWrt-Maison netifd: wan (5677): Command failed: ubus call network.interface notify_proto { ""action"": 0, ""link-up"": false, ""keep"": false, ""interface"": ""wan"" } (Permission denied)"	
2025-12-23T12:03:53.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:53+01:00 OpenWrt-Maison netifd: Interface 'wan' is now down"	
2025-12-23T12:03:56.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:56+01:00 OpenWrt-Maison netifd: Network device 'wan' link is up"	
2025-12-23T12:03:56.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:56+01:00 OpenWrt-Maison netifd: Interface 'wan' has link connectivity"	
2025-12-23T12:03:56.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:56+01:00 OpenWrt-Maison netifd: Interface 'wan' is setting up now"	
2025-12-23T12:03:56.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:56+01:00 OpenWrt-Maison netifd: Interface 'wan6' has link connectivity"	
2025-12-23T12:03:56.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:56+01:00 OpenWrt-Maison hostapd: phy0-ap0: STA b8:06:0d:a9:c7:25 IEEE 802.11: authenticated"	
2025-12-23T12:03:56.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:56+01:00 OpenWrt-Maison hostapd: phy0-ap0: STA b8:06:0d:a9:c7:25 IEEE 802.11: associated (aid 13)"	
2025-12-23T12:03:56.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:56+01:00 OpenWrt-Maison netifd: wan (5793): udhcpc: started, v1.36.1"	
2025-12-23T12:03:56.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:56+01:00 OpenWrt-Maison netifd: wan (5793): udhcpc: broadcasting discover"	
2025-12-23T12:03:58.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:58+01:00 OpenWrt-Maison netifd: Network device 'wan' link is down"	
2025-12-23T12:03:58.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:58+01:00 OpenWrt-Maison netifd: Interface 'wan' has link connectivity loss"	
2025-12-23T12:03:58.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:58+01:00 OpenWrt-Maison netifd: Interface 'wan6' has link connectivity loss"	
2025-12-23T12:03:58.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:58+01:00 OpenWrt-Maison netifd: wan (5793): udhcpc: received SIGTERM"	
2025-12-23T12:03:58.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:58+01:00 OpenWrt-Maison netifd: wan (5793): udhcpc: entering released state"	
2025-12-23T12:03:58.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:58+01:00 OpenWrt-Maison netifd: wan (5793): Command failed: ubus call network.interface notify_proto { ""action"": 0, ""link-up"": false, ""keep"": false, ""interface"": ""wan"" } (Permission denied)"	
2025-12-23T12:03:58.000+01:00,"OpenWrt-Maison","2025-12-23T12:03:58+01:00 OpenWrt-Maison netifd: Interface 'wan' is now down"	
2025-12-23T12:04:00.000+01:00,"OpenWrt-Maison","2025-12-23T12:04:00+01:00 OpenWrt-Maison netifd: Network device 'wan' link is up"	
2025-12-23T12:04:00.000+01:00,"OpenWrt-Maison","2025-12-23T12:04:00+01:00 OpenWrt-Maison netifd: Interface 'wan' has link connectivity"	
2025-12-23T12:04:00.000+01:00,"OpenWrt-Maison","2025-12-23T12:04:00+01:00 OpenWrt-Maison netifd: Interface 'wan' is setting up now"	
2025-12-23T12:04:00.000+01:00,"OpenWrt-Maison","2025-12-23T12:04:00+01:00 OpenWrt-Maison netifd: Interface 'wan6' has link connectivity"	
2025-12-23T12:04:00.000+01:00,"OpenWrt-Maison","2025-12-23T12:04:00+01:00 OpenWrt-Maison netifd: wan (5909): udhcpc: started, v1.36.1"	
2025-12-23T12:04:00.000+01:00,"OpenWrt-Maison","2025-12-23T12:04:00+01:00 OpenWrt-Maison netifd: wan (5909): udhcpc: broadcasting discover"	
2025-12-23T12:04:03.000+01:00,"OpenWrt-Maison","2025-12-23T12:04:03+01:00 OpenWrt-Maison netifd: wan (5909): udhcpc: broadcasting discover"	
2025-12-23T12:04:03.000+01:00,"OpenWrt-Maison","2025-12-23T12:04:03+01:00 OpenWrt-Maison netifd: wan (5909): udhcpc: broadcasting select for XX.XX.XX.XX, server XX.XX.XX.XX"	
2025-12-23T12:04:03.000+01:00,"OpenWrt-Maison","2025-12-23T12:04:03+01:00 OpenWrt-Maison netifd: wan (5909): udhcpc: lease of XX.XX.XX.XX obtained from XX.XX.XX.XX, lease time 604800"	
2025-12-23T12:04:03.000+01:00,"OpenWrt-Maison","2025-12-23T12:04:03+01:00 OpenWrt-Maison netifd: Interface 'wan' is now up"	
2025-12-23T12:04:03.000+01:00,"OpenWrt-Maison","2025-12-23T12:04:03+01:00 OpenWrt-Maison firewall: Reloading firewall due to ifup of wan (wan)"	
2025-12-23T12:04:04.000+01:00,"OpenWrt-Maison","2025-12-23T12:04:04+01:00 OpenWrt-Maison hostapd: phy0-ap0: STA b8:06:0d:a9:c7:25 IEEE 802.11: deauthenticated due to local deauth request"	
2025-12-23T12:04:19.000+01:00,"OpenWrt-Maison","2025-12-23T12:04:19+01:00 OpenWrt-Maison hostapd: phy0-ap0: STA b8:06:0d:a9:c7:25 IEEE 802.11: authenticated"	
2025-12-23T12:04:19.000+01:00,"OpenWrt-Maison","2025-12-23T12:04:19+01:00 OpenWrt-Maison hostapd: phy0-ap0: STA b8:06:0d:a9:c7:25 IEEE 802.11: associated (aid 13)"	
2025-12-23T12:04:27.000+01:00,"OpenWrt-Maison","2025-12-23T12:04:27+01:00 OpenWrt-Maison hostapd: phy0-ap0: STA b8:06:0d:a9:c7:25 IEEE 802.11: deauthenticated due to local deauth request"	
2025-12-23T12:04:34.000+01:00,"OpenWrt-Maison","2025-12-23T12:04:34+01:00 OpenWrt-Maison hostapd: phy0-ap0: STA b8:06:0d:a9:c7:25 IEEE 802.11: authenticated"	
2025-12-23T12:04:34.000+01:00,"OpenWrt-Maison","2025-12-23T12:04:34+01:00 OpenWrt-Maison hostapd: phy0-ap0: STA b8:06:0d:a9:c7:25 IEEE 802.11: associated (aid 13)"	
2025-12-23T12:04:42.000+01:00,"OpenWrt-Maison","2025-12-23T12:04:42+01:00 OpenWrt-Maison hostapd: phy0-ap0: STA b8:06:0d:a9:c7:25 IEEE 802.11: deauthenticated due to local deauth request"	
2025-12-23T12:04:56.000+01:00,"OpenWrt-Maison","2025-12-23T12:04:56+01:00 OpenWrt-Maison hostapd: phy0-ap0: STA b8:06:0d:a9:c7:25 IEEE 802.11: authenticated"	
2025-12-23T12:04:56.000+01:00,"OpenWrt-Maison","2025-12-23T12:04:56+01:00 OpenWrt-Maison hostapd: phy0-ap0: STA b8:06:0d:a9:c7:25 IEEE 802.11: associated (aid 13)"	
2025-12-23T12:05:04.000+01:00,"OpenWrt-Maison","2025-12-23T12:05:04+01:00 OpenWrt-Maison hostapd: phy0-ap0: STA b8:06:0d:a9:c7:25 IEEE 802.11: deauthenticated due to local deauth request"	
2025-12-23T12:05:19.000+01:00,"OpenWrt-Maison","2025-12-23T12:05:19+01:00 OpenWrt-Maison hostapd: phy0-ap0: STA b8:06:0d:a9:c7:25 IEEE 802.11: authenticated"	
2025-12-23T12:05:19.000+01:00,"OpenWrt-Maison","2025-12-23T12:05:19+01:00 OpenWrt-Maison hostapd: phy0-ap0: STA b8:06:0d:a9:c7:25 IEEE 802.11: associated (aid 13)"	
2025-12-23T12:05:27.000+01:00,"OpenWrt-Maison","2025-12-23T12:05:27+01:00 OpenWrt-Maison hostapd: phy0-ap0: STA b8:06:0d:a9:c7:25 IEEE 802.11: deauthenticated due to local deauth request"	

[Electrical Reboot now]

2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) 10:d5:61:3f:87:ac"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPOFFER(br-lan) 192.168.1.38 10:d5:61:3f:87:ac"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: exiting on receipt of SIGTERM"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: started, version 2.90 cachesize 1000"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: DNS service limited to local subnets"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: compile time options: IPv6 GNU-getopt no-DBus UBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-nftset no-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: UBus support enabled: connected to system bus"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCP, IP range 192.168.2.100 -- 192.168.2.249, lease time 12h"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCP, IP range 192.168.1.30 -- 192.168.1.149, lease time 12h"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for test"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for onion"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for localhost"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for local"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for invalid"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for bind"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for lan"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: reading /tmp/resolv.conf.d/resolv.conf.auto"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: using nameserver 192.168.1.2#53"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: using nameserver 192.168.1.3#53"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: using nameserver 1.1.1.1#53"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: using nameserver 208.67.222.222#53"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: using nameserver 9.9.9.9#53"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for test"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for onion"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for localhost"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for local"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for invalid"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for bind"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for lan"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: read /etc/hosts - 12 names"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 4 names"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.105 c8:d9:d2:e3:fc:a7"	
2025-12-23T12:43:40.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:40+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.105 c8:d9:d2:e3:fc:a7 HPE3FCA7"	
2025-12-23T12:43:41.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:41+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.38 10:d5:61:3f:87:ac"	
2025-12-23T12:43:41.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:41+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.38 10:d5:61:3f:87:ac TY_WR"	
2025-12-23T12:43:44.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:44+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) dc:00:b0:4c:3f:45"	
2025-12-23T12:43:44.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:44+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPOFFER(br-lan) 192.168.1.124 dc:00:b0:4c:3f:45"	
2025-12-23T12:43:47.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:47+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) 10:d5:61:3f:9b:e6"	
2025-12-23T12:43:47.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:47+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPOFFER(br-lan) 192.168.1.116 10:d5:61:3f:9b:e6"	
2025-12-23T12:43:47.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:47+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.147 54:2a:1b:d3:8d:ec"	
2025-12-23T12:43:47.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:47+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.147 54:2a:1b:d3:8d:ec SonosZP"	
2025-12-23T12:43:47.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:47+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) dc:00:b0:4c:3f:45"	
2025-12-23T12:43:47.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:47+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPOFFER(br-lan) 192.168.1.124 dc:00:b0:4c:3f:45"	
2025-12-23T12:43:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:50+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) 10:d5:61:3f:63:b6"	
2025-12-23T12:43:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:50+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPOFFER(br-lan) 192.168.1.84 10:d5:61:3f:63:b6"	
2025-12-23T12:43:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:50+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.124 dc:00:b0:4c:3f:45"	
2025-12-23T12:43:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:50+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.124 dc:00:b0:4c:3f:45"	
2025-12-23T12:43:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:50+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.124 dc:00:b0:4c:3f:45"	
2025-12-23T12:43:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:50+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.124 dc:00:b0:4c:3f:45"	
2025-12-23T12:43:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:50+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.116 10:d5:61:3f:9b:e6"	
2025-12-23T12:43:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:50+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.116 10:d5:61:3f:9b:e6 TY_WR"	
2025-12-23T12:43:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:50+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.124 dc:00:b0:4c:3f:45"	
2025-12-23T12:43:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:50+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.124 dc:00:b0:4c:3f:45"	
2025-12-23T12:43:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:50+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.116 10:d5:61:3f:9b:e6"	
2025-12-23T12:43:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:50+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.116 10:d5:61:3f:9b:e6 TY_WR"	
2025-12-23T12:43:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:50+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.116 10:d5:61:3f:9b:e6"	
2025-12-23T12:43:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:50+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.116 10:d5:61:3f:9b:e6 TY_WR"	
2025-12-23T12:43:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:50+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.84 10:d5:61:3f:63:b6"	
2025-12-23T12:43:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:50+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.84 10:d5:61:3f:63:b6 TY_WR"	
2025-12-23T12:43:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:50+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.56 1a:d8:5e:42:ac:6c"	
2025-12-23T12:43:50.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:50+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.56 1a:d8:5e:42:ac:6c Pixel-9"	
2025-12-23T12:43:58.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:58+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) ec:b5:fa:a4:e4:28"	
2025-12-23T12:43:58.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:58+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPOFFER(br-lan) 192.168.1.199 ec:b5:fa:a4:e4:28"	
2025-12-23T12:43:58.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:58+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.199 ec:b5:fa:a4:e4:28"	
2025-12-23T12:43:58.000+01:00,"OpenWrt-Maison","2025-12-23T12:43:58+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.199 ec:b5:fa:a4:e4:28 bridge-hue"	
2025-12-23T12:44:06.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:06+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) b0:4a:39:31:0b:eb"	
2025-12-23T12:44:06.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:06+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPOFFER(br-lan) 192.168.1.104 b0:4a:39:31:0b:eb"	
2025-12-23T12:44:08.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:08+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) b0:4a:39:31:0b:eb"	
2025-12-23T12:44:08.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:08+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPOFFER(br-lan) 192.168.1.104 b0:4a:39:31:0b:eb"	
2025-12-23T12:44:08.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:08+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.104 b0:4a:39:31:0b:eb"	
2025-12-23T12:44:08.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:08+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.104 b0:4a:39:31:0b:eb"	
2025-12-23T12:44:14.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:14+01:00 OpenWrt-Maison dnsmasq[1]: reading /tmp/resolv.conf.d/resolv.conf.auto"	
2025-12-23T12:44:14.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:14+01:00 OpenWrt-Maison dnsmasq[1]: using nameserver 192.168.1.2#53"	
2025-12-23T12:44:14.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:14+01:00 OpenWrt-Maison dnsmasq[1]: using nameserver 192.168.1.3#53"	
2025-12-23T12:44:14.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:14+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for test"	
2025-12-23T12:44:14.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:14+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for onion"	
2025-12-23T12:44:14.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:14+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for localhost"	
2025-12-23T12:44:14.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:14+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for local"	
2025-12-23T12:44:14.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:14+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for invalid"	
2025-12-23T12:44:14.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:14+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for bind"	
2025-12-23T12:44:14.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:14+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for lan"	
2025-12-23T12:44:23.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:23+01:00 OpenWrt-Maison dnsmasq[1]: reading /tmp/resolv.conf.d/resolv.conf.auto"	
2025-12-23T12:44:23.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:23+01:00 OpenWrt-Maison dnsmasq[1]: using nameserver 192.168.1.2#53"	
2025-12-23T12:44:23.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:23+01:00 OpenWrt-Maison dnsmasq[1]: using nameserver 192.168.1.3#53"	
2025-12-23T12:44:23.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:23+01:00 OpenWrt-Maison dnsmasq[1]: using nameserver 1.1.1.1#53"	
2025-12-23T12:44:23.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:23+01:00 OpenWrt-Maison dnsmasq[1]: using nameserver 208.67.222.222#53"	
2025-12-23T12:44:23.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:23+01:00 OpenWrt-Maison dnsmasq[1]: using nameserver 9.9.9.9#53"	
2025-12-23T12:44:23.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:23+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for test"	
2025-12-23T12:44:23.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:23+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for onion"	
2025-12-23T12:44:23.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:23+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for localhost"	
2025-12-23T12:44:23.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:23+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for local"	
2025-12-23T12:44:23.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:23+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for invalid"	
2025-12-23T12:44:23.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:23+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for bind"	
2025-12-23T12:44:23.000+01:00,"OpenWrt-Maison","2025-12-23T12:44:23+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for lan"	
2025-12-23T12:45:20.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:20+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.72 dc:97:ba:86:dc:f6"	
2025-12-23T12:45:20.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:20+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.72 dc:97:ba:86:dc:f6 Asus-A17"	
2025-12-23T12:45:24.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:24+01:00 OpenWrt-Maison dnsmasq[1]: reading /tmp/resolv.conf.d/resolv.conf.auto"	
2025-12-23T12:45:24.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:24+01:00 OpenWrt-Maison dnsmasq[1]: using nameserver 192.168.1.2#53"	
2025-12-23T12:45:24.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:24+01:00 OpenWrt-Maison dnsmasq[1]: using nameserver 192.168.1.3#53"	
2025-12-23T12:45:24.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:24+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for test"	
2025-12-23T12:45:24.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:24+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for onion"	
2025-12-23T12:45:24.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:24+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for localhost"	
2025-12-23T12:45:24.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:24+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for local"	
2025-12-23T12:45:24.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:24+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for invalid"	
2025-12-23T12:45:24.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:24+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for bind"	
2025-12-23T12:45:24.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:24+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for lan"	
2025-12-23T12:45:30.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:30+01:00 OpenWrt-Maison dnsmasq[1]: reading /tmp/resolv.conf.d/resolv.conf.auto"	
2025-12-23T12:45:30.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:30+01:00 OpenWrt-Maison dnsmasq[1]: using nameserver 192.168.1.2#53"	
2025-12-23T12:45:30.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:30+01:00 OpenWrt-Maison dnsmasq[1]: using nameserver 192.168.1.3#53"	
2025-12-23T12:45:30.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:30+01:00 OpenWrt-Maison dnsmasq[1]: using nameserver 1.1.1.1#53"	
2025-12-23T12:45:30.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:30+01:00 OpenWrt-Maison dnsmasq[1]: using nameserver 208.67.222.222#53"	
2025-12-23T12:45:30.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:30+01:00 OpenWrt-Maison dnsmasq[1]: using nameserver 9.9.9.9#53"	
2025-12-23T12:45:30.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:30+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for test"	
2025-12-23T12:45:30.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:30+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for onion"	
2025-12-23T12:45:30.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:30+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for localhost"	
2025-12-23T12:45:30.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:30+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for local"	
2025-12-23T12:45:30.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:30+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for invalid"	
2025-12-23T12:45:30.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:30+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for bind"	
2025-12-23T12:45:30.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:30+01:00 OpenWrt-Maison dnsmasq[1]: using only locally-known addresses for lan"	
2025-12-23T12:45:45.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:45+01:00 OpenWrt-Maison syslog-ng[1855]: EOF occurred	 fd='14'"
2025-12-23T12:45:45.000+01:00,"OpenWrt-Maison","2025-12-23T12:45:45+01:00 OpenWrt-Maison syslog-ng[1855]: Syslog connection closed	 fd='14', server='AF_INET(192.168.100.120:1514)', time_reopen='60'"
2025-12-23T12:46:05.000+01:00,"OpenWrt-Maison","2025-12-23T12:46:05+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) 3c:a9:ab:04:35:96"	
2025-12-23T12:46:05.000+01:00,"OpenWrt-Maison","2025-12-23T12:46:05+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPOFFER(br-lan) 192.168.1.101 3c:a9:ab:04:35:96"	
2025-12-23T12:46:05.000+01:00,"OpenWrt-Maison","2025-12-23T12:46:05+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) dc:00:b0:4c:3f:45"	
2025-12-23T12:46:05.000+01:00,"OpenWrt-Maison","2025-12-23T12:46:05+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPOFFER(br-lan) 192.168.1.124 dc:00:b0:4c:3f:45"	
2025-12-23T12:46:05.000+01:00,"OpenWrt-Maison","2025-12-23T12:46:05+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) dc:00:b0:4c:3f:45"	
2025-12-23T12:46:05.000+01:00,"OpenWrt-Maison","2025-12-23T12:46:05+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPOFFER(br-lan) 192.168.1.124 dc:00:b0:4c:3f:45"	
2025-12-23T12:46:05.000+01:00,"OpenWrt-Maison","2025-12-23T12:46:05+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.124 dc:00:b0:4c:3f:45"	
2025-12-23T12:46:05.000+01:00,"OpenWrt-Maison","2025-12-23T12:46:05+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.124 dc:00:b0:4c:3f:45"	
2025-12-23T12:46:05.000+01:00,"OpenWrt-Maison","2025-12-23T12:46:05+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.101 3c:a9:ab:04:35:96"	
2025-12-23T12:46:05.000+01:00,"OpenWrt-Maison","2025-12-23T12:46:05+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.101 3c:a9:ab:04:35:96"	
2025-12-23T12:46:19.000+01:00,"OpenWrt-Maison","2025-12-23T12:46:19+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.101 3c:a9:ab:04:35:96"	
2025-12-23T12:46:19.000+01:00,"OpenWrt-Maison","2025-12-23T12:46:19+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.101 3c:a9:ab:04:35:96"	
2025-12-23T12:46:45.000+01:00,"OpenWrt-Maison","2025-12-23T12:46:45+01:00 OpenWrt-Maison syslog-ng[1855]: Syslog connection established	 fd='14', server='AF_INET(192.168.100.120:1514)', local='AF_INET(0.0.0.0:0)'"
2025-12-23T12:48:24.000+01:00,"OpenWrt-Maison","2025-12-23T12:48:24+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.72 dc:97:ba:86:dc:f6"	
2025-12-23T12:48:24.000+01:00,"OpenWrt-Maison","2025-12-23T12:48:24+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.72 dc:97:ba:86:dc:f6 Asus-A17"	
2025-12-23T12:54:58.000+01:00,"OpenWrt-Maison","2025-12-23T12:54:58+01:00 OpenWrt-Maison dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) 7c:bb:8a:89:93:0e"