1

Temat: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

Nadszedł czas wymiany routera i innych sprzętów w moim domu.
Jako główny router chce użyć Zyxel T-56 (już go mam) z OpenWRT. Jako źródło internetu będzie służył ZTE MC889. Do tego potrzebuje jeszcze jakiegoś 1 czy 2 AP bo WiFi z jednego routera nie daje rady w moim domu i jakieś switche.

"Czytając Internet" wielokrotnie spotykam się z zagadnieniem VLAN-u dla Iot. Tak się składa, że mam swój serwer Home Assistant i kilkanaście urządzeń typu żarowki, gniazdka czy DIY na ESP. Wszystkie te urządzenia komunikują się przez Wi-Fi. Czytając poradniki znajduje informację aby wydzielić port na którym będzie działał VLAN ale u mnie to się nie sprawdzi bo muszę mieć taki VLAN na każdym AP. Czy ktoś będzie łaskawy i mi dokładniej wytłumaczy czy da się to sensownie zrobić w moim przypadku ? Czy warto oraz czy nie pojawia się problemy z komunikacją pomiędzy tymi urządzeniami a serwerem HA ?

Asus Merlin RT-AC86U + 2xRT-AC68U
OpenWRT rPi3+ E3372
rPi5 HA, rPi4 OH

2

Odp: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

Chodzi o to że chińskie IoT nie siedziało ci bezpośrednio w lanie. Używa się do tego właśnie m.in vlanów.

W twoim przypadku - robisz sobie na AP i na zyxeli dwie sieci wifi - jedną swoją i jedną dla sprzętu iot. Sprzet iot podłączasz tylko i wyłącznie do tej innej sieci. Ta inna sieć - to po prostu sieć dodatkowa, a vlany i tak będziesz musiał na AP zrobić, zeby móc rozgłaszać dwie sieci WiFi związane z dwoma sieciami i innymi adresacjami na nich.

Masz niepotrzebny router, uszkodzony czy nie - chętnie przygarnę go.

3

Odp: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

Mam prośbę o sprawdzenie tych konfigów:

root@OpenWrt:~# uci show network
network.loopback=interface
network.loopback.device='lo'
network.loopback.proto='static'
network.loopback.ipaddr='127.0.0.1/8'
network.globals=globals
network.globals.dhcp_default_duid='00042f37796fdb49451390726d9d1f7aa10a'
network.globals.ula_prefix='fd4b:6786:f2b::/48'
network.globals.packet_steering='1'
network.@device[0]=device
network.@device[0].name='br-lan'
network.@device[0].type='bridge'
network.@device[0].ports='lan1' 'lan2' 'lan3' 'lan4'
network.lan=interface
network.lan.device='br-lan'
network.lan.proto='static'
network.lan.ip6assign='60'
network.lan.ipaddr='192.168.200.1/24'
network.wan=interface
network.wan.device='wan'
network.wan.proto='dhcp'
network.wan6=interface
network.wan6.device='wan'
network.wan6.proto='dhcpv6'
network.IOT=interface
network.IOT.proto='static'
network.IOT.device='br-lan'
network.IOT.ipaddr='192.168.50.1'
network.IOT.netmask='255.255.255.0'
root@OpenWrt:~# uci show firewall
firewall.@defaults[0]=defaults
firewall.@defaults[0].input='REJECT'
firewall.@defaults[0].output='ACCEPT'
firewall.@defaults[0].forward='REJECT'
firewall.@defaults[0].synflood_protect='1'
firewall.@zone[0]=zone
firewall.@zone[0].name='lan'
firewall.@zone[0].network='lan'
firewall.@zone[0].input='ACCEPT'
firewall.@zone[0].output='ACCEPT'
firewall.@zone[0].forward='ACCEPT'
firewall.@zone[1]=zone
firewall.@zone[1].name='wan'
firewall.@zone[1].network='wan' 'wan6'
firewall.@zone[1].input='REJECT'
firewall.@zone[1].output='ACCEPT'
firewall.@zone[1].forward='DROP'
firewall.@zone[1].masq='1'
firewall.@zone[1].mtu_fix='1'
firewall.@forwarding[0]=forwarding
firewall.@forwarding[0].src='lan'
firewall.@forwarding[0].dest='wan'
firewall.@rule[0]=rule
firewall.@rule[0].name='Allow-DHCP-Renew'
firewall.@rule[0].src='wan'
firewall.@rule[0].proto='udp'
firewall.@rule[0].dest_port='68'
firewall.@rule[0].target='ACCEPT'
firewall.@rule[0].family='ipv4'
firewall.@rule[1]=rule
firewall.@rule[1].name='Allow-Ping'
firewall.@rule[1].src='wan'
firewall.@rule[1].proto='icmp'
firewall.@rule[1].icmp_type='echo-request'
firewall.@rule[1].family='ipv4'
firewall.@rule[1].target='ACCEPT'
firewall.@rule[2]=rule
firewall.@rule[2].name='Allow-IGMP'
firewall.@rule[2].src='wan'
firewall.@rule[2].proto='igmp'
firewall.@rule[2].family='ipv4'
firewall.@rule[2].target='ACCEPT'
firewall.@rule[3]=rule
firewall.@rule[3].name='Allow-DHCPv6'
firewall.@rule[3].src='wan'
firewall.@rule[3].proto='udp'
firewall.@rule[3].dest_port='546'
firewall.@rule[3].family='ipv6'
firewall.@rule[3].target='ACCEPT'
firewall.@rule[4]=rule
firewall.@rule[4].name='Allow-MLD'
firewall.@rule[4].src='wan'
firewall.@rule[4].proto='icmp'
firewall.@rule[4].src_ip='fe80::/10'
firewall.@rule[4].icmp_type='130/0' '131/0' '132/0' '143/0'
firewall.@rule[4].family='ipv6'
firewall.@rule[4].target='ACCEPT'
firewall.@rule[5]=rule
firewall.@rule[5].name='Allow-ICMPv6-Input'
firewall.@rule[5].src='wan'
firewall.@rule[5].proto='icmp'
firewall.@rule[5].icmp_type='echo-request' 'echo-reply' 'destination-unreachable' 'packet-too-big' 'time-exceeded' 'bad-header' 'unknown-header-type' 'router-solicitation' 'neighbour-solicitation' 'router-advertisement' 'neighbour-advertisement'
firewall.@rule[5].limit='1000/sec'
firewall.@rule[5].family='ipv6'
firewall.@rule[5].target='ACCEPT'
firewall.@rule[6]=rule
firewall.@rule[6].name='Allow-ICMPv6-Forward'
firewall.@rule[6].src='wan'
firewall.@rule[6].dest='*'
firewall.@rule[6].proto='icmp'
firewall.@rule[6].icmp_type='echo-request' 'echo-reply' 'destination-unreachable' 'packet-too-big' 'time-exceeded' 'bad-header' 'unknown-header-type'
firewall.@rule[6].limit='1000/sec'
firewall.@rule[6].family='ipv6'
firewall.@rule[6].target='ACCEPT'
firewall.@rule[7]=rule
firewall.@rule[7].name='Allow-IPSec-ESP'
firewall.@rule[7].src='wan'
firewall.@rule[7].dest='lan'
firewall.@rule[7].proto='esp'
firewall.@rule[7].target='ACCEPT'
firewall.@rule[8]=rule
firewall.@rule[8].name='Allow-ISAKMP'
firewall.@rule[8].src='wan'
firewall.@rule[8].dest='lan'
firewall.@rule[8].dest_port='500'
firewall.@rule[8].proto='udp'
firewall.@rule[8].target='ACCEPT'
firewall.@zone[2]=zone
firewall.@zone[2].name='iot'
firewall.@zone[2].input='REJECT'
firewall.@zone[2].output='ACCEPT'
firewall.@zone[2].forward='REJECT'
firewall.@zone[2].network='IOT'
firewall.@forwarding[1]=forwarding
firewall.@forwarding[1].src='iot'
firewall.@forwarding[1].dest='wan'
firewall.@rule[9]=rule
firewall.@rule[9].src='iot'
firewall.@rule[9].dest='lan'
firewall.@rule[9].name='Allow_IOT_to_HA'
firewall.@rule[9].proto='tcp'
firewall.@rule[9].dest_ip='192.168.100.10'
firewall.@rule[9].dest_port='8123'
firewall.@rule[9].target='ACCEPT'
firewall.@rule[10]=rule
firewall.@rule[10].src='iot'
firewall.@rule[10].dest='lan'
firewall.@rule[10].name='Allow_IOT_to_MQTT'
firewall.@rule[10].proto='tcp'
firewall.@rule[10].dest_ip='192.168.100.10'
firewall.@rule[10].dest_port='1883'
firewall.@rule[10].target='ACCEPT'
firewall.@rule[11]=rule
firewall.@rule[11].src='iot'
firewall.@rule[11].dest='lan'
firewall.@rule[11].name='Allow_IOT_to_NodeRED'
firewall.@rule[11].proto='tcp'
firewall.@rule[11].dest_ip='192.168.100.10'
firewall.@rule[11].dest_port='1880'
firewall.@rule[11].target='ACCEPT'
root@OpenWrt:~# uci show wifi
uci: Entry not found
root@OpenWrt:~# uci show wireless
wireless.radio0=wifi-device
wireless.radio0.type='mac80211'
wireless.radio0.path='platform/soc/18000000.wifi'
wireless.radio0.band='2g'
wireless.radio0.channel='1'
wireless.radio0.htmode='HE40'
wireless.radio0.country='PL'
wireless.radio0.cell_density='0'
wireless.default_radio0=wifi-iface
wireless.default_radio0.device='radio0'
wireless.default_radio0.network='lan'
wireless.default_radio0.mode='ap'
wireless.default_radio0.ssid='Hoxxxt2'
wireless.default_radio0.encryption='sae'
wireless.default_radio0.key='1111'
wireless.default_radio0.ocv='0'
wireless.radio1=wifi-device
wireless.radio1.type='mac80211'
wireless.radio1.path='platform/soc/18000000.wifi+1'
wireless.radio1.band='5g'
wireless.radio1.channel='36'
wireless.radio1.htmode='HE160'
wireless.radio1.country='PL'
wireless.radio1.cell_density='0'
wireless.default_radio1=wifi-iface
wireless.default_radio1.device='radio1'
wireless.default_radio1.network='lan'
wireless.default_radio1.mode='ap'
wireless.default_radio1.ssid='Hoxxxt2'
wireless.default_radio1.encryption='sae'
wireless.default_radio1.key='1111'
wireless.default_radio1.ocv='0'
wireless.wifinet2=wifi-iface
wireless.wifinet2.device='radio0'
wireless.wifinet2.mode='ap'
wireless.wifinet2.ssid='Sky'
wireless.wifinet2.encryption='sae-mixed'
wireless.wifinet2.key='222222'
wireless.wifinet2.ocv='0'
wireless.wifinet2.network='IOT'
wireless.wifinet3=wifi-iface
wireless.wifinet3.device='radio0'
wireless.wifinet3.mode='ap'
wireless.wifinet3.ssid='HLTE'
wireless.wifinet3.encryption='sae-mixed'
wireless.wifinet3.key='33333'
wireless.wifinet3.ocv='0'
wireless.wifinet3.network='IOT'
root@OpenWrt:~#
Asus Merlin RT-AC86U + 2xRT-AC68U
OpenWRT rPi3+ E3372
rPi5 HA, rPi4 OH

4

Odp: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

Spoko. W czym problem?

Masz niepotrzebny router, uszkodzony czy nie - chętnie przygarnę go.

5

Odp: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

Sorry, że dopiero teraz odpisuje ale nie miałem czasu zająć się tym routerem.
Problem polega na tym ,że wszystkie urządzenia dostają IP z puli 192.168.50.xxx . Chciałem aby tylko urządzenia podłączone przez WiFi do sieci IOT dostawały adresy z tej puli.
(Zmieniłem też adresację głównego routera na 192.168.100.1) .

Asus Merlin RT-AC86U + 2xRT-AC68U
OpenWRT rPi3+ E3372
rPi5 HA, rPi4 OH

6

Odp: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

Bo zrobiłeś to na br-lan. A pewnie chciałeś mieć oddzielny bridge na IOT, tak?

Masz niepotrzebny router, uszkodzony czy nie - chętnie przygarnę go.

7

Odp: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

Tak

Asus Merlin RT-AC86U + 2xRT-AC68U
OpenWRT rPi3+ E3372
rPi5 HA, rPi4 OH

8

Odp: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

No to zrób inny bridge:

uci add network device
uci set network.@device[-1].name='br-iot'
uci set network.@device[-1].type='bridge'
uci set network.@device[-1].bridge_empty='1'
uci set network.IOT.device='br-iot'
uci commit
reboot
Masz niepotrzebny router, uszkodzony czy nie - chętnie przygarnę go.

9

Odp: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

Teraz urządzenia podłączone do tego nowego bridge i WiFi IOT nie dostają IP albo ja nie umiem sprawdzić jakie IP dostały...

Asus Merlin RT-AC86U + 2xRT-AC68U
OpenWRT rPi3+ E3372
rPi5 HA, rPi4 OH

10

Odp: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

Jeszcze zrób nową sekcję dla dhcp jak nie miałeś.

Masz niepotrzebny router, uszkodzony czy nie - chętnie przygarnę go.

11 (edytowany przez edass 2026-01-07 20:19:49)

Odp: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

To przerasta moje możliwości.

Teraz mam tak:

root@OpenWrt:~# uci show network
network.loopback=interface
network.loopback.device='lo'
network.loopback.proto='static'
network.loopback.ipaddr='127.0.0.1/8'
network.globals=globals
network.globals.dhcp_default_duid='00042f37796fdb49451390726d9d1f7aa10a'
network.globals.ula_prefix='fd4b:6786:f2b::/48'
network.globals.packet_steering='1'
network.@device[0]=device
network.@device[0].name='br-lan'
network.@device[0].type='bridge'
network.@device[0].ports='lan1' 'lan2' 'lan3' 'lan4'
network.lan=interface
network.lan.device='br-lan'
network.lan.proto='static'
network.lan.ip6assign='60'
network.lan.ipaddr='192.168.100.1/24'
network.wan=interface
network.wan.device='wan'
network.wan.proto='dhcp'
network.wan6=interface
network.wan6.device='wan'
network.wan6.proto='dhcpv6'
network.IOT=interface
network.IOT.proto='static'
network.IOT.device='br-iot'
network.IOT.ipaddr='192.168.50.1'
network.IOT.netmask='255.255.255.0'
network.wg0=interface
network.wg0.proto='wireguard'
network.wg0.private_key='7BmGWe/ApIe02n8/WQJFw='
network.wg0.addresses='10.9.0.10/32'
network.@wireguard_wg0[0]=wireguard_wg0
network.@wireguard_wg0[0].public_key='a3UcrEmsGqe/Ib9Bc='
network.@wireguard_wg0[0].route_allowed_ips='1'
network.@wireguard_wg0[0].endpoint_host='frogr.us'
network.@wireguard_wg0[0].endpoint_port='21'
network.@wireguard_wg0[0].persistent_keepalive='25'
network.@wireguard_wg0[0].description='serwer2'
network.@wireguard_wg0[0].allowed_ips='10.9.0.0/24' '192.168.11.0/24' '192.168.8.0/24'
network.@device[1]=device
network.@device[1].name='br-iot'
network.@device[1].type='bridge'
network.@device[1].bridge_empty='1'
network.@device[2]=device
network.@device[2].name='br-iot'
network.@device[2].type='bridge'
network.@device[2].bridge_empty='1'
root@OpenWrt:~#
Asus Merlin RT-AC86U + 2xRT-AC68U
OpenWRT rPi3+ E3372
rPi5 HA, rPi4 OH

12

Odp: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

dhcp, nie network. Masz to opisane tutaj: https://eko.one.pl/?p=openwrt-guestnetwork

    # uci set dhcp.iot=dhcp
    # uci set dhcp.iot.start=100
    # uci set dhcp.iot.limit=150
    # uci set dhcp.iot.leasetime=2h
    # uci set dhcp.iot.interface=IOT

PS. Zrobiłeś dwa razy sekcję device z br-iot. Jedną usuń.

Masz niepotrzebny router, uszkodzony czy nie - chętnie przygarnę go.

13

Odp: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

Namieszałem coś  - nie mogę usunąć tego fragmentu:

dhcp.IOT=dhcp
dhcp.IOT.interface='IOT'
dhcp.IOT.dhcpv4='server'

root@OpenWrt:~# uci show dhcp
dhcp.@dnsmasq[0]=dnsmasq
dhcp.@dnsmasq[0].domainneeded='1'
dhcp.@dnsmasq[0].boguspriv='1'
dhcp.@dnsmasq[0].filterwin2k='0'
dhcp.@dnsmasq[0].localise_queries='1'
dhcp.@dnsmasq[0].rebind_protection='1'
dhcp.@dnsmasq[0].rebind_localhost='1'
dhcp.@dnsmasq[0].local='/lan/'
dhcp.@dnsmasq[0].domain='lan'
dhcp.@dnsmasq[0].expandhosts='1'
dhcp.@dnsmasq[0].nonegcache='0'
dhcp.@dnsmasq[0].cachesize='1000'
dhcp.@dnsmasq[0].authoritative='1'
dhcp.@dnsmasq[0].readethers='1'
dhcp.@dnsmasq[0].leasefile='/tmp/dhcp.leases'
dhcp.@dnsmasq[0].resolvfile='/tmp/resolv.conf.d/resolv.conf.auto'
dhcp.@dnsmasq[0].nonwildcard='1'
dhcp.@dnsmasq[0].localservice='1'
dhcp.@dnsmasq[0].ednspacket_max='1232'
dhcp.@dnsmasq[0].filter_aaaa='0'
dhcp.@dnsmasq[0].filter_a='0'
dhcp.lan=dhcp
dhcp.lan.interface='lan'
dhcp.lan.start='100'
dhcp.lan.limit='150'
dhcp.lan.leasetime='12h'
dhcp.lan.dhcpv4='server'
dhcp.lan.dhcpv6='server'
dhcp.lan.ra='server'
dhcp.lan.ra_flags='managed-config' 'other-config'
dhcp.lan.ra_preference='medium'
dhcp.wan=dhcp
dhcp.wan.interface='wan'
dhcp.wan.ignore='1'
dhcp.odhcpd=odhcpd
dhcp.odhcpd.maindhcp='0'
dhcp.odhcpd.leasefile='/tmp/odhcpd.leases'
dhcp.odhcpd.leasetrigger='/usr/sbin/odhcpd-update'
dhcp.odhcpd.loglevel='4'
dhcp.odhcpd.piodir='/tmp/odhcpd-piodir'
dhcp.odhcpd.hostsdir='/tmp/hosts'
dhcp.IOT=dhcp
dhcp.IOT.interface='IOT'
dhcp.IOT.dhcpv4='server'
dhcp.iot=dhcp
dhcp.iot.start='100'
dhcp.iot.limit='150'
dhcp.iot.leasetime='2h'
dhcp.iot.interface='IOT'
dhcp.iot.dhcpv4='disabled'
root@OpenWrt:~#
 

Teraz poprawiony network

root@OpenWrt:~# uci show network
network.loopback=interface
network.loopback.device='lo'
network.loopback.proto='static'
network.loopback.ipaddr='127.0.0.1/8'
network.globals=globals
network.globals.dhcp_default_duid='00042f37796fdb49451390726d9d1f7aa10a'
network.globals.ula_prefix='fd4b:6786:f2b::/48'
network.globals.packet_steering='1'
network.@device[0]=device
network.@device[0].name='br-lan'
network.@device[0].type='bridge'
network.@device[0].ports='lan1' 'lan2' 'lan3' 'lan4'
network.lan=interface
network.lan.device='br-lan'
network.lan.proto='static'
network.lan.ip6assign='60'
network.lan.ipaddr='192.168.100.1/24'
network.wan=interface
network.wan.device='wan'
network.wan.proto='dhcp'
network.wan6=interface
network.wan6.device='wan'
network.wan6.proto='dhcpv6'
network.IOT=interface
network.IOT.proto='static'
network.IOT.device='br-iot'
network.IOT.ipaddr='192.168.50.1'
network.IOT.netmask='255.255.255.0'
network.wg0=interface
network.wg0.proto='wireguard'
network.wg0.private_key='/ApIe02n8/WQJFw='
network.wg0.addresses='10.9.0.10/32'
network.@wireguard_wg0[0]=wireguard_wg0
network.@wireguard_wg0[0].public_key='rEmsGqe/Ib9Bc='
network.@wireguard_wg0[0].route_allowed_ips='1'
network.@wireguard_wg0[0].endpoint_host='frogr.us'
network.@wireguard_wg0[0].endpoint_port='21'
network.@wireguard_wg0[0].persistent_keepalive='25'
network.@wireguard_wg0[0].description='serwer2'
network.@wireguard_wg0[0].allowed_ips='10.9.0.0/24' 
network.@device[1]=device
network.@device[1].name='br-iot'
network.@device[1].type='bridge'
network.@device[1].bridge_empty='1'
root@OpenWrt:~#
Asus Merlin RT-AC86U + 2xRT-AC68U
OpenWRT rPi3+ E3372
rPi5 HA, rPi4 OH

14

Odp: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

uci del dhcp.IOT
uci del dhcp.iot.dhcpv4
uci commit
/etc/init.d/dnsmasq restart

i tak, będą tam "błędy" że czegoś nie może, zignoruj to.

Masz niepotrzebny router, uszkodzony czy nie - chętnie przygarnę go.

15

Odp: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

Dalej to nie działa. Aktualnie podłączonych po wifi jest 8 urządzeń.

root@OpenWrt:~# arp -a
IP address       HW type     Flags       HW address            Mask     Device
192.168.100.133  0x1         0x2         bc:ee:7b:de:3c:58     *        br-lan
192.168.100.230  0x1         0x2         bc:24:11:43:13:30     *        br-lan
192.168.100.17   0x1         0x2         00:09:b0:4f:d0:f8     *        br-lan
192.168.100.160  0x1         0x2         42:c2:a7:cd:bd:e7     *        br-lan
192.168.100.15   0x1         0x2         00:1d:ec:0d:2a:0a     *        br-lan
192.168.254.1    0x1         0x2         10:3c:59:26:f8:41     *        wan
10.223.135.233   0x1         0x2         10:3c:59:26:f8:41     *        wan
192.168.100.181  0x1         0x2         dc:a6:32:57:33:d7     *        br-lan
192.168.100.116  0x1         0x2         2c:f0:5d:0b:61:5b     *        br-lan
root@OpenWrt:~# cat /tmp/dhcp.leases
1767860443 42:c2:a7:cd:bd:e7 192.168.100.160 * 01:42:c2:a7:cd:bd:e7
1767860439 dc:a6:32:57:33:d7 192.168.100.181 raspberrypi 01:dc:a6:32:57:33:d7
1767860517 bc:ee:7b:de:3c:58 192.168.100.133 * 01:bc:ee:7b:de:3c:58
root@OpenWrt:~#
Asus Merlin RT-AC86U + 2xRT-AC68U
OpenWRT rPi3+ E3372
rPi5 HA, rPi4 OH

16

Odp: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

I wszystko masz pod br-lan, wiec dołączenie do zwykłego wifi wifi

Masz niepotrzebny router, uszkodzony czy nie - chętnie przygarnę go.

17

Odp: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

Chyba nie te urządzenia podłączone do sieci  Skynet_Ai i Hogwart_LTE nie dostają IP (albo nie wiem jak sprawdzić ich IP)

root@OpenWrt:~# uci show wireless
wireless.radio0=wifi-device
wireless.radio0.type='mac80211'
wireless.radio0.path='platform/soc/18000000.wifi'
wireless.radio0.band='2g'
wireless.radio0.channel='1'
wireless.radio0.htmode='HE40'
wireless.radio0.country='PL'
wireless.radio0.cell_density='0'
wireless.default_radio0=wifi-iface
wireless.default_radio0.device='radio0'
wireless.default_radio0.network='lan'
wireless.default_radio0.mode='ap'
wireless.default_radio0.ssid='Hxt'
wireless.default_radio0.encryption='sae'
wireless.default_radio0.key='x'
wireless.default_radio0.ocv='0'
wireless.radio1=wifi-device
wireless.radio1.type='mac80211'
wireless.radio1.path='platform/soc/18000000.wifi+1'
wireless.radio1.band='5g'
wireless.radio1.channel='36'
wireless.radio1.htmode='HE160'
wireless.radio1.country='PL'
wireless.radio1.cell_density='0'
wireless.default_radio1=wifi-iface
wireless.default_radio1.device='radio1'
wireless.default_radio1.network='lan'
wireless.default_radio1.mode='ap'
wireless.default_radio1.ssid='Hxt'
wireless.default_radio1.encryption='sae'
wireless.default_radio1.key='cxy'
wireless.default_radio1.ocv='0'
wireless.wifinet2=wifi-iface
wireless.wifinet2.device='radio0'
wireless.wifinet2.mode='ap'
wireless.wifinet2.ssid='Skynet_Ai'
wireless.wifinet2.encryption='sae-mixed'
wireless.wifinet2.key='xxx'
wireless.wifinet2.ocv='0'
wireless.wifinet2.network='IOT'
wireless.wifinet3=wifi-iface
wireless.wifinet3.device='radio0'
wireless.wifinet3.mode='ap'
wireless.wifinet3.ssid='Hogwart_LTE'
wireless.wifinet3.encryption='sae-mixed'
wireless.wifinet3.key='sx0'
wireless.wifinet3.ocv='0'
wireless.wifinet3.network='IOT'
root@OpenWrt:~#

network

root@OpenWrt:~# uci show network
network.loopback=interface
network.loopback.device='lo'
network.loopback.proto='static'
network.loopback.ipaddr='127.0.0.1/8'
network.globals=globals
network.globals.dhcp_default_duid='00042f37796fdb49451390726d9d1f7aa10a'
network.globals.ula_prefix='fd4b:6786:f2b::/48'
network.globals.packet_steering='1'
network.@device[0]=device
network.@device[0].name='br-lan'
network.@device[0].type='bridge'
network.@device[0].ports='lan1' 'lan2' 'lan3' 'lan4'
network.lan=interface
network.lan.device='br-lan'
network.lan.proto='static'
network.lan.ip6assign='60'
network.lan.ipaddr='192.168.100.1/24'
network.wan=interface
network.wan.device='wan'
network.wan.proto='dhcp'
network.wan6=interface
network.wan6.device='wan'
network.wan6.proto='dhcpv6'
network.IOT=interface
network.IOT.proto='static'
network.IOT.device='br-iot'
network.IOT.ipaddr='192.168.50.1'
network.IOT.netmask='255.255.255.0'
network.wg0=interface
network.wg0.proto='wireguard'
network.wg0.private_key='x2n8/WQJFw='
network.wg0.addresses='10.9.0.10/32'
network.@wireguard_wg0[0]=wireguard_wg0
network.@wireguard_wg0[0].public_key='xcrEmsGqe/Ib9Bc='
network.@wireguard_wg0[0].route_allowed_ips='1'
network.@wireguard_wg0[0].endpoint_host='frogxus'
network.@wireguard_wg0[0].endpoint_port='21x'
network.@wireguard_wg0[0].persistent_keepalive='25'
network.@wireguard_wg0[0].description='serwer2'
network.@wireguard_wg0[0].allowed_ips='10.9.0.0/24' '192.168.11.0/24' '192.168.8.0/24'
network.@device[1]=device
network.@device[1].name='br-iot'
network.@device[1].type='bridge'
network.@device[1].bridge_empty='1'
root@OpenWrt:~#

dhcp

root@OpenWrt:~# uci show dhcp
dhcp.@dnsmasq[0]=dnsmasq
dhcp.@dnsmasq[0].domainneeded='1'
dhcp.@dnsmasq[0].boguspriv='1'
dhcp.@dnsmasq[0].filterwin2k='0'
dhcp.@dnsmasq[0].localise_queries='1'
dhcp.@dnsmasq[0].rebind_protection='1'
dhcp.@dnsmasq[0].rebind_localhost='1'
dhcp.@dnsmasq[0].local='/lan/'
dhcp.@dnsmasq[0].domain='lan'
dhcp.@dnsmasq[0].expandhosts='1'
dhcp.@dnsmasq[0].nonegcache='0'
dhcp.@dnsmasq[0].cachesize='1000'
dhcp.@dnsmasq[0].authoritative='1'
dhcp.@dnsmasq[0].readethers='1'
dhcp.@dnsmasq[0].leasefile='/tmp/dhcp.leases'
dhcp.@dnsmasq[0].resolvfile='/tmp/resolv.conf.d/resolv.conf.auto'
dhcp.@dnsmasq[0].nonwildcard='1'
dhcp.@dnsmasq[0].localservice='1'
dhcp.@dnsmasq[0].ednspacket_max='1232'
dhcp.@dnsmasq[0].filter_aaaa='0'
dhcp.@dnsmasq[0].filter_a='0'
dhcp.lan=dhcp
dhcp.lan.interface='lan'
dhcp.lan.start='100'
dhcp.lan.limit='150'
dhcp.lan.leasetime='12h'
dhcp.lan.dhcpv4='server'
dhcp.lan.dhcpv6='server'
dhcp.lan.ra='server'
dhcp.lan.ra_flags='managed-config' 'other-config'
dhcp.lan.ra_preference='medium'
dhcp.wan=dhcp
dhcp.wan.interface='wan'
dhcp.wan.ignore='1'
dhcp.odhcpd=odhcpd
dhcp.odhcpd.maindhcp='0'
dhcp.odhcpd.leasefile='/tmp/odhcpd.leases'
dhcp.odhcpd.leasetrigger='/usr/sbin/odhcpd-update'
dhcp.odhcpd.loglevel='4'
dhcp.odhcpd.piodir='/tmp/odhcpd-piodir'
dhcp.odhcpd.hostsdir='/tmp/hosts'
dhcp.iot=dhcp
dhcp.iot.start='100'
dhcp.iot.limit='150'
dhcp.iot.leasetime='2h'
dhcp.iot.interface='IOT'
dhcp.iot.dhcpv4='server'
root@OpenWrt:~#
Asus Merlin RT-AC86U + 2xRT-AC68U
OpenWRT rPi3+ E3372
rPi5 HA, rPi4 OH

18

Odp: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

Podłącz się klientem do sieci Hogwart_LTE i później pokaż wynik polecenia logread

Masz niepotrzebny router, uszkodzony czy nie - chętnie przygarnę go.

19

Odp: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

To teraz zrób jeszcze raz /etc/init.d/dnsmasq restart.
Wcześniej miałeś
dhcp.IOT.dhcpv4='server'
dhcp.iot.dhcpv4='disabled' gdzie teraz tą pozycję usunąłeś.

20 (edytowany przez edass 2026-01-07 21:53:14)

Odp: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

Podłączałem się telefonem ale dostałem na telefonie komunikat nieudane połączenie. W LUCI przy sieci Skynet_Ai mam Associations: 8

Wed Jan  7 21:42:07 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 50:8a:06:af:60:4d
Wed Jan  7 21:42:07 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 50:8a:06:bd:7b:0d
Wed Jan  7 21:42:08 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:bd:7b:0d IEEE 802.11: authenticated
Wed Jan  7 21:42:08 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:bd:7b:0d IEEE 802.11: associated (aid 8)
Wed Jan  7 21:42:08 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 50:8a:06:bd:7b:0d auth_alg=open
Wed Jan  7 21:42:08 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:bd:7b:0d WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:42:08 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 50:8a:06:bd:7b:0d
Wed Jan  7 21:42:08 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:42:09 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: authenticated
Wed Jan  7 21:42:09 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: associated (aid 6)
Wed Jan  7 21:42:09 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED ec:fa:bc:07:b9:25 auth_alg=open
Wed Jan  7 21:42:09 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:42:09 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED ec:fa:bc:07:b9:25
Wed Jan  7 21:42:09 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e9:9c
Wed Jan  7 21:42:09 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: disassociated
Wed Jan  7 21:42:10 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: authenticated
Wed Jan  7 21:42:10 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: associated (aid 7)
Wed Jan  7 21:42:10 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e0:e0 auth_alg=open
Wed Jan  7 21:42:10 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:42:10 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:42:10 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:42:10 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e4:dc IEEE 802.11: authenticated
Wed Jan  7 21:42:11 2026 daemon.info hostapd: phy0-ap2: STA b0:cf:cb:e5:5d:44 IEEE 802.11: authenticated
Wed Jan  7 21:42:11 2026 daemon.info hostapd: phy0-ap2: STA b0:cf:cb:e5:5d:44 IEEE 802.11: associated (aid 1)
Wed Jan  7 21:42:11 2026 daemon.notice hostapd: phy0-ap2: AP-STA-CONNECTED b0:cf:cb:e5:5d:44 auth_alg=open
Wed Jan  7 21:42:11 2026 daemon.info hostapd: phy0-ap2: STA b0:cf:cb:e5:5d:44 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:42:11 2026 daemon.notice hostapd: phy0-ap2: EAPOL-4WAY-HS-COMPLETED b0:cf:cb:e5:5d:44
Wed Jan  7 21:42:14 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:42:14 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: disassociated
Wed Jan  7 21:42:14 2026 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.100.133 bc:ee:7b:de:3c:58
Wed Jan  7 21:42:14 2026 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.100.133 bc:ee:7b:de:3c:58
Wed Jan  7 21:42:15 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:42:17 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: authenticated
Wed Jan  7 21:42:17 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: associated (aid 2)
Wed Jan  7 21:42:17 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e0:e0 auth_alg=open
Wed Jan  7 21:42:17 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:42:17 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:42:19 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED ec:fa:bc:07:b9:25
Wed Jan  7 21:42:19 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: disassociated
Wed Jan  7 21:42:19 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db IEEE 802.11: authenticated
Wed Jan  7 21:42:19 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db IEEE 802.11: associated (aid 7)
Wed Jan  7 21:42:19 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 60:01:94:8e:7c:db auth_alg=open
Wed Jan  7 21:42:19 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:42:19 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 60:01:94:8e:7c:db
Wed Jan  7 21:42:20 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:42:21 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: authenticated
Wed Jan  7 21:42:21 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: associated (aid 6)
Wed Jan  7 21:42:21 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e9:9c auth_alg=open
Wed Jan  7 21:42:21 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:42:21 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e9:9c
Wed Jan  7 21:42:21 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:42:22 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: disassociated
Wed Jan  7 21:42:22 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 50:8a:06:af:60:4d
Wed Jan  7 21:42:22 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 50:8a:06:bd:7b:0d
Wed Jan  7 21:42:23 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:42:24 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:af:60:4d IEEE 802.11: authenticated
Wed Jan  7 21:42:24 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:af:60:4d IEEE 802.11: associated (aid 1)
Wed Jan  7 21:42:24 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 50:8a:06:af:60:4d auth_alg=open
Wed Jan  7 21:42:24 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:af:60:4d WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:42:24 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 50:8a:06:af:60:4d
Wed Jan  7 21:42:24 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:bd:7b:0d IEEE 802.11: authenticated
Wed Jan  7 21:42:24 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:bd:7b:0d IEEE 802.11: associated (aid 2)
Wed Jan  7 21:42:24 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 50:8a:06:bd:7b:0d auth_alg=open
Wed Jan  7 21:42:24 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:bd:7b:0d WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:42:24 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 50:8a:06:bd:7b:0d
Wed Jan  7 21:42:25 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: authenticated
Wed Jan  7 21:42:25 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: associated (aid 8)
Wed Jan  7 21:42:25 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e0:e0 auth_alg=open
Wed Jan  7 21:42:25 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:42:25 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:42:28 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:42:29 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: disassociated
Wed Jan  7 21:42:30 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:42:30 2026 daemon.info hostapd: phy0-ap1: STA d4:27:87:60:ca:56 IEEE 802.11: authenticated
Wed Jan  7 21:42:30 2026 daemon.info hostapd: phy0-ap1: STA d4:27:87:60:ca:56 IEEE 802.11: associated (aid 8)
Wed Jan  7 21:42:30 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED d4:27:87:60:ca:56 auth_alg=open
Wed Jan  7 21:42:30 2026 daemon.info hostapd: phy0-ap1: STA d4:27:87:60:ca:56 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:42:30 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED d4:27:87:60:ca:56
Wed Jan  7 21:42:31 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e9:9c
Wed Jan  7 21:42:31 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: disassociated
Wed Jan  7 21:42:32 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: authenticated
Wed Jan  7 21:42:32 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: associated (aid 9)
Wed Jan  7 21:42:32 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e0:e0 auth_alg=open
Wed Jan  7 21:42:32 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:42:32 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:42:33 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 60:01:94:8e:7c:db
Wed Jan  7 21:42:33 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db IEEE 802.11: disassociated
Wed Jan  7 21:42:33 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:42:33 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: authenticated
Wed Jan  7 21:42:33 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: associated (aid 6)
Wed Jan  7 21:42:33 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED ec:fa:bc:07:b9:25 auth_alg=open
Wed Jan  7 21:42:33 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:42:33 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED ec:fa:bc:07:b9:25
Wed Jan  7 21:42:34 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:42:35 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: authenticated
Wed Jan  7 21:42:35 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: associated (aid 7)
Wed Jan  7 21:42:35 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e9:9c auth_alg=open
Wed Jan  7 21:42:35 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:42:35 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e9:9c
Wed Jan  7 21:42:36 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:42:36 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: disassociated
Wed Jan  7 21:42:37 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db IEEE 802.11: authenticated
Wed Jan  7 21:42:37 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db IEEE 802.11: associated (aid 10)
Wed Jan  7 21:42:37 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 60:01:94:8e:7c:db auth_alg=open
Wed Jan  7 21:42:37 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:42:37 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 60:01:94:8e:7c:db
Wed Jan  7 21:42:38 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:42:40 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: authenticated
Wed Jan  7 21:42:40 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: associated (aid 9)
Wed Jan  7 21:42:40 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e0:e0 auth_alg=open
Wed Jan  7 21:42:40 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:42:40 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:42:43 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED ec:fa:bc:07:b9:25
Wed Jan  7 21:42:43 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: disassociated
Wed Jan  7 21:42:43 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:42:43 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: disassociated
Wed Jan  7 21:42:44 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:42:44 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e9:9c
Wed Jan  7 21:42:44 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: disassociated
Wed Jan  7 21:42:44 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:42:45 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 50:8a:06:af:60:4d
Wed Jan  7 21:42:45 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:af:60:4d IEEE 802.11: authenticated
Wed Jan  7 21:42:45 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:af:60:4d IEEE 802.11: associated (aid 1)
Wed Jan  7 21:42:45 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 50:8a:06:af:60:4d auth_alg=open
Wed Jan  7 21:42:45 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:af:60:4d WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:42:45 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 50:8a:06:af:60:4d
Wed Jan  7 21:42:45 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 50:8a:06:bd:7b:0d
Wed Jan  7 21:42:45 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:bd:7b:0d IEEE 802.11: authenticated
Wed Jan  7 21:42:45 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:bd:7b:0d IEEE 802.11: associated (aid 2)
Wed Jan  7 21:42:45 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 50:8a:06:bd:7b:0d auth_alg=open
Wed Jan  7 21:42:45 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:bd:7b:0d WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:42:45 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 50:8a:06:bd:7b:0d
Wed Jan  7 21:42:45 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:42:46 2026 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.100.133 bc:ee:7b:de:3c:58
Wed Jan  7 21:42:46 2026 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.100.133 bc:ee:7b:de:3c:58
Wed Jan  7 21:42:47 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: authenticated
Wed Jan  7 21:42:47 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: associated (aid 6)
Wed Jan  7 21:42:47 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e0:e0 auth_alg=open
Wed Jan  7 21:42:47 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:42:47 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:42:47 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: authenticated
Wed Jan  7 21:42:47 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: associated (aid 7)
Wed Jan  7 21:42:47 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED ec:fa:bc:07:b9:25 auth_alg=open
Wed Jan  7 21:42:47 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:42:47 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED ec:fa:bc:07:b9:25
Wed Jan  7 21:42:47 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e4:dc IEEE 802.11: authenticated
Wed Jan  7 21:42:50 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED d4:27:87:60:ca:56
Wed Jan  7 21:42:51 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 60:01:94:8e:7c:db
Wed Jan  7 21:42:51 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db IEEE 802.11: disassociated
Wed Jan  7 21:42:51 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:42:51 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: disassociated
Wed Jan  7 21:42:52 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:42:52 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:42:55 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: authenticated
Wed Jan  7 21:42:55 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: associated (aid 6)
Wed Jan  7 21:42:55 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e0:e0 auth_alg=open
Wed Jan  7 21:42:55 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:42:55 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:42:56 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:a4 IEEE 802.11: authenticated
Wed Jan  7 21:42:56 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:a4 IEEE 802.11: associated (aid 8)
Wed Jan  7 21:42:56 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e9:a4 auth_alg=open
Wed Jan  7 21:42:56 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:a4 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:42:56 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e9:a4
Wed Jan  7 21:42:56 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: authenticated
Wed Jan  7 21:42:56 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: associated (aid 9)
Wed Jan  7 21:42:56 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e9:9c auth_alg=open
Wed Jan  7 21:42:56 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:42:56 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e9:9c
Wed Jan  7 21:42:57 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED ec:fa:bc:07:b9:25
Wed Jan  7 21:42:57 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: disassociated
Wed Jan  7 21:42:58 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:42:58 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: disassociated
Wed Jan  7 21:42:58 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:42:59 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:43:01 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: authenticated
Wed Jan  7 21:43:02 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: associated (aid 6)
Wed Jan  7 21:43:02 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e0:e0 auth_alg=open
Wed Jan  7 21:43:02 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:02 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:43:02 2026 daemon.info hostapd: phy0-ap2: STA b0:cf:cb:e5:5d:44 IEEE 802.11: authenticated
Wed Jan  7 21:43:03 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e9:a4
Wed Jan  7 21:43:03 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:a4 IEEE 802.11: disassociated
Wed Jan  7 21:43:04 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:a4 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:43:06 2026 daemon.info hostapd: phy0-ap2: STA b0:cf:cb:e5:5d:44 IEEE 802.11: authenticated
Wed Jan  7 21:43:06 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:43:06 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: disassociated
Wed Jan  7 21:43:06 2026 daemon.info hostapd: phy0-ap2: STA b0:cf:cb:e5:5d:44 IEEE 802.11: associated (aid 1)
Wed Jan  7 21:43:06 2026 daemon.info hostapd: phy0-ap2: STA b0:cf:cb:e5:5d:44 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:06 2026 daemon.notice hostapd: phy0-ap2: EAPOL-4WAY-HS-COMPLETED b0:cf:cb:e5:5d:44
Wed Jan  7 21:43:06 2026 daemon.info hostapd: phy1-ap0: STA fe:4d:3d:09:c4:9d IEEE 802.11: associated (aid 3)
Wed Jan  7 21:43:07 2026 daemon.notice hostapd: phy1-ap0: AP-STA-CONNECTED fe:4d:3d:09:c4:9d auth_alg=sae
Wed Jan  7 21:43:07 2026 daemon.info hostapd: phy1-ap0: STA fe:4d:3d:09:c4:9d WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:07 2026 daemon.notice hostapd: phy1-ap0: EAPOL-4WAY-HS-COMPLETED fe:4d:3d:09:c4:9d
Wed Jan  7 21:43:07 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e9:9c
Wed Jan  7 21:43:07 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: disassociated
Wed Jan  7 21:43:07 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 50:8a:06:af:60:4d
Wed Jan  7 21:43:07 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:af:60:4d IEEE 802.11: authenticated
Wed Jan  7 21:43:07 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:af:60:4d IEEE 802.11: associated (aid 1)
Wed Jan  7 21:43:07 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 50:8a:06:af:60:4d auth_alg=open
Wed Jan  7 21:43:07 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:af:60:4d WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:07 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 50:8a:06:af:60:4d
Wed Jan  7 21:43:07 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 50:8a:06:bd:7b:0d
Wed Jan  7 21:43:07 2026 daemon.warn odhcpd[2479]: No default route present, setting ra_lifetime to 0!
Wed Jan  7 21:43:07 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:bd:7b:0d IEEE 802.11: authenticated
Wed Jan  7 21:43:07 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db IEEE 802.11: authenticated
Wed Jan  7 21:43:07 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:bd:7b:0d IEEE 802.11: associated (aid 2)
Wed Jan  7 21:43:07 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db IEEE 802.11: associated (aid 7)
Wed Jan  7 21:43:07 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 60:01:94:8e:7c:db auth_alg=open
Wed Jan  7 21:43:07 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:07 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 60:01:94:8e:7c:db
Wed Jan  7 21:43:07 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:43:07 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 50:8a:06:bd:7b:0d auth_alg=open
Wed Jan  7 21:43:07 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:bd:7b:0d WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:07 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 50:8a:06:bd:7b:0d
Wed Jan  7 21:43:08 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:43:09 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: authenticated
Wed Jan  7 21:43:09 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: associated (aid 6)
Wed Jan  7 21:43:10 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e0:e0 auth_alg=open
Wed Jan  7 21:43:10 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:10 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:43:10 2026 daemon.info dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) fe:4d:3d:09:c4:9d
Wed Jan  7 21:43:10 2026 daemon.info dnsmasq-dhcp[1]: DHCPOFFER(br-lan) 192.168.100.234 fe:4d:3d:09:c4:9d
Wed Jan  7 21:43:10 2026 daemon.info dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) fe:4d:3d:09:c4:9d
Wed Jan  7 21:43:10 2026 daemon.info dnsmasq-dhcp[1]: DHCPOFFER(br-lan) 192.168.100.234 fe:4d:3d:09:c4:9d
Wed Jan  7 21:43:10 2026 daemon.info dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) fe:4d:3d:09:c4:9d
Wed Jan  7 21:43:10 2026 daemon.info dnsmasq-dhcp[1]: DHCPOFFER(br-lan) 192.168.100.234 fe:4d:3d:09:c4:9d
Wed Jan  7 21:43:10 2026 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.100.234 fe:4d:3d:09:c4:9d
Wed Jan  7 21:43:10 2026 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.100.234 fe:4d:3d:09:c4:9d OPPO-Reno12-5G
Wed Jan  7 21:43:10 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: authenticated
Wed Jan  7 21:43:10 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: associated (aid 8)
Wed Jan  7 21:43:10 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e9:9c auth_alg=open
Wed Jan  7 21:43:10 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:10 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e9:9c
Wed Jan  7 21:43:11 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: authenticated
Wed Jan  7 21:43:11 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: associated (aid 9)
Wed Jan  7 21:43:11 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED ec:fa:bc:07:b9:25 auth_alg=open
Wed Jan  7 21:43:11 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:11 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED ec:fa:bc:07:b9:25
Wed Jan  7 21:43:13 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:43:13 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: disassociated
Wed Jan  7 21:43:14 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:43:15 2026 daemon.notice hostapd: phy1-ap0: AP-STA-DISCONNECTED fe:4d:3d:09:c4:9d
Wed Jan  7 21:43:16 2026 daemon.info hostapd: phy0-ap2: STA b6:59:71:ea:ca:b0 IEEE 802.11: associated (aid 2)
Wed Jan  7 21:43:16 2026 daemon.notice hostapd: phy0-ap2: AP-STA-CONNECTED b6:59:71:ea:ca:b0 auth_alg=sae
Wed Jan  7 21:43:16 2026 daemon.info hostapd: phy0-ap2: STA b6:59:71:ea:ca:b0 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:16 2026 daemon.notice hostapd: phy0-ap2: EAPOL-4WAY-HS-COMPLETED b6:59:71:ea:ca:b0
Wed Jan  7 21:43:16 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: authenticated
Wed Jan  7 21:43:16 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: associated (aid 6)
Wed Jan  7 21:43:16 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e0:e0 auth_alg=open
Wed Jan  7 21:43:16 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:16 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:43:18 2026 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.100.133 bc:ee:7b:de:3c:58
Wed Jan  7 21:43:18 2026 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.100.133 bc:ee:7b:de:3c:58
Wed Jan  7 21:43:19 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e9:9c
Wed Jan  7 21:43:20 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: disassociated
Wed Jan  7 21:43:20 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e4:dc IEEE 802.11: authenticated
Wed Jan  7 21:43:21 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:43:21 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:43:21 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: disassociated
Wed Jan  7 21:43:21 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 60:01:94:8e:7c:db
Wed Jan  7 21:43:21 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db IEEE 802.11: disassociated
Wed Jan  7 21:43:21 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED ec:fa:bc:07:b9:25
Wed Jan  7 21:43:22 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: disassociated
Wed Jan  7 21:43:22 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 50:8a:06:af:60:4d
Wed Jan  7 21:43:22 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:43:22 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:43:23 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:43:24 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:af:60:4d IEEE 802.11: authenticated
Wed Jan  7 21:43:24 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:af:60:4d IEEE 802.11: associated (aid 1)
Wed Jan  7 21:43:24 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 50:8a:06:af:60:4d auth_alg=open
Wed Jan  7 21:43:24 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:af:60:4d WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:24 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 50:8a:06:af:60:4d
Wed Jan  7 21:43:24 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e4:dc IEEE 802.11: authenticated
Wed Jan  7 21:43:24 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: authenticated
Wed Jan  7 21:43:24 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 50:8a:06:bd:7b:0d
Wed Jan  7 21:43:25 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: associated (aid 6)
Wed Jan  7 21:43:25 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:bd:7b:0d IEEE 802.11: authenticated
Wed Jan  7 21:43:25 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:bd:7b:0d IEEE 802.11: associated (aid 2)
Wed Jan  7 21:43:25 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e0:e0 auth_alg=open
Wed Jan  7 21:43:25 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:25 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:43:25 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 50:8a:06:bd:7b:0d auth_alg=open
Wed Jan  7 21:43:25 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:bd:7b:0d WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:25 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 50:8a:06:bd:7b:0d
Wed Jan  7 21:43:25 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db IEEE 802.11: authenticated
Wed Jan  7 21:43:25 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db IEEE 802.11: associated (aid 7)
Wed Jan  7 21:43:25 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 60:01:94:8e:7c:db auth_alg=open
Wed Jan  7 21:43:25 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:25 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 60:01:94:8e:7c:db
Wed Jan  7 21:43:25 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: authenticated
Wed Jan  7 21:43:25 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: associated (aid 8)
Wed Jan  7 21:43:26 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED ec:fa:bc:07:b9:25 auth_alg=open
Wed Jan  7 21:43:26 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:26 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED ec:fa:bc:07:b9:25
Wed Jan  7 21:43:28 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:43:28 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: disassociated
Wed Jan  7 21:43:28 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e4:dc IEEE 802.11: authenticated
Wed Jan  7 21:43:28 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e4:dc IEEE 802.11: associated (aid 9)
Wed Jan  7 21:43:29 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:43:31 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: authenticated
Wed Jan  7 21:43:31 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: associated (aid 6)
Wed Jan  7 21:43:31 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e9:9c auth_alg=open
Wed Jan  7 21:43:31 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:31 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e9:9c
Wed Jan  7 21:43:31 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: authenticated
Wed Jan  7 21:43:31 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: associated (aid 10)
Wed Jan  7 21:43:31 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e0:e0 auth_alg=open
Wed Jan  7 21:43:31 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:31 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:43:34 2026 daemon.notice hostapd: phy0-ap2: AP-STA-DISCONNECTED b6:59:71:ea:ca:b0
Wed Jan  7 21:43:35 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED ec:fa:bc:07:b9:25
Wed Jan  7 21:43:36 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: disassociated
Wed Jan  7 21:43:36 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:43:36 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: disassociated
Wed Jan  7 21:43:37 2026 daemon.notice hostapd: phy0-ap2: AP-STA-DISCONNECTED b0:cf:cb:e5:5d:44
Wed Jan  7 21:43:37 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:43:37 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:43:39 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 60:01:94:8e:7c:db
Wed Jan  7 21:43:39 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db IEEE 802.11: disassociated
Wed Jan  7 21:43:39 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: authenticated
Wed Jan  7 21:43:39 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: associated (aid 8)
Wed Jan  7 21:43:39 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e0:e0 auth_alg=open
Wed Jan  7 21:43:39 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:39 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:43:40 2026 daemon.info hostapd: phy0-ap1: STA d2:39:5e:39:c1:e2 IEEE 802.11: associated (aid 9)
Wed Jan  7 21:43:40 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED d2:39:5e:39:c1:e2 auth_alg=sae
Wed Jan  7 21:43:40 2026 daemon.info hostapd: phy0-ap1: STA d2:39:5e:39:c1:e2 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:40 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED d2:39:5e:39:c1:e2
Wed Jan  7 21:43:40 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:43:42 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e9:9c
Wed Jan  7 21:43:42 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: disassociated
Wed Jan  7 21:43:43 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:43:43 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: disassociated
Wed Jan  7 21:43:43 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:43:44 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:43:45 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 50:8a:06:af:60:4d
Wed Jan  7 21:43:45 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:af:60:4d IEEE 802.11: authenticated
Wed Jan  7 21:43:45 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:af:60:4d IEEE 802.11: associated (aid 1)
Wed Jan  7 21:43:45 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 50:8a:06:af:60:4d auth_alg=open
Wed Jan  7 21:43:45 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:af:60:4d WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:45 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 50:8a:06:af:60:4d
Wed Jan  7 21:43:45 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: authenticated
Wed Jan  7 21:43:45 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: associated (aid 6)
Wed Jan  7 21:43:45 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e9:9c auth_alg=open
Wed Jan  7 21:43:45 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:45 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e9:9c
Wed Jan  7 21:43:45 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 50:8a:06:bd:7b:0d
Wed Jan  7 21:43:46 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:bd:7b:0d IEEE 802.11: authenticated
Wed Jan  7 21:43:46 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:bd:7b:0d IEEE 802.11: associated (aid 2)
Wed Jan  7 21:43:46 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 50:8a:06:bd:7b:0d auth_alg=open
Wed Jan  7 21:43:46 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:bd:7b:0d WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:46 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 50:8a:06:bd:7b:0d
Wed Jan  7 21:43:46 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: authenticated
Wed Jan  7 21:43:46 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: associated (aid 7)
Wed Jan  7 21:43:46 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e0:e0 auth_alg=open
Wed Jan  7 21:43:46 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:46 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:43:50 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: authenticated
Wed Jan  7 21:43:50 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: associated (aid 8)
Wed Jan  7 21:43:50 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED ec:fa:bc:07:b9:25 auth_alg=open
Wed Jan  7 21:43:50 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:50 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED ec:fa:bc:07:b9:25
Wed Jan  7 21:43:50 2026 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.100.133 bc:ee:7b:de:3c:58
Wed Jan  7 21:43:50 2026 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.100.133 bc:ee:7b:de:3c:58
Wed Jan  7 21:43:50 2026 daemon.info hostapd: phy0-ap2: STA b0:cf:cb:e5:5d:44 IEEE 802.11: authenticated
Wed Jan  7 21:43:50 2026 daemon.info hostapd: phy0-ap2: STA b0:cf:cb:e5:5d:44 IEEE 802.11: associated (aid 1)
Wed Jan  7 21:43:50 2026 daemon.notice hostapd: phy0-ap2: AP-STA-CONNECTED b0:cf:cb:e5:5d:44 auth_alg=open
Wed Jan  7 21:43:50 2026 daemon.info hostapd: phy0-ap2: STA b0:cf:cb:e5:5d:44 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:50 2026 daemon.notice hostapd: phy0-ap2: EAPOL-4WAY-HS-COMPLETED b0:cf:cb:e5:5d:44
Wed Jan  7 21:43:51 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:43:51 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: disassociated
Wed Jan  7 21:43:52 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:43:54 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: authenticated
Wed Jan  7 21:43:54 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: associated (aid 7)
Wed Jan  7 21:43:54 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e0:e0 auth_alg=open
Wed Jan  7 21:43:54 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:54 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:43:55 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e9:9c
Wed Jan  7 21:43:55 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: disassociated
Wed Jan  7 21:43:56 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db IEEE 802.11: authenticated
Wed Jan  7 21:43:56 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db IEEE 802.11: associated (aid 10)
Wed Jan  7 21:43:56 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 60:01:94:8e:7c:db auth_alg=open
Wed Jan  7 21:43:56 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:43:56 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 60:01:94:8e:7c:db
Wed Jan  7 21:43:56 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:43:57 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:43:58 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: disassociated
Wed Jan  7 21:43:58 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED d2:39:5e:39:c1:e2
Wed Jan  7 21:43:59 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:44:00 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED ec:fa:bc:07:b9:25
Wed Jan  7 21:44:00 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: disassociated
Wed Jan  7 21:44:00 2026 daemon.info hostapd: phy0-ap1: STA d2:39:5e:39:c1:e2 IEEE 802.11: authenticated
Wed Jan  7 21:44:00 2026 daemon.info hostapd: phy0-ap1: STA d2:39:5e:39:c1:e2 IEEE 802.11: associated (aid 6)
Wed Jan  7 21:44:00 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED d2:39:5e:39:c1:e2 auth_alg=open
Wed Jan  7 21:44:00 2026 daemon.info hostapd: phy0-ap1: STA d2:39:5e:39:c1:e2 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:44:00 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED d2:39:5e:39:c1:e2
Wed Jan  7 21:44:01 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: authenticated
Wed Jan  7 21:44:01 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: associated (aid 7)
Wed Jan  7 21:44:01 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e0:e0 auth_alg=open
Wed Jan  7 21:44:01 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:44:01 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:44:01 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:44:04 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: authenticated
Wed Jan  7 21:44:04 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: associated (aid 8)
Wed Jan  7 21:44:04 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED ec:fa:bc:07:b9:25 auth_alg=open
Wed Jan  7 21:44:04 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:44:04 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED ec:fa:bc:07:b9:25
Wed Jan  7 21:44:05 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e4:dc IEEE 802.11: authenticated
Wed Jan  7 21:44:05 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:44:06 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: disassociated
Wed Jan  7 21:44:06 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: authenticated
Wed Jan  7 21:44:06 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: associated (aid 9)
Wed Jan  7 21:44:06 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e9:9c auth_alg=open
Wed Jan  7 21:44:06 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:44:06 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e9:9c
Wed Jan  7 21:44:07 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:44:07 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 50:8a:06:af:60:4d
Wed Jan  7 21:44:07 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:af:60:4d IEEE 802.11: authenticated
Wed Jan  7 21:44:07 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:af:60:4d IEEE 802.11: associated (aid 1)
Wed Jan  7 21:44:07 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 50:8a:06:af:60:4d auth_alg=open
Wed Jan  7 21:44:07 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:af:60:4d WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:44:07 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 50:8a:06:af:60:4d
Wed Jan  7 21:44:07 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:a4 IEEE 802.11: authenticated
Wed Jan  7 21:44:07 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:a4 IEEE 802.11: associated (aid 7)
Wed Jan  7 21:44:07 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e9:a4 auth_alg=open
Wed Jan  7 21:44:07 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:a4 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:44:07 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e9:a4
Wed Jan  7 21:44:07 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 50:8a:06:bd:7b:0d
Wed Jan  7 21:44:08 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:bd:7b:0d IEEE 802.11: authenticated
Wed Jan  7 21:44:08 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:bd:7b:0d IEEE 802.11: associated (aid 2)
Wed Jan  7 21:44:08 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 50:8a:06:bd:7b:0d auth_alg=open
Wed Jan  7 21:44:08 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:bd:7b:0d WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:44:08 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 50:8a:06:bd:7b:0d
Wed Jan  7 21:44:09 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: authenticated
Wed Jan  7 21:44:09 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: associated (aid 11)
Wed Jan  7 21:44:09 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e0:e0 auth_alg=open
Wed Jan  7 21:44:09 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:44:09 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:44:10 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 60:01:94:8e:7c:db
Wed Jan  7 21:44:10 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db IEEE 802.11: disassociated
Wed Jan  7 21:44:11 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:44:12 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:44:12 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: disassociated
Wed Jan  7 21:44:13 2026 daemon.info hostapd: phy0-ap1: STA d4:27:87:60:ca:56 IEEE 802.11: authenticated
Wed Jan  7 21:44:13 2026 daemon.info hostapd: phy0-ap1: STA d4:27:87:60:ca:56 IEEE 802.11: associated (aid 10)
Wed Jan  7 21:44:13 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED d4:27:87:60:ca:56 auth_alg=open
Wed Jan  7 21:44:13 2026 daemon.info hostapd: phy0-ap1: STA d4:27:87:60:ca:56 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:44:13 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED d4:27:87:60:ca:56
Wed Jan  7 21:44:13 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e9:a4
Wed Jan  7 21:44:14 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:a4 IEEE 802.11: disassociated
Wed Jan  7 21:44:14 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:44:14 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db IEEE 802.11: authenticated
Wed Jan  7 21:44:14 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db IEEE 802.11: associated (aid 11)
Wed Jan  7 21:44:14 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 60:01:94:8e:7c:db auth_alg=open
Wed Jan  7 21:44:14 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:44:14 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 60:01:94:8e:7c:db
Wed Jan  7 21:44:14 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED ec:fa:bc:07:b9:25
Wed Jan  7 21:44:14 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: disassociated
Wed Jan  7 21:44:15 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:a4 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:44:15 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:44:16 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: authenticated
Wed Jan  7 21:44:16 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: associated (aid 7)
Wed Jan  7 21:44:16 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e0:e0 auth_alg=open
Wed Jan  7 21:44:16 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:44:16 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:44:17 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e9:9c
Wed Jan  7 21:44:17 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: disassociated
Wed Jan  7 21:44:18 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:44:18 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED d2:39:5e:39:c1:e2
Wed Jan  7 21:44:20 2026 daemon.notice hostapd: phy0-ap2: AP-STA-DISCONNECTED b0:cf:cb:e5:5d:44
Wed Jan  7 21:44:20 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:44:20 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: disassociated
Wed Jan  7 21:44:20 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: authenticated
Wed Jan  7 21:44:20 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: associated (aid 6)
Wed Jan  7 21:44:21 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e9:9c auth_alg=open
Wed Jan  7 21:44:21 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:44:21 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e9:9c
Wed Jan  7 21:44:21 2026 daemon.info hostapd: phy0-ap2: STA b6:59:71:ea:ca:b0 IEEE 802.11: authenticated
Wed Jan  7 21:44:21 2026 daemon.info hostapd: phy0-ap2: STA b6:59:71:ea:ca:b0 IEEE 802.11: associated (aid 1)
Wed Jan  7 21:44:21 2026 daemon.notice hostapd: phy0-ap2: AP-STA-CONNECTED b6:59:71:ea:ca:b0 auth_alg=open
Wed Jan  7 21:44:21 2026 daemon.info hostapd: phy0-ap2: STA b6:59:71:ea:ca:b0 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:44:21 2026 daemon.notice hostapd: phy0-ap2: EAPOL-4WAY-HS-COMPLETED b6:59:71:ea:ca:b0
Wed Jan  7 21:44:21 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 50:8a:06:af:60:4d
Wed Jan  7 21:44:22 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:44:22 2026 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.100.133 bc:ee:7b:de:3c:58
Wed Jan  7 21:44:22 2026 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.100.133 bc:ee:7b:de:3c:58
Wed Jan  7 21:44:22 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 50:8a:06:bd:7b:0d
Wed Jan  7 21:44:24 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: authenticated
Wed Jan  7 21:44:24 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: associated (aid 1)
Wed Jan  7 21:44:24 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e0:e0 auth_alg=open
Wed Jan  7 21:44:24 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:44:24 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:44:24 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:af:60:4d IEEE 802.11: authenticated
Wed Jan  7 21:44:24 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:af:60:4d IEEE 802.11: associated (aid 2)
Wed Jan  7 21:44:24 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 50:8a:06:af:60:4d auth_alg=open
Wed Jan  7 21:44:24 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:af:60:4d WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:44:24 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 50:8a:06:af:60:4d
Wed Jan  7 21:44:24 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:bd:7b:0d IEEE 802.11: authenticated
Wed Jan  7 21:44:24 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:bd:7b:0d IEEE 802.11: associated (aid 7)
Wed Jan  7 21:44:24 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 50:8a:06:bd:7b:0d auth_alg=open
Wed Jan  7 21:44:24 2026 daemon.info hostapd: phy0-ap1: STA 50:8a:06:bd:7b:0d WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:44:24 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 50:8a:06:bd:7b:0d
Wed Jan  7 21:44:27 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:44:27 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: disassociated
Wed Jan  7 21:44:28 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 60:01:94:8e:7c:db
Wed Jan  7 21:44:28 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db IEEE 802.11: disassociated
Wed Jan  7 21:44:28 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: authenticated
Wed Jan  7 21:44:28 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: associated (aid 8)
Wed Jan  7 21:44:28 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED ec:fa:bc:07:b9:25 auth_alg=open
Wed Jan  7 21:44:28 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:44:28 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED ec:fa:bc:07:b9:25
Wed Jan  7 21:44:28 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:44:29 2026 daemon.info hostapd: phy0-ap1: STA 60:01:94:8e:7c:db IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:44:30 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e9:9c
Wed Jan  7 21:44:30 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: disassociated
Wed Jan  7 21:44:31 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: authenticated
Wed Jan  7 21:44:31 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: associated (aid 1)
Wed Jan  7 21:44:31 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e0:e0 auth_alg=open
Wed Jan  7 21:44:31 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:44:31 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:44:31 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:44:33 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED d4:27:87:60:ca:56
Wed Jan  7 21:44:34 2026 daemon.info hostapd: phy0-ap2: STA b0:cf:cb:e5:5d:44 IEEE 802.11: authenticated
Wed Jan  7 21:44:34 2026 daemon.info hostapd: phy0-ap2: STA b0:cf:cb:e5:5d:44 IEEE 802.11: associated (aid 2)
Wed Jan  7 21:44:34 2026 daemon.notice hostapd: phy0-ap2: AP-STA-CONNECTED b0:cf:cb:e5:5d:44 auth_alg=open
Wed Jan  7 21:44:34 2026 daemon.info hostapd: phy0-ap2: STA b0:cf:cb:e5:5d:44 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:44:34 2026 daemon.notice hostapd: phy0-ap2: EAPOL-4WAY-HS-COMPLETED b0:cf:cb:e5:5d:44
Wed Jan  7 21:44:34 2026 daemon.info hostapd: phy0-ap1: STA d4:27:87:60:ca:56 IEEE 802.11: authenticated
Wed Jan  7 21:44:34 2026 daemon.info hostapd: phy0-ap1: STA d4:27:87:60:ca:56 IEEE 802.11: associated (aid 6)
Wed Jan  7 21:44:34 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED d4:27:87:60:ca:56 auth_alg=open
Wed Jan  7 21:44:34 2026 daemon.info hostapd: phy0-ap1: STA d4:27:87:60:ca:56 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:44:34 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED d4:27:87:60:ca:56
Wed Jan  7 21:44:35 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:44:35 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: disassociated
Wed Jan  7 21:44:36 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:44:38 2026 daemon.notice hostapd: phy0-ap1: AP-STA-DISCONNECTED ec:fa:bc:07:b9:25
Wed Jan  7 21:44:38 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: disassociated
Wed Jan  7 21:44:39 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: authenticated
Wed Jan  7 21:44:39 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 IEEE 802.11: associated (aid 1)
Wed Jan  7 21:44:39 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e0:e0 auth_alg=open
Wed Jan  7 21:44:39 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e0:e0 WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:44:39 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e0:e0
Wed Jan  7 21:44:39 2026 daemon.notice hostapd: phy0-ap2: AP-STA-DISCONNECTED b6:59:71:ea:ca:b0
Wed Jan  7 21:44:40 2026 daemon.info hostapd: phy0-ap1: STA ec:fa:bc:07:b9:25 IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed Jan  7 21:44:41 2026 daemon.info hostapd: phy1-ap0: STA fe:4d:3d:09:c4:9d IEEE 802.11: authenticated
Wed Jan  7 21:44:41 2026 daemon.info hostapd: phy1-ap0: STA fe:4d:3d:09:c4:9d IEEE 802.11: associated (aid 3)
Wed Jan  7 21:44:41 2026 daemon.notice hostapd: phy1-ap0: AP-STA-CONNECTED fe:4d:3d:09:c4:9d auth_alg=open
Wed Jan  7 21:44:41 2026 daemon.info hostapd: phy1-ap0: STA fe:4d:3d:09:c4:9d WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:44:41 2026 daemon.notice hostapd: phy1-ap0: EAPOL-4WAY-HS-COMPLETED fe:4d:3d:09:c4:9d
Wed Jan  7 21:44:41 2026 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.100.234 fe:4d:3d:09:c4:9d
Wed Jan  7 21:44:41 2026 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.100.234 fe:4d:3d:09:c4:9d OPPO-Reno12-5G
Wed Jan  7 21:44:42 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: authenticated
Wed Jan  7 21:44:42 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c IEEE 802.11: associated (aid 8)
Wed Jan  7 21:44:42 2026 daemon.notice hostapd: phy0-ap1: AP-STA-CONNECTED 68:c6:3a:cd:e9:9c auth_alg=open
Wed Jan  7 21:44:42 2026 daemon.info hostapd: phy0-ap1: STA 68:c6:3a:cd:e9:9c WPA: pairwise key handshake completed (RSN)
Wed Jan  7 21:44:42 2026 daemon.notice hostapd: phy0-ap1: EAPOL-4WAY-HS-COMPLETED 68:c6:3a:cd:e9:9c
root@OpenWrt:~#

https://pastebin.com/zE2CQQcu

Dzisiaj musze już zakończyć zabawę z routerem bo TV nie chodzi. wink  Wracam do walki jutro. Dzięki za pomoc!

Asus Merlin RT-AC86U + 2xRT-AC68U
OpenWRT rPi3+ E3372
rPi5 HA, rPi4 OH

21

Odp: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

Na razie to w ogóle do wifi się nie podłączasz. Wywal to sae-mixed, ustaw tylko psk2 i zrestartuj cały router.

Masz niepotrzebny router, uszkodzony czy nie - chętnie przygarnę go.

22

Odp: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

Focus napisał/a:

To teraz zrób jeszcze raz /etc/init.d/dnsmasq restart.
Wcześniej miałeś
dhcp.IOT.dhcpv4='server'
dhcp.iot.dhcpv4='disabled' gdzie teraz tą pozycję usunąłeś.


Po zmianach w plikach był reboot .

Asus Merlin RT-AC86U + 2xRT-AC68U
OpenWRT rPi3+ E3372
rPi5 HA, rPi4 OH

23

Odp: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

Cezary napisał/a:

Na razie to w ogóle do wifi się nie podłączasz. Wywal to sae-mixed, ustaw tylko psk2 i zrestartuj cały router.

Zmieniłem na psk2 , poszedł reboot i dalej nie mogę połączyć się z siecią z telefonu. Jest jednak postęp bo podłączyły mi się do głównego WiFi kolejne urządzenia np. iPhone.

Asus Merlin RT-AC86U + 2xRT-AC68U
OpenWRT rPi3+ E3372
rPi5 HA, rPi4 OH

24

Odp: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

Pokaż logi.

Masz niepotrzebny router, uszkodzony czy nie - chętnie przygarnę go.

25

Odp: Nowy router, sieć wifi dla iot - jak to ustawić prawidłowo ustawić?

Proszę bardzo:

https://pastebin.com/RsP6yKid

Asus Merlin RT-AC86U + 2xRT-AC68U
OpenWRT rPi3+ E3372
rPi5 HA, rPi4 OH