1 (edytowany przez lukasz.oferty 2025-06-10 10:48:10)

Temat: Wi-Fi Repeater: AP+STA w client mode

Witam, jestem nowy na forum.

Mam banane rpi4 i chciałem ją sobie wpiąć w domu w lokalną sieć jako repeater (client mode) bez możliwości wpięcia kabla lan na stałe. Chciałbym, aby bezporzewodowi oraz przewodowi klienci banany dostawali IP z mojego dotychczasowego routera.

Co zrobilem:
ustawilem banane, aby laczyla sie z domowa siecia przez wifi:
https://openwrt.org/docs/guide-user/net … ers/ap_sta

ustawilem banane w tryb client mode:
https://openwrt.org/docs/guide-user/net … ientdevice

Co nie działa:
lącząc się telefonem z wifi na banana, nie dostaje IP z glownego routera.

Czego mi brakuje? dhcp relay?

Configi:

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

config wifi-device 'radio0'
    option type 'mac80211'
    option path 'soc/11300000.pcie/pci0000:00/0000:00:00.0/0000:01:00.0'
    option radio '0'
    option band '2g'
    option channel '1'
    option htmode 'EHT20'
    option country 'GB'

config wifi-iface 'default_radio0'
    option device 'radio0'
    option network 'lan'
    option mode 'ap'
    option ssid 'OpenWrt'
    option encryption 'none'

config wifi-device 'radio1'
    option type 'mac80211'
    option path 'soc/11300000.pcie/pci0000:00/0000:00:00.0/0000:01:00.0'
    option radio '1'
    option band '5g'
    option channel '36'
    option htmode 'VHT80'
    option country 'GB'
    option cell_density '0'

config wifi-iface 'default_radio1'
    option device 'radio1'
    option network 'lan'
    option mode 'ap'
    option ssid 'OpenWrt'
    option encryption 'none'

config wifi-device 'radio2'
    option type 'mac80211'
    option path 'soc/11300000.pcie/pci0000:00/0000:00:00.0/0000:01:00.0'
    option radio '2'
    option band '6g'
    option channel 'auto'
    option htmode 'EHT80'
    option country 'GB'

config wifi-iface 'default_radio2'
    option device 'radio2'
    option network 'lan'
    option mode 'ap'
    option ssid 'OpenWrt'
    option encryption 'sae'
    option key 'XXXXXX'
    option ieee80211w '2'

config wifi-iface 'wifinet3'
    option device 'radio1'
    option mode 'sta'
    option network 'wwan'
    option ssid 'SSID-domowego-wifi'
    option encryption 'psk2'
    option key 'haslo-do-domowego-wifi'

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

config dnsmasq
    option domainneeded '1'
    option boguspriv '1'
    option filterwin2k '0'
    option localise_queries '1'
    option rebind_protection '1'
    option rebind_localhost '1'
    option local '/lan/'
    option domain 'lan'
    option expandhosts '1'
    option nonegcache '0'
    option cachesize '1000'
    option authoritative '1'
    option readethers '1'
    option leasefile '/tmp/dhcp.leases'
    option resolvfile '/tmp/resolv.conf.d/resolv.conf.auto'
    option nonwildcard '1'
    option localservice '1'
    option ednspacket_max '1232'
    option filter_aaaa '0'
    option filter_a '0'

config dhcp 'lan'
    option interface 'lan'
    option start '100'
    option limit '150'
    option leasetime '12h'
    option dhcpv4 'server'
    option ignore '1'

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'


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 'fd0e:3464:d8db::/48'
    option packet_steering '1'

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

config interface 'lan'
    option device 'br-lan'
    option proto 'dhcp'

config device
    option name 'br-wan'
    option type 'bridge'
    list ports 'wan'
    list ports 'eth2'

config device
    option name 'wan'
    option macaddr 'be:15:e0:cc:da:83'

config device
    option name 'eth2'
    option macaddr 'be:15:e0:cc:da:83'

config interface 'wan'
    option device 'br-wan'
    option proto 'dhcp'

config interface 'wan6'
    option device 'br-wan'
    option proto 'dhcpv6'

config interface 'wwan'
    option proto 'dhcp'

2 (edytowany przez lukasz.oferty 2025-06-10 12:05:38)

Odp: Wi-Fi Repeater: AP+STA w client mode

Ok, sorki znalazłem przepis na waszej stronie.

https://eko.one.pl/?p=openwrt-sta#mostbezprzewodowy

Zobacze kroki z części "Most bezprzewodowy"

Edit: po wykonaniu komend z tego artykulu i finalnym reboot, wciaż mi nie przydziala IP z glownego routera.

3

Odp: Wi-Fi Repeater: AP+STA w client mode

Więc pokaż wyniki poleceń

ps
iw
uci show network
uci show dhcp
uci show wireless
uci show firewall
route -n
logread

Na przyszłość - zawsze podawaj konfigi i pisz co zrobiłeś. Samo "zrobiłem i nie działa" kompletnie nie prowadzi w żaden sposób do rozwiązania ew problemu.

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

4 (edytowany przez lukasz.oferty 2025-06-10 12:50:55)

Odp: Wi-Fi Repeater: AP+STA w client mode

Ok, a więc zrobiłem factory reset + instrukcje Most bezprzewodowy" z https://eko.one.pl/?p=openwrt-sta#mostbezprzewodowy

Zgaduje, że chodziło o iw dev, a nie samo iw, stad po reboocie i odczekaniu az router polaczy sie z siecia domową wyszlo:

root@OpenWrt:~# ps 
  PID USER       VSZ STAT COMMAND
    1 root      2304 S    /sbin/procd
    2 root         0 SW   [kthreadd]
    3 root         0 SW   [pool_workqueue_]
    4 root         0 IW<  [kworker/R-rcu_g]
    5 root         0 IW<  [kworker/R-rcu_p]
    6 root         0 IW<  [kworker/R-slub_]
    7 root         0 IW<  [kworker/R-netns]
    9 root         0 IW<  [kworker/0:0H-mm]
   11 root         0 IW   [kworker/u8:0-ev]
   12 root         0 IW<  [kworker/R-mm_pe]
   13 root         0 IW   [rcu_tasks_trace]
   14 root         0 SW   [ksoftirqd/0]
   15 root         0 IW   [rcu_sched]
   16 root         0 SW   [migration/0]
   17 root         0 SW   [cpuhp/0]
   18 root         0 SW   [cpuhp/1]
   19 root         0 SW   [migration/1]
   20 root         0 SW   [ksoftirqd/1]
   21 root         0 IW   [kworker/1:0-ipv]
   22 root         0 IW<  [kworker/1:0H-ev]
   23 root         0 SW   [cpuhp/2]
   24 root         0 SW   [migration/2]
   25 root         0 SW   [ksoftirqd/2]
   26 root         0 IW   [kworker/2:0-pm]
   27 root         0 IW<  [kworker/2:0H-ev]
   28 root         0 SW   [cpuhp/3]
   29 root         0 SW   [migration/3]
   30 root         0 SW   [ksoftirqd/3]
   32 root         0 IW<  [kworker/3:0H-kb]
   33 root         0 IW<  [kworker/R-inet_]
   34 root         0 SW   [oom_reaper]
   35 root         0 IW<  [kworker/R-write]
   36 root         0 SW   [kcompactd0]
   37 root         0 IW<  [kworker/R-pencr]
   38 root         0 IW<  [kworker/R-pdecr]
   39 root         0 IW<  [kworker/R-crypt]
   40 root         0 IW<  [kworker/R-kbloc]
   41 root         0 IW<  [kworker/R-blkcg]
   42 root         0 IW   [kworker/u8:1-ev]
   43 root         0 IW   [kworker/u8:2-ev]
   44 root         0 IW<  [kworker/R-ata_s]
   45 root         0 SW   [watchdogd]
   47 root         0 IW<  [kworker/1:1H-kb]
   57 root         0 SW   [kswapd0]
   59 root         0 IW<  [kworker/R-kthro]
  249 root         0 IW   [kworker/0:5-rcu]
  254 root         0 IW   [kworker/2:1-eve]
  289 root         0 SW   [spi0]
  290 root         0 IW   [kworker/0:10-ev]
  310 root         0 SW   [ubi_bgt0d]
  338 root         0 IW   [kworker/u8:3-ev]
  409 root         0 SW   [irq/111-1100a00]
  440 root         0 IW<  [kworker/R-mld]
  442 root         0 IW   [kworker/1:3-mm_]
  443 root         0 IW<  [kworker/R-ipv6_]
  444 root         0 IW<  [kworker/2:1H-kb]
  450 root         0 IW<  [kworker/R-dsa_o]
  451 root         0 IW<  [kworker/R-kstrp]
  642 root         0 IW   [kworker/3:4-eve]
  643 root         0 IW   [kworker/3:5-eve]
  650 root         0 IW<  [kworker/R-mmc_c]
  652 root         0 IW<  [kworker/0:1H-mm]
  676 root         0 SW   [irq/116-aerdrv]
  691 root         0 SW   [irq/119-aerdrv]
  782 root         0 SW   [napi/mtk_eth-5]
  783 root         0 SW   [napi/mtk_eth-6]
  793 root         0 SW   [irq/120-mt7530]
  849 root         0 IW<  [kworker/3:1H-kb]
  876 root         0 SW   [irq/29-gpio-key]
 1012 root         0 SW   [f2fs_ckpt-259:2]
 1013 root         0 SW   [f2fs_flush-259:]
 1014 root         0 SW   [f2fs_discard-25]
 1015 root         0 SW   [f2fs_gc-259:2]
 1101 ubus      1476 S    /sbin/ubusd
 1102 root      1336 S    /bin/login -f root
 1137 root      1088 S    /sbin/urngd
 1249 root         0 SW   [irq/97-sfp1-mod]
 1250 root         0 SW   [irq/69-sfp1-los]
 1251 root         0 SW   [irq/84-sfp1-tx-]
 1254 root         0 SW   [irq/98-sfp2-mod]
 1255 root         0 SW   [irq/17-sfp2-los]
 1256 root         0 SW   [irq/16-sfp2-tx-]
 1261 root         0 IW   [kworker/u8:4-ev]
 1265 root         0 IW<  [kworker/R-cfg80]
 1272 root         0 SW   [napi/phy0-7]
 1273 root         0 SW   [napi/phy0-8]
 1274 root         0 SW   [napi/phy0-9]
 1275 root         0 SW   [napi/phy0-10]
 1276 root         0 SW   [napi/phy0-11]
 1277 root         0 SW   [napi/phy0-12]
 1280 root         0 SW   [mt76-tx phy0]
 1459 logd      2064 S    /sbin/logd -S 128
 1513 root      3708 S    /sbin/rpcd -s /var/run/ubus/ubus.sock -t 30
 1773 root      1132 S    /usr/sbin/dropbear -F -P /var/run/dropbear.1.pid -p
 1879 root      2852 S    {hostapd} /sbin/ujail -t 5 -n hostapd -U network -G 
 1880 root      2852 S    {wpa_supplicant} /sbin/ujail -t 5 -n wpa_supplicant 
 1927 network   5292 S    /usr/sbin/hostapd -s -g /var/run/hostapd/global
 1928 network   5376 S    /usr/sbin/wpa_supplicant -n -s -g /var/run/wpa_suppl
 1944 root      2796 S    /sbin/netifd
 2064 root      1752 S    /usr/sbin/odhcpd
 2182 root      3036 S    /usr/sbin/uhttpd -f -h /www -r OpenWrt -x /cgi-bin -
 2884 root      2852 S    {dnsmasq} /sbin/ujail -t 5 -n dnsmasq -u -l -r /bin/
 2912 dnsmasq   1664 S    /usr/sbin/dnsmasq -C /var/etc/dnsmasq.conf.cfg01411c
 3001 root      1352 S    -ash
 3057 root      2852 S    {ntpd} /sbin/ujail -t 5 -n ntpd -U ntp -G ntp -C /et
 3115 root       968 S    /usr/sbin/ubihealthd -f -d /dev/ubi0
 3140 ntp       1336 S    /usr/sbin/ntpd -n -N -S /usr/sbin/ntpd-hotplug -p 0.
 4563 root      1104 S    /usr/sbin/relayd -I br-lan -I phy0.0-sta0 -B -D
 4594 root      1336 S    udhcpc -p /var/run/udhcpc-phy0.0-sta0.pid -s /lib/ne
 4646 root         0 IW   [kworker/2:2]
 4798 root      1344 R    ps
root@OpenWrt:~# 
root@OpenWrt:~# 
root@OpenWrt:~# iw dev
phy#0
        Interface phy0.0-sta0
                ifindex 15
                wdev 0x5
                addr be:15:e0:cc:da:84
                type managed
                channel 1 (2412 MHz), width: 40 MHz, center1: 2422 MHz
                txpower 20.00 dBm
                multicast TXQ:
                        qsz-byt qsz-pkt flows   drops   marks   overlmt hashcol tx-bytes        tx-packets
                        0       0       0       0       0       0       0       0               0
                Radios: 0
        Interface phy0.1-ap0
                ifindex 14
                wdev 0x4
                addr be:15:e0:cc:da:94
                ssid OpenWrt
                type AP
                channel 36 (5180 MHz), width: 80 MHz, center1: 5210 MHz
                txpower 20.00 dBm
                multicast TXQ:
                        qsz-byt qsz-pkt flows   drops   marks   overlmt hashcol tx-bytes        tx-packets
                        0       0       0       0       0       0       0       0               0
                Radios: 1
root@OpenWrt:~# 
root@OpenWrt:~# 
root@OpenWrt:~# 
root@OpenWrt:~# uci show network
network.loopback=interface
network.loopback.device='lo'
network.loopback.proto='static'
network.loopback.ipaddr='127.0.0.1'
network.loopback.netmask='255.0.0.0'
network.globals=globals
network.globals.ula_prefix='fd52:eb16:8952::/48'
network.@device[0]=device
network.@device[0].name='br-lan'
network.@device[0].type='bridge'
network.@device[0].ports='lan1' 'lan2' 'lan3' 'eth1'
network.lan=interface
network.lan.device='br-lan'
network.lan.proto='static'
network.lan.ipaddr='192.168.2.1'
network.lan.netmask='255.255.255.0'
network.lan.ip6assign='60'
network.@device[1]=device
network.@device[1].name='br-wan'
network.@device[1].type='bridge'
network.@device[1].ports='wan' 'eth2'
network.@device[2]=device
network.@device[2].name='wan'
network.@device[2].macaddr='be:15:e0:cc:da:83'
network.@device[3]=device
network.@device[3].name='eth2'
network.@device[3].macaddr='be:15:e0:cc:da:83'
network.wan6=interface
network.wan6.device='br-wan'
network.wan6.proto='dhcpv6'
network.wwan=interface
network.wwan.proto='dhcp'
network.bridge=interface
network.bridge.proto='relay'
network.bridge.network='lan' 'wwan'
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_slaac='1'
dhcp.lan.ra_flags='managed-config' 'other-config'
dhcp.lan.ignore='1'
dhcp.wan=dhcp
dhcp.wan.interface='wan'
dhcp.wan.ignore='1'
dhcp.odhcpd=odhcpd
dhcp.odhcpd.maindhcp='0'
dhcp.odhcpd.leasefile='/tmp/hosts/odhcpd'
dhcp.odhcpd.leasetrigger='/usr/sbin/odhcpd-update'
dhcp.odhcpd.loglevel='4'
root@OpenWrt:~# uci show wireless
wireless.radio0=wifi-device
wireless.radio0.type='mac80211'
wireless.radio0.path='soc/11300000.pcie/pci0000:00/0000:00:00.0/0000:01:00.0'
wireless.radio0.radio='0'
wireless.radio0.htmode='VHT80'
wireless.radio0.cell_density='0'
wireless.radio1=wifi-device
wireless.radio1.type='mac80211'
wireless.radio1.path='soc/11300000.pcie/pci0000:00/0000:00:00.0/0000:01:00.0'
wireless.radio1.radio='1'
wireless.radio1.band='5g'
wireless.radio1.channel='36'
wireless.radio1.htmode='EHT80'
wireless.radio2=wifi-device
wireless.radio2.type='mac80211'
wireless.radio2.path='soc/11300000.pcie/pci0000:00/0000:00:00.0/0000:01:00.0'
wireless.radio2.radio='2'
wireless.radio2.band='6g'
wireless.radio2.channel='auto'
wireless.radio2.htmode='EHT80'
wireless.default_radio1=wifi-iface
wireless.default_radio1.device='radio1'
wireless.default_radio1.network='lan'
wireless.default_radio1.mode='ap'
wireless.default_radio1.ssid='OpenWrt'
wireless.default_radio1.encryption='none'
wireless.@wifi-iface[1]=wifi-iface
wireless.@wifi-iface[1].device='radio0'
wireless.@wifi-iface[1].mode='sta'
wireless.@wifi-iface[1].ssid='domowe-ssid'
wireless.@wifi-iface[1].encryption='psk2'
wireless.@wifi-iface[1].key='domowe-haslo'
wireless.@wifi-iface[1].network='wwan'
root@OpenWrt:~# uci show firewall
firewall.@defaults[0]=defaults
firewall.@defaults[0].syn_flood='1'
firewall.@defaults[0].input='REJECT'
firewall.@defaults[0].output='ACCEPT'
firewall.@defaults[0].forward='REJECT'
firewall.@zone[0]=zone
firewall.@zone[0].name='lan'
firewall.@zone[0].input='ACCEPT'
firewall.@zone[0].output='ACCEPT'
firewall.@zone[0].forward='ACCEPT'
firewall.@zone[0].network='lan' 'bridge' 'wwan'
firewall.@zone[1]=zone
firewall.@zone[1].name='wan'
firewall.@zone[1].input='REJECT'
firewall.@zone[1].output='ACCEPT'
firewall.@zone[1].forward='REJECT'
firewall.@zone[1].masq='1'
firewall.@zone[1].mtu_fix='1'
firewall.@zone[1].network='wan' 'wan6' 'wwan'
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' 'neighbo'
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'
root@OpenWrt:~# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.88.1    0.0.0.0         UG    0      0        0 phy0.0-sta0
192.168.2.0     0.0.0.0         255.255.255.0   U     0      0        0 br-lan
192.168.88.0    0.0.0.0         255.255.255.0   U     0      0        0 phy0.0-sta0
root@OpenWrt:~# 
root@OpenWrt:~# logread
Tue Jun 10 11:34:21 2025 kern.info kernel: [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x411fd090]
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.193437] FIT: Detected U-Boot 2024.10-OpenWrt-r28662+9-22454beb7e
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.199782] FIT: Selected configuration: "config-mt7988a-bananapi-bpi-r4" (OpenWrt bananapi_bpi-r4)
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.208830] FIT:           kernel sub-image 0x00001000..0x00560c78 "kernel-1" (ARM64 OpenWrt Linux-6.6.86)
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.218568] FIT:          flat_dt sub-image 0x00561000..0x0056ca15 "fdt-1" (ARM64 OpenWrt bananapi_bpi-r4 device tree blob)
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.229778] FIT:          flat_dt sub-image 0x0056d000..0x0056d609 "fdt-mt7988a-bananapi-bpi-r4-emmc" (ARM64 OpenWrt bananapi_bpi-r4 device tree overlay mt7988a-bananapi-bpi-r4-emmc)
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.246107] FIT:          flat_dt sub-image 0x0056e000..0x0056e11c "fdt-mt7988a-bananapi-bpi-r4-rtc" (ARM64 OpenWrt bananapi_bpi-r4 device tree overlay mt7988a-bananapi-bpi-r4-rtc)
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.262261] FIT:          flat_dt sub-image 0x0056f000..0x0056f5c1 "fdt-mt7988a-bananapi-bpi-r4-sd" (ARM64 OpenWrt bananapi_bpi-r4 device tree overlay mt7988a-bananapi-bpi-r4-sd)
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.278243] FIT:          flat_dt sub-image 0x00570000..0x005708f0 "fdt-mt7988a-bananapi-bpi-r4-wifi-mt7996a" (ARM64 OpenWrt bananapi_bpi-r4 device tree overlay mt7988a-bananapi-bpi-)
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.295958] FIT:       filesystem sub-image 0x00571000..0x01023fff "rootfs-1" (ARM64 OpenWrt bananapi_bpi-r4 rootfs)
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.306832] block mmcblk0p5: mapped 1 uImage.FIT filesystem sub-image as /dev/fit0
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.314580] block mmcblk0p5: mapped remaining space as /dev/fitrw
Tue Jun 10 11:34:21 2025 kern.err kernel: [    5.443966] mtk_soc_eth 15100000.ethernet: generated random MAC address 65:74:68:25:64:00
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.456389] mtk_soc_eth 15100000.ethernet eth0: mediatek frame engine at 0xffffffc082900000, irq 106
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.466059] mtk_soc_eth 15100000.ethernet eth1: mediatek frame engine at 0xffffffc082900000, irq 106
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.475721] mtk_soc_eth 15100000.ethernet eth2: mediatek frame engine at 0xffffffc082900000, irq 106
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.567957] mt7530-mmio 15020000.switch: configuring for fixed/internal link mode
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.575479] mt7530-mmio 15020000.switch: Link is Up - 10Gbps/Full - flow control rx/tx
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.602314] mt7530-mmio 15020000.switch wan (uninitialized): PHY [mt7530-0:00] driver [MediaTek MT7988 PHY] (irq=121)
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.641551] mt7530-mmio 15020000.switch lan1 (uninitialized): PHY [mt7530-0:01] driver [MediaTek MT7988 PHY] (irq=122)
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.679208] mt7530-mmio 15020000.switch lan2 (uninitialized): PHY [mt7530-0:02] driver [MediaTek MT7988 PHY] (irq=123)
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.717635] mt7530-mmio 15020000.switch lan3 (uninitialized): PHY [mt7530-0:03] driver [MediaTek MT7988 PHY] (irq=124)
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.728630] mtk_soc_eth 15100000.ethernet eth0: entered promiscuous mode
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.735342] DSA: tree 0 setup
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.738546] clk: Disabling unused clocks
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.744912] VFS: Mounted root (squashfs filesystem) readonly on device 259:1.
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.752143] Freeing unused kernel memory: 448K
Tue Jun 10 11:34:21 2025 kern.info kernel: [    5.756624] Run /sbin/init as init process
Tue Jun 10 11:34:21 2025 kern.debug kernel: [    5.760710]   with arguments:
Tue Jun 10 11:34:21 2025 kern.debug kernel: [    5.763668]     /sbin/init
Tue Jun 10 11:34:21 2025 kern.debug kernel: [    5.766365]   with environment:
Tue Jun 10 11:34:21 2025 kern.debug kernel: [    5.769493]     HOME=/
Tue Jun 10 11:34:21 2025 kern.debug kernel: [    5.771841]     TERM=linux
Tue Jun 10 11:34:21 2025 user.info kernel: [    5.876683] init: Console is alive
Tue Jun 10 11:34:21 2025 user.info kernel: [    5.880188] init: - watchdog -
Tue Jun 10 11:34:21 2025 user.info kernel: [    6.108680] kmodloader: loading kernel modules from /etc/modules-boot.d/*
Tue Jun 10 11:34:21 2025 kern.info kernel: [    6.129449] usbcore: registered new interface driver usbfs
Tue Jun 10 11:34:21 2025 kern.info kernel: [    6.134979] usbcore: registered new interface driver hub
Tue Jun 10 11:34:21 2025 kern.info kernel: [    6.140301] usbcore: registered new device driver usb
Tue Jun 10 11:34:21 2025 kern.warn kernel: [    6.145851] gpio_button_hotplug: loading out-of-tree module taints kernel.
Tue Jun 10 11:34:21 2025 kern.warn kernel: [    6.155684] xhci-mtk 11200000.usb: supply vbus not found, using dummy regulator
Tue Jun 10 11:34:21 2025 kern.warn kernel: [    6.163098] xhci-mtk 11200000.usb: supply vusb33 not found, using dummy regulator
Tue Jun 10 11:34:21 2025 kern.info kernel: [    6.170991] xhci-mtk 11200000.usb: xHCI Host Controller
Tue Jun 10 11:34:21 2025 kern.info kernel: [    6.176237] xhci-mtk 11200000.usb: new USB bus registered, assigned bus number 1
Tue Jun 10 11:34:21 2025 kern.info kernel: [    6.186674] xhci-mtk 11200000.usb: hcc params 0x01403f99 hci version 0x110 quirks 0x0000000000200010
Tue Jun 10 11:34:21 2025 kern.info kernel: [    6.195831] xhci-mtk 11200000.usb: irq 125, io mem 0x11200000
Tue Jun 10 11:34:21 2025 kern.info kernel: [    6.201637] xhci-mtk 11200000.usb: xHCI Host Controller
Tue Jun 10 11:34:21 2025 kern.info kernel: [    6.206879] xhci-mtk 11200000.usb: new USB bus registered, assigned bus number 2
Tue Jun 10 11:34:21 2025 kern.info kernel: [    6.214282] xhci-mtk 11200000.usb: Host supports USB 3.2 Enhanced SuperSpeed
Tue Jun 10 11:34:21 2025 kern.info kernel: [    6.221659] hub 1-0:1.0: USB hub found
Tue Jun 10 11:34:21 2025 kern.info kernel: [    6.225445] hub 1-0:1.0: 1 port detected
Tue Jun 10 11:34:21 2025 kern.info kernel: [    6.229546] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
Tue Jun 10 11:34:21 2025 kern.info kernel: [    6.237826] hub 2-0:1.0: USB hub found
Tue Jun 10 11:34:21 2025 kern.info kernel: [    6.241579] hub 2-0:1.0: 1 port detected
Tue Jun 10 11:34:21 2025 user.info kernel: [    6.248040] kmodloader: done loading kernel modules from /etc/modules-boot.d/*
Tue Jun 10 11:34:21 2025 user.info kernel: [    6.256050] init: - preinit -
Tue Jun 10 11:34:21 2025 kern.info kernel: [    6.453272] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/internal link mode
Tue Jun 10 11:34:21 2025 kern.info kernel: [    6.461407] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 10Gbps/Full - flow control rx/tx
Tue Jun 10 11:34:21 2025 kern.notice kernel: [    6.652501] random: crng init done
Tue Jun 10 11:34:21 2025 kern.info kernel: [    6.672495] usb 1-1: new high-speed USB device number 2 using xhci-mtk
Tue Jun 10 11:34:21 2025 kern.info kernel: [    6.855285] hub 1-1:1.0: USB hub found
Tue Jun 10 11:34:21 2025 kern.info kernel: [    6.859137] hub 1-1:1.0: 5 ports detected
Tue Jun 10 11:34:21 2025 kern.info kernel: [    7.012615] usb 2-1: new SuperSpeed USB device number 2 using xhci-mtk
Tue Jun 10 11:34:21 2025 kern.info kernel: [    7.045133] hub 2-1:1.0: USB hub found
Tue Jun 10 11:34:21 2025 kern.info kernel: [    7.049036] hub 2-1:1.0: 4 ports detected
Tue Jun 10 11:34:21 2025 kern.info kernel: [    7.327507] mt7530-mmio 15020000.switch lan1: configuring for phy/internal link mode
Tue Jun 10 11:34:21 2025 kern.info kernel: [    7.562495] usb 1-1.5: new high-speed USB device number 3 using xhci-mtk
Tue Jun 10 11:34:21 2025 kern.notice kernel: [   11.560844] F2FS-fs (fitrw): Mounted with checkpoint version = 3999c646
Tue Jun 10 11:34:21 2025 user.info kernel: [   11.568419] mount_root: switching to f2fs overlay
Tue Jun 10 11:34:21 2025 kern.warn kernel: [   11.573893] overlayfs: null uuid detected in lower fs '/', falling back to xino=off,index=off,nfs_export=off.
Tue Jun 10 11:34:21 2025 user.debug kernel: [   11.585280] urandom-seed: Seeding with /etc/urandom.seed
Tue Jun 10 11:34:21 2025 user.info kernel: [   11.621977] procd: - early -
Tue Jun 10 11:34:21 2025 user.info kernel: [   11.624937] procd: - watchdog -
Tue Jun 10 11:34:21 2025 user.info kernel: [   12.163745] procd: - watchdog -
Tue Jun 10 11:34:21 2025 user.info kernel: [   12.167256] procd: - ubus -
Tue Jun 10 11:34:21 2025 user.info kernel: [   12.224659] procd: - init -
Tue Jun 10 11:34:21 2025 user.info kernel: [   12.438738] kmodloader: loading kernel modules from /etc/modules.d/*
Tue Jun 10 11:34:21 2025 kern.warn kernel: [   12.460584] pca954x 1-0070: supply vdd not found, using dummy regulator
Tue Jun 10 11:34:21 2025 kern.info kernel: [   12.467934] i2c i2c-1: Added multiplexed i2c bus 2
Tue Jun 10 11:34:21 2025 kern.info kernel: [   12.472856] i2c i2c-1: Added multiplexed i2c bus 3
Tue Jun 10 11:34:21 2025 kern.info kernel: [   12.477723] i2c i2c-1: Added multiplexed i2c bus 4
Tue Jun 10 11:34:21 2025 kern.info kernel: [   12.482596] i2c i2c-1: Added multiplexed i2c bus 5
Tue Jun 10 11:34:21 2025 kern.info kernel: [   12.487389] pca954x 1-0070: registered 4 multiplexed busses for I2C switch pca9545
Tue Jun 10 11:34:21 2025 kern.err kernel: [   12.497987] crypto-safexcel 15600000.crypto: can't request region for resource [mem 0x15600000-0x1577ffff]
Tue Jun 10 11:34:21 2025 kern.err kernel: [   12.507659] crypto-safexcel 15600000.crypto: failed to get resource
Tue Jun 10 11:34:21 2025 kern.warn kernel: [   12.513935] crypto-safexcel: probe of 15600000.crypto failed with error -16
Tue Jun 10 11:34:21 2025 kern.warn kernel: [   12.524375] at24 2-0050: supply vcc not found, using dummy regulator
Tue Jun 10 11:34:21 2025 user.info kernel: [   12.540137] urngd: v1.0.2 started.
Tue Jun 10 11:34:21 2025 kern.warn kernel: [   12.554370] at24 2-0057: supply vcc not found, using dummy regulator
Tue Jun 10 11:34:21 2025 kern.info kernel: [   12.561337] at24 2-0057: 256 byte 24c02 EEPROM, writable, 1 bytes/write
Tue Jun 10 11:34:21 2025 kern.info kernel: [   12.568452] Loading modules backported from Linux version v6.12.6-0-ge9d65b48ce1a
Tue Jun 10 11:34:21 2025 kern.info kernel: [   12.575931] Backport generated by backports.git v6.1.110-1-35-g410656ef04d2
Tue Jun 10 11:34:21 2025 kern.info kernel: [   12.586237] sfp sfp1: Host maximum power 3.0W
Tue Jun 10 11:34:21 2025 kern.info kernel: [   12.591116] sfp sfp2: Host maximum power 3.0W
Tue Jun 10 11:34:21 2025 kern.debug kernel: [   12.610461] mt7996e_hif 0001:01:00.0: assign IRQ: got 118
Tue Jun 10 11:34:21 2025 kern.info kernel: [   12.615890] mt7996e_hif 0001:01:00.0: enabling device (0000 -> 0002)
Tue Jun 10 11:34:21 2025 kern.debug kernel: [   12.622262] mt7996e_hif 0001:01:00.0: enabling bus mastering
Tue Jun 10 11:34:21 2025 kern.debug kernel: [   12.628055] mt7996e 0000:01:00.0: assign IRQ: got 115
Tue Jun 10 11:34:21 2025 kern.info kernel: [   12.633108] mt7996e 0000:01:00.0: enabling device (0000 -> 0002)
Tue Jun 10 11:34:21 2025 kern.debug kernel: [   12.639120] mt7996e 0000:01:00.0: enabling bus mastering
Tue Jun 10 11:34:21 2025 kern.debug kernel: [   12.722573] mtk-pcie-gen3 11300000.pcie: msi#0x1 address_hi 0x0 address_lo 0x11300c00 data 1
Tue Jun 10 11:34:21 2025 kern.debug kernel: [   12.731078] mtk-pcie-gen3 11310000.pcie: msi#0x1 address_hi 0x0 address_lo 0x11310c00 data 1
Tue Jun 10 11:34:21 2025 kern.info kernel: [   12.782820] mt7996e 0000:01:00.0: HW/SW Version: 0x8a108a10, Build Time: 20240809122254a
Tue Jun 10 11:34:21 2025 kern.info kernel: [   12.782820]
Tue Jun 10 11:34:21 2025 kern.info kernel: [   12.895631] mt7996e 0000:01:00.0: WM Firmware Version: ____000000, Build Time: 20240809122249
Tue Jun 10 11:34:21 2025 kern.info kernel: [   12.942443] mt7996e 0000:01:00.0: DSP Firmware Version: ____000000, Build Time: 20240809121650
Tue Jun 10 11:34:21 2025 kern.info kernel: [   12.964459] mt7996e 0000:01:00.0: WA Firmware Version: ____000000, Build Time: 20240809122214
Tue Jun 10 11:34:21 2025 kern.info kernel: [   13.367480] PPP generic driver version 2.4.2
Tue Jun 10 11:34:21 2025 kern.info kernel: [   13.372307] NET: Registered PF_PPPOX protocol family
Tue Jun 10 11:34:21 2025 user.info kernel: [   13.379142] kmodloader: done loading kernel modules from /etc/modules.d/*
Tue Jun 10 11:34:21 2025 user.notice dnsmasq: DNS rebinding protection is active, will discard upstream RFC1918 responses!
Tue Jun 10 11:34:21 2025 user.notice dnsmasq: Allowing 127.0.0.0/8 responses
Tue Jun 10 11:34:21 2025 daemon.info dnsmasq[1]: started, version 2.90 cachesize 1000
Tue Jun 10 11:34:21 2025 daemon.info dnsmasq[1]: DNS service limited to local subnets
Tue Jun 10 11:34:21 2025 daemon.info 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 inote
Tue Jun 10 11:34:21 2025 daemon.info dnsmasq[1]: UBus support enabled: connected to system bus
Tue Jun 10 11:34:21 2025 daemon.info dnsmasq[1]: using only locally-known addresses for test
Tue Jun 10 11:34:21 2025 daemon.info dnsmasq[1]: using only locally-known addresses for onion
Tue Jun 10 11:34:21 2025 daemon.info dnsmasq[1]: using only locally-known addresses for localhost
Tue Jun 10 11:34:21 2025 daemon.info dnsmasq[1]: using only locally-known addresses for local
Tue Jun 10 11:34:21 2025 daemon.info dnsmasq[1]: using only locally-known addresses for invalid
Tue Jun 10 11:34:21 2025 daemon.info dnsmasq[1]: using only locally-known addresses for bind
Tue Jun 10 11:34:21 2025 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Tue Jun 10 11:34:21 2025 daemon.warn dnsmasq[1]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Tue Jun 10 11:34:21 2025 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Tue Jun 10 11:34:21 2025 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 0 names
Tue Jun 10 11:34:21 2025 authpriv.info dropbear[1773]: Not backgrounding
Tue Jun 10 11:34:22 2025 user.notice : Added device handler type: bonding
Tue Jun 10 11:34:22 2025 user.notice : Added device handler type: 8021ad
Tue Jun 10 11:34:22 2025 user.notice : Added device handler type: 8021q
Tue Jun 10 11:34:22 2025 user.notice : Added device handler type: macvlan
Tue Jun 10 11:34:22 2025 user.notice : Added device handler type: veth
Tue Jun 10 11:34:22 2025 user.notice : Added device handler type: bridge
Tue Jun 10 11:34:22 2025 user.notice : Added device handler type: Network device
Tue Jun 10 11:34:22 2025 user.notice : Added device handler type: tunnel
Tue Jun 10 11:34:22 2025 daemon.notice procd: /etc/rc.d/S25packet_steering: pid 782's current affinity list: 0-3
Tue Jun 10 11:34:22 2025 daemon.notice procd: /etc/rc.d/S25packet_steering: pid 782's new affinity list: 0
Tue Jun 10 11:34:22 2025 daemon.notice procd: /etc/rc.d/S25packet_steering: pid 783's current affinity list: 0-3
Tue Jun 10 11:34:22 2025 daemon.notice procd: /etc/rc.d/S25packet_steering: pid 783's new affinity list: 0
Tue Jun 10 11:34:22 2025 daemon.notice wpa_supplicant[1928]: Successfully initialized wpa_supplicant
Tue Jun 10 11:34:22 2025 user.notice ucitrack: Setting up /etc/config/luci-splash reload dependency on /etc/config/firewall
Tue Jun 10 11:34:22 2025 user.notice ucitrack: Setting up /etc/config/qos reload dependency on /etc/config/firewall
Tue Jun 10 11:34:22 2025 user.notice ucitrack: Setting up /etc/config/miniupnpd reload dependency on /etc/config/firewall
Tue Jun 10 11:34:22 2025 user.notice ucitrack: Setting up /etc/config/odhcpd reload dependency on /etc/config/dhcp
Tue Jun 10 11:34:22 2025 user.notice ucitrack: Setting up /etc/config/dhcp reload dependency on /etc/config/network
Tue Jun 10 11:34:22 2025 user.notice ucitrack: Setting up /etc/config/network reload dependency on /etc/config/wireless
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.053406] mtk_soc_eth 15100000.ethernet eth0: Link is Down
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.076535] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/internal link mode
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.084714] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 10Gbps/Full - flow control rx/tx
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.086927] mt7530-mmio 15020000.switch lan1: configuring for phy/internal link mode
Tue Jun 10 11:34:22 2025 user.notice ucitrack: Setting up non-init /etc/config/fstab reload handler: /sbin/block mount
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.101777] br-lan: port 1(lan1) entered blocking state
Tue Jun 10 11:34:22 2025 user.notice ucitrack: Setting up /etc/config/system reload trigger for non-procd /etc/init.d/led
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.107037] br-lan: port 1(lan1) entered disabled state
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.112288] mt7530-mmio 15020000.switch lan1: entered allmulticast mode
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.118931] mtk_soc_eth 15100000.ethernet eth0: entered allmulticast mode
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.125927] mt7530-mmio 15020000.switch lan1: entered promiscuous mode
Tue Jun 10 11:34:22 2025 daemon.notice netifd: Interface 'lan' is enabled
Tue Jun 10 11:34:22 2025 daemon.notice netifd: Interface 'lan' is setting up now
Tue Jun 10 11:34:22 2025 daemon.notice netifd: Interface 'lan' is now up
Tue Jun 10 11:34:22 2025 user.notice ucitrack: Setting up /etc/config/luci_statistics reload dependency on /etc/config/system
Tue Jun 10 11:34:22 2025 user.notice ucitrack: Setting up /etc/config/dhcp reload dependency on /etc/config/system
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.137918] mt7530-mmio 15020000.switch lan2: configuring for phy/internal link mode
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.147083] br-lan: port 2(lan2) entered blocking state
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.152322] br-lan: port 2(lan2) entered disabled state
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.157637] mt7530-mmio 15020000.switch lan2: entered allmulticast mode
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.164534] mt7530-mmio 15020000.switch lan2: entered promiscuous mode
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.174891] mt7530-mmio 15020000.switch lan3: configuring for phy/internal link mode
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.183872] br-lan: port 3(lan3) entered blocking state
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.189114] br-lan: port 3(lan3) entered disabled state
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.194431] mt7530-mmio 15020000.switch lan3: entered allmulticast mode
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.201275] mt7530-mmio 15020000.switch lan3: entered promiscuous mode
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.210278] mtk_soc_eth 15100000.ethernet eth1: configuring for inband/10gbase-r link mode
Tue Jun 10 11:34:22 2025 user.notice firewall: Reloading firewall due to ifup of lan (br-lan)
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.242951] br-lan: port 4(eth1) entered blocking state
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.248189] br-lan: port 4(eth1) entered disabled state
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.253492] mtk_soc_eth 15100000.ethernet eth1: entered allmulticast mode
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.260956] mtk_soc_eth 15100000.ethernet eth1: entered promiscuous mode
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.270806] mt7530-mmio 15020000.switch wan: configuring for phy/internal link mode
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.278912] br-wan: port 1(wan) entered blocking state
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.284090] br-wan: port 1(wan) entered disabled state
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.289254] mt7530-mmio 15020000.switch wan: entered allmulticast mode
Tue Jun 10 11:34:22 2025 kern.info kernel: [   15.296014] mt7530-mmio 15020000.switch wan: entered promiscuous mode
Tue Jun 10 11:34:22 2025 daemon.notice netifd: Interface 'wan6' is enabled
Tue Jun 10 11:34:23 2025 kern.info kernel: [   15.304813] mtk_soc_eth 15100000.ethernet eth2: configuring for inband/10gbase-r link mode
Tue Jun 10 11:34:23 2025 kern.info kernel: [   15.337024] br-wan: port 2(eth2) entered blocking state
Tue Jun 10 11:34:23 2025 kern.info kernel: [   15.342263] br-wan: port 2(eth2) entered disabled state
Tue Jun 10 11:34:23 2025 kern.info kernel: [   15.347550] mtk_soc_eth 15100000.ethernet eth2: entered allmulticast mode
Tue Jun 10 11:34:23 2025 daemon.notice procd: /etc/rc.d/S96led: setting up led wan
Tue Jun 10 11:34:23 2025 daemon.notice netifd: Interface 'loopback' is enabled
Tue Jun 10 11:34:23 2025 daemon.notice netifd: Interface 'loopback' is setting up now
Tue Jun 10 11:34:23 2025 kern.info kernel: [   15.354527] mtk_soc_eth 15100000.ethernet eth2: entered promiscuous mode
Tue Jun 10 11:34:23 2025 daemon.notice netifd: Interface 'loopback' is now up
Tue Jun 10 11:34:23 2025 daemon.notice netifd: Network device 'eth0' link is up
Tue Jun 10 11:34:23 2025 daemon.notice netifd: Network device 'lo' link is up
Tue Jun 10 11:34:23 2025 daemon.notice netifd: Interface 'loopback' has link connectivity
Tue Jun 10 11:34:23 2025 daemon.notice netifd: radio0 (2633): WARNING: Variable 'data' does not exist or is not an array/object
Tue Jun 10 11:34:23 2025 daemon.notice procd: /etc/rc.d/S96led: setting up led lan1
Tue Jun 10 11:34:23 2025 daemon.notice hostapd: Set new config for phy phy0.0:
Tue Jun 10 11:34:23 2025 daemon.notice wpa_supplicant[1928]: Set new config for phy phy0.0
Tue Jun 10 11:34:23 2025 daemon.notice netifd: radio0 (2633): sh: out of range
Tue Jun 10 11:34:23 2025 daemon.notice procd: /etc/rc.d/S96led: setting up led lan2
Tue Jun 10 11:34:23 2025 daemon.notice wpa_supplicant[1928]: Set new config for phy phy0.0
Tue Jun 10 11:34:23 2025 daemon.notice hostapd: Set new config for phy phy0.0:
Tue Jun 10 11:34:23 2025 daemon.notice wpa_supplicant[1928]: Set new config for phy phy0.0
Tue Jun 10 11:34:23 2025 daemon.notice procd: /etc/rc.d/S96led: setting up led lan3
Tue Jun 10 11:34:24 2025 daemon.info dnsmasq[1]: exiting on receipt of SIGTERM
Tue Jun 10 11:34:24 2025 daemon.err procd: Got unexpected signal 1
Tue Jun 10 11:34:25 2025 kern.info kernel: [   18.280840] mt7530-mmio 15020000.switch lan2: Link is Up - 1Gbps/Full - flow control rx/tx
Tue Jun 10 11:34:33 2025 auth.info login[3001]: root login on 'ttyS0'
Tue Jun 10 11:34:39 2025 kern.info kernel: [   31.851560] br-lan: port 2(lan2) entered blocking state
Tue Jun 10 11:34:39 2025 kern.info kernel: [   31.856794] br-lan: port 2(lan2) entered forwarding state
Tue Jun 10 11:34:39 2025 daemon.info dnsmasq[1]: started, version 2.90 cachesize 1000
Tue Jun 10 11:34:39 2025 daemon.info dnsmasq[1]: DNS service limited to local subnets
Tue Jun 10 11:34:39 2025 daemon.info 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 inote
Tue Jun 10 11:34:39 2025 daemon.info dnsmasq[1]: UBus support enabled: connected to system bus
Tue Jun 10 11:34:39 2025 daemon.info dnsmasq[1]: using only locally-known addresses for test
Tue Jun 10 11:34:39 2025 daemon.info dnsmasq[1]: using only locally-known addresses for onion
Tue Jun 10 11:34:39 2025 daemon.info dnsmasq[1]: using only locally-known addresses for localhost
Tue Jun 10 11:34:39 2025 daemon.info dnsmasq[1]: using only locally-known addresses for local
Tue Jun 10 11:34:39 2025 daemon.info dnsmasq[1]: using only locally-known addresses for invalid
Tue Jun 10 11:34:39 2025 daemon.info dnsmasq[1]: using only locally-known addresses for bind
Tue Jun 10 11:34:39 2025 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Tue Jun 10 11:34:39 2025 daemon.notice netifd: Interface 'wwan' is enabled
Tue Jun 10 11:34:39 2025 daemon.warn dnsmasq[1]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Tue Jun 10 11:34:39 2025 daemon.notice netifd: Network device 'lan2' link is up
Tue Jun 10 11:34:39 2025 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Tue Jun 10 11:34:39 2025 daemon.notice netifd: bridge 'br-lan' link is up
Tue Jun 10 11:34:39 2025 daemon.notice netifd: Interface 'lan' has link connectivity
Tue Jun 10 11:34:39 2025 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 0 names
Tue Jun 10 11:34:39 2025 daemon.notice netifd: Wireless device 'radio0' is now up
Tue Jun 10 11:34:39 2025 daemon.notice netifd: Interface 'wwan' is disabled
Tue Jun 10 11:34:39 2025 daemon.notice netifd: Interface 'wwan' is enabled
Tue Jun 10 11:34:39 2025 daemon.info procd: - init complete -
Tue Jun 10 11:34:40 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: CTRL-EVENT-REGDOM-CHANGE init=BEACON_HINT type=UNKNOWN
Tue Jun 10 11:34:40 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: CTRL-EVENT-REGDOM-BEACON-HINT before freq=2472 max_tx_power=2000 no_ir=1
Tue Jun 10 11:34:40 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: CTRL-EVENT-REGDOM-BEACON-HINT after freq=2472 max_tx_power=2000
Tue Jun 10 11:34:40 2025 daemon.notice netifd: radio0 (3212): sh: out of range
Tue Jun 10 11:34:40 2025 daemon.notice wpa_supplicant[1928]: Set new config for phy phy0.0
Tue Jun 10 11:34:40 2025 daemon.notice hostapd: Set new config for phy phy0.0:
Tue Jun 10 11:34:40 2025 daemon.notice wpa_supplicant[1928]: Set new config for phy phy0.0
Tue Jun 10 11:34:40 2025 daemon.notice netifd: Wireless device 'radio0' is now up
Tue Jun 10 11:34:40 2025 daemon.notice netifd: Interface 'wwan' is disabled
Tue Jun 10 11:34:40 2025 daemon.notice netifd: Interface 'wwan' is enabled
Tue Jun 10 11:34:40 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: SME: Trying to authenticate with 08:55:31:35:c9:63 (SSID='domowe-ssid' freq=2412 MHz)
Tue Jun 10 11:34:41 2025 kern.info kernel: [   33.308833] phy0.0-sta0: authenticate with 08:55:31:35:c9:63 (local address=be:15:e0:cc:da:84)
Tue Jun 10 11:34:41 2025 kern.info kernel: [   33.317466] phy0.0-sta0: send auth to 08:55:31:35:c9:63 (try 1/3)
Tue Jun 10 11:34:41 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: Trying to associate with 08:55:31:35:c9:63 (SSID='domowe-ssid' freq=2412 MHz)
Tue Jun 10 11:34:41 2025 kern.info kernel: [   33.324944] phy0.0-sta0: authenticated
Tue Jun 10 11:34:41 2025 kern.info kernel: [   33.332498] phy0.0-sta0: associate with 08:55:31:35:c9:63 (try 1/3)
Tue Jun 10 11:34:41 2025 kern.info kernel: [   33.343540] phy0.0-sta0: RX AssocResp from 08:55:31:35:c9:63 (capab=0x431 status=0 aid=1)
Tue Jun 10 11:34:41 2025 daemon.notice netifd: Network device 'phy0.0-sta0' link is up
Tue Jun 10 11:34:41 2025 daemon.notice netifd: Interface 'wwan' has link connectivity
Tue Jun 10 11:34:41 2025 daemon.notice netifd: Interface 'wwan' is setting up now
Tue Jun 10 11:34:41 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: Associated with 08:55:31:35:c9:63
Tue Jun 10 11:34:41 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Tue Jun 10 11:34:41 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: Unknown event 37
Tue Jun 10 11:34:41 2025 kern.info kernel: [   33.353456] phy0.0-sta0: associated
Tue Jun 10 11:34:41 2025 daemon.notice netifd: wwan (3272): udhcpc: started, v1.36.1
Tue Jun 10 11:34:41 2025 daemon.notice netifd: wwan (3272): udhcpc: broadcasting discover
Tue Jun 10 11:34:41 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: WPA: Key negotiation completed with 08:55:31:35:c9:63 [PTK=CCMP GTK=CCMP]
Tue Jun 10 11:34:41 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: CTRL-EVENT-CONNECTED - Connection to 08:55:31:35:c9:63 completed [id=0 id_str=]
Tue Jun 10 11:34:41 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: Unknown event 37
Tue Jun 10 11:34:41 2025 daemon.notice netifd: wwan (3272): udhcpc: broadcasting select for 192.168.88.15, server 192.168.88.1
Tue Jun 10 11:34:41 2025 daemon.notice netifd: wwan (3272): udhcpc: lease of 192.168.88.15 obtained from 192.168.88.1, lease time 1800
Tue Jun 10 11:34:42 2025 daemon.notice netifd: Interface 'wwan' is now up
Tue Jun 10 11:34:42 2025 daemon.info dnsmasq[1]: reading /tmp/resolv.conf.d/resolv.conf.auto
Tue Jun 10 11:34:42 2025 daemon.info dnsmasq[1]: using nameserver 192.168.88.1#53
Tue Jun 10 11:34:42 2025 daemon.info dnsmasq[1]: using only locally-known addresses for test
Tue Jun 10 11:34:42 2025 daemon.info dnsmasq[1]: using only locally-known addresses for onion
Tue Jun 10 11:34:42 2025 daemon.info dnsmasq[1]: using only locally-known addresses for localhost
Tue Jun 10 11:34:42 2025 daemon.info dnsmasq[1]: using only locally-known addresses for local
Tue Jun 10 11:34:42 2025 daemon.info dnsmasq[1]: using only locally-known addresses for invalid
Tue Jun 10 11:34:42 2025 daemon.info dnsmasq[1]: using only locally-known addresses for bind
Tue Jun 10 11:34:42 2025 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Tue Jun 10 11:34:42 2025 user.notice firewall: Reloading firewall due to ifup of wwan (phy0.0-sta0)
Tue Jun 10 11:34:42 2025 daemon.warn odhcpd[2064]: No default route present, overriding ra_lifetime to 0!
Tue Jun 10 11:34:42 2025 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Tue Jun 10 11:34:42 2025 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 0 names
Tue Jun 10 11:34:42 2025 daemon.info dnsmasq[1]: read /tmp/hosts/odhcpd - 2 names
Tue Jun 10 11:34:43 2025 daemon.warn odhcpd[2064]: No default route present, overriding ra_lifetime to 0!
Tue Jun 10 11:35:17 2025 daemon.warn odhcpd[2064]: No default route present, overriding ra_lifetime to 0!
Tue Jun 10 11:35:25 2025 daemon.warn odhcpd[2064]: No default route present, overriding ra_lifetime to 0!
Tue Jun 10 11:38:17 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: RSN: Group rekeying completed with 08:55:31:35:c9:63 [GTK=CCMP]
Tue Jun 10 11:38:17 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: Unknown event 37
Tue Jun 10 11:38:47 2025 daemon.notice hostapd: Set new config for phy phy0.0:
Tue Jun 10 11:38:47 2025 daemon.notice wpa_supplicant[1928]: Set new config for phy phy0.0
Tue Jun 10 11:38:47 2025 daemon.notice netifd: radio1 (3593): WARNING: Variable 'data' does not exist or is not an array/object
Tue Jun 10 11:38:47 2025 daemon.notice wpa_supplicant[1928]: Remove interface phy0.0-sta0
Tue Jun 10 11:38:47 2025 daemon.notice netifd: radio2 (3594): WARNING: Variable 'data' does not exist or is not an array/object
Tue Jun 10 11:38:47 2025 daemon.notice netifd: Network device 'phy0.0-sta0' link is down
Tue Jun 10 11:38:47 2025 daemon.notice netifd: Interface 'wwan' has link connectivity loss
Tue Jun 10 11:38:47 2025 daemon.notice wpa_supplicant[1928]: nl80211: send_event_marker failed: Source based routing not supported
Tue Jun 10 11:38:47 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: CTRL-EVENT-DISCONNECTED bssid=08:55:31:35:c9:63 reason=3 locally_generated=1
Tue Jun 10 11:38:47 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: CTRL-EVENT-DSCP-POLICY clear_all
Tue Jun 10 11:38:47 2025 kern.info kernel: [  254.043802] phy0.0-sta0: deauthenticating from 08:55:31:35:c9:63 by local choice (Reason: 3=DEAUTH_LEAVING)
Tue Jun 10 11:38:47 2025 daemon.notice netifd: wwan (3272): udhcpc: received SIGTERM
Tue Jun 10 11:38:47 2025 daemon.notice netifd: wwan (3272): udhcpc: unicasting a release of 192.168.88.15 to 192.168.88.1
Tue Jun 10 11:38:47 2025 daemon.notice netifd: wwan (3272): udhcpc: sending release
Tue Jun 10 11:38:47 2025 daemon.notice netifd: wwan (3272): udhcpc: entering released state
Tue Jun 10 11:38:47 2025 daemon.notice netifd: wwan (3272): Command failed: ubus call network.interface notify_proto { "action": 0, "link-up": false, "keep": false, "interface": "wwan" } (Permission denied)
Tue Jun 10 11:38:47 2025 daemon.notice netifd: Interface 'wwan' is now down
Tue Jun 10 11:38:47 2025 daemon.warn dnsmasq[1]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Tue Jun 10 11:38:47 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: CTRL-EVENT-DSCP-POLICY clear_all
Tue Jun 10 11:38:47 2025 daemon.notice wpa_supplicant[1928]: nl80211: deinit ifname=phy0.0-sta0 disabled_11b_rates=0
Tue Jun 10 11:38:47 2025 daemon.err wpa_supplicant[1928]: rmdir[ctrl_interface=/var/run/wpa_supplicant]: Permission denied
Tue Jun 10 11:38:48 2025 daemon.notice netifd: Interface 'wwan' is disabled
Tue Jun 10 11:38:48 2025 daemon.notice hostapd: Set new config for phy phy0.2:
Tue Jun 10 11:38:48 2025 daemon.notice hostapd: Set new config for phy phy0.1:
Tue Jun 10 11:38:48 2025 daemon.notice wpa_supplicant[1928]: Set new config for phy phy0.2
Tue Jun 10 11:38:48 2025 daemon.notice wpa_supplicant[1928]: Set new config for phy phy0.1
Tue Jun 10 11:38:48 2025 daemon.notice netifd: Wireless device 'radio0' is now down
Tue Jun 10 11:38:48 2025 daemon.notice netifd: radio0 (3647): WARNING: Variable 'data' does not exist or is not an array/object
Tue Jun 10 11:38:48 2025 daemon.notice wpa_supplicant[1928]: Set new config for phy phy0.1
Tue Jun 10 11:38:48 2025 daemon.notice hostapd: Set new config for phy phy0.1:
Tue Jun 10 11:38:48 2025 daemon.notice hostapd: Set new config for phy phy0.0:
Tue Jun 10 11:38:48 2025 daemon.notice wpa_supplicant[1928]: Set new config for phy phy0.0
Tue Jun 10 11:38:48 2025 daemon.notice netifd: Wireless device 'radio1' is now up
Tue Jun 10 11:38:48 2025 daemon.notice netifd: radio0 (3647): sh: out of range
Tue Jun 10 11:38:48 2025 daemon.notice wpa_supplicant[1928]: Set new config for phy phy0.2
Tue Jun 10 11:38:48 2025 daemon.notice wpa_supplicant[1928]: Set new config for phy phy0.0
Tue Jun 10 11:38:48 2025 daemon.notice hostapd: Set new config for phy phy0.2: /var/run/hostapd-phy0.2.conf
Tue Jun 10 11:38:48 2025 daemon.notice hostapd: Restart interface for phy phy0.2
Tue Jun 10 11:38:48 2025 daemon.notice hostapd: Configuration file: data: driver=nl80211 logger_syslog=127 logger_syslog_level=2 logger_stdout=127 logger_stdout_level=2 hw_mode=a beacon_int=100 he_6ghz_reg_pwr_type=0 stationary__
Tue Jun 10 11:38:48 2025 daemon.err hostapd: Pre-RSNA security methods are not allowed in 6 GHz
Tue Jun 10 11:38:48 2025 daemon.err hostapd: 1 errors found in configuration file '<inline>'
Tue Jun 10 11:38:48 2025 daemon.err hostapd: Failed to set up interface with data: driver=nl80211 logger_syslog=127 logger_syslog_level=2 logger_stdout=127 logger_stdout_level=2 hw_mode=a beacon_int=100 he_6ghz_reg_pwr_type=0 ste
Tue Jun 10 11:38:48 2025 daemon.notice hostapd: hostapd.add_iface failed for phy phy0.2 ifname=phy0.2-ap0
Tue Jun 10 11:38:48 2025 daemon.notice hostapd: Set new config for phy phy0.0:
Tue Jun 10 11:38:48 2025 daemon.notice wpa_supplicant[1928]: Set new config for phy phy0.0
Tue Jun 10 11:38:48 2025 daemon.notice netifd: Wireless device 'radio2' is now up
Tue Jun 10 11:38:48 2025 daemon.notice netifd: Interface 'wwan' is enabled
Tue Jun 10 11:38:48 2025 daemon.notice netifd: Wireless device 'radio0' is now up
Tue Jun 10 11:38:48 2025 daemon.notice netifd: Interface 'wwan' is disabled
Tue Jun 10 11:38:48 2025 daemon.notice netifd: Interface 'wwan' is enabled
Tue Jun 10 11:38:50 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: SME: Trying to authenticate with 08:55:31:35:c9:63 (SSID='domowe-ssid' freq=2412 MHz)
Tue Jun 10 11:38:50 2025 kern.info kernel: [  256.933975] phy0.0-sta0: authenticate with 08:55:31:35:c9:63 (local address=be:15:e0:cc:da:84)
Tue Jun 10 11:38:50 2025 kern.info kernel: [  256.942591] phy0.0-sta0: send auth to 08:55:31:35:c9:63 (try 1/3)
Tue Jun 10 11:38:50 2025 kern.info kernel: [  256.950081] phy0.0-sta0: authenticated
Tue Jun 10 11:38:50 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: Trying to associate with 08:55:31:35:c9:63 (SSID='domowe-ssid' freq=2412 MHz)
Tue Jun 10 11:38:50 2025 kern.info kernel: [  256.963194] phy0.0-sta0: associate with 08:55:31:35:c9:63 (try 1/3)
Tue Jun 10 11:38:50 2025 kern.info kernel: [  256.974325] phy0.0-sta0: RX AssocResp from 08:55:31:35:c9:63 (capab=0x431 status=0 aid=1)
Tue Jun 10 11:38:50 2025 daemon.notice netifd: Network device 'phy0.0-sta0' link is up
Tue Jun 10 11:38:50 2025 daemon.notice netifd: Interface 'wwan' has link connectivity
Tue Jun 10 11:38:50 2025 daemon.notice netifd: Interface 'wwan' is setting up now
Tue Jun 10 11:38:50 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: Associated with 08:55:31:35:c9:63
Tue Jun 10 11:38:50 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Tue Jun 10 11:38:50 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: Unknown event 37
Tue Jun 10 11:38:50 2025 kern.info kernel: [  256.984447] phy0.0-sta0: associated
Tue Jun 10 11:38:50 2025 daemon.notice netifd: wwan (3975): udhcpc: started, v1.36.1
Tue Jun 10 11:38:50 2025 daemon.notice netifd: wwan (3975): udhcpc: broadcasting discover
Tue Jun 10 11:38:50 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: WPA: Key negotiation completed with 08:55:31:35:c9:63 [PTK=CCMP GTK=CCMP]
Tue Jun 10 11:38:50 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: CTRL-EVENT-CONNECTED - Connection to 08:55:31:35:c9:63 completed [id=1 id_str=]
Tue Jun 10 11:38:50 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: Unknown event 37
Tue Jun 10 11:38:51 2025 daemon.notice netifd: wwan (3975): udhcpc: broadcasting select for 192.168.88.15, server 192.168.88.1
Tue Jun 10 11:38:51 2025 daemon.notice netifd: wwan (3975): udhcpc: lease of 192.168.88.15 obtained from 192.168.88.1, lease time 1800
Tue Jun 10 11:38:51 2025 daemon.notice netifd: Interface 'wwan' is now up
Tue Jun 10 11:38:51 2025 daemon.info dnsmasq[1]: reading /tmp/resolv.conf.d/resolv.conf.auto
Tue Jun 10 11:38:51 2025 daemon.info dnsmasq[1]: using nameserver 192.168.88.1#53
Tue Jun 10 11:38:51 2025 daemon.info dnsmasq[1]: using only locally-known addresses for test
Tue Jun 10 11:38:51 2025 daemon.info dnsmasq[1]: using only locally-known addresses for onion
Tue Jun 10 11:38:51 2025 daemon.info dnsmasq[1]: using only locally-known addresses for localhost
Tue Jun 10 11:38:51 2025 daemon.info dnsmasq[1]: using only locally-known addresses for local
Tue Jun 10 11:38:51 2025 daemon.info dnsmasq[1]: using only locally-known addresses for invalid
Tue Jun 10 11:38:51 2025 daemon.info dnsmasq[1]: using only locally-known addresses for bind
Tue Jun 10 11:38:51 2025 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Tue Jun 10 11:38:51 2025 user.notice firewall: Reloading firewall due to ifup of wwan (phy0.0-sta0)
Tue Jun 10 11:39:39 2025 daemon.notice hostapd: Set new config for phy phy0.1:
Tue Jun 10 11:39:39 2025 daemon.notice hostapd: Set new config for phy phy0.2:
Tue Jun 10 11:39:39 2025 daemon.notice wpa_supplicant[1928]: Set new config for phy phy0.1
Tue Jun 10 11:39:39 2025 daemon.notice hostapd: Set new config for phy phy0.0:
Tue Jun 10 11:39:39 2025 daemon.notice wpa_supplicant[1928]: Set new config for phy phy0.2
Tue Jun 10 11:39:39 2025 daemon.notice wpa_supplicant[1928]: Set new config for phy phy0.0
Tue Jun 10 11:39:39 2025 daemon.notice wpa_supplicant[1928]: Remove interface phy0.0-sta0
Tue Jun 10 11:39:39 2025 daemon.notice netifd: Network device 'phy0.0-sta0' link is down
Tue Jun 10 11:39:39 2025 daemon.notice wpa_supplicant[1928]: nl80211: send_event_marker failed: Source based routing not supported
Tue Jun 10 11:39:39 2025 daemon.notice netifd: Interface 'wwan' has link connectivity loss
Tue Jun 10 11:39:39 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: CTRL-EVENT-DISCONNECTED bssid=08:55:31:35:c9:63 reason=3 locally_generated=1
Tue Jun 10 11:39:39 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: CTRL-EVENT-DSCP-POLICY clear_all
Tue Jun 10 11:39:39 2025 daemon.notice netifd: Wireless device 'radio1' is now down
Tue Jun 10 11:39:39 2025 daemon.notice netifd: Wireless device 'radio2' is now down
Tue Jun 10 11:39:39 2025 kern.info kernel: [  305.195008] phy0.0-sta0: deauthenticating from 08:55:31:35:c9:63 by local choice (Reason: 3=DEAUTH_LEAVING)
Tue Jun 10 11:39:39 2025 daemon.notice netifd: wwan (3975): udhcpc: received SIGTERM
Tue Jun 10 11:39:39 2025 daemon.notice netifd: wwan (3975): udhcpc: unicasting a release of 192.168.88.15 to 192.168.88.1
Tue Jun 10 11:39:39 2025 daemon.notice netifd: wwan (3975): udhcpc: sending release
Tue Jun 10 11:39:39 2025 daemon.notice netifd: wwan (3975): udhcpc: entering released state
Tue Jun 10 11:39:39 2025 daemon.notice netifd: wwan (3975): Command failed: ubus call network.interface notify_proto { "action": 0, "link-up": false, "keep": false, "interface": "wwan" } (Permission denied)
Tue Jun 10 11:39:39 2025 daemon.notice netifd: Interface 'wwan' is now down
Tue Jun 10 11:39:39 2025 daemon.warn dnsmasq[1]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Tue Jun 10 11:39:39 2025 daemon.notice netifd: radio2 (4215): WARNING: Variable 'data' does not exist or is not an array/object
Tue Jun 10 11:39:39 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: CTRL-EVENT-DSCP-POLICY clear_all
Tue Jun 10 11:39:39 2025 daemon.notice wpa_supplicant[1928]: nl80211: deinit ifname=phy0.0-sta0 disabled_11b_rates=0
Tue Jun 10 11:39:39 2025 daemon.err wpa_supplicant[1928]: rmdir[ctrl_interface=/var/run/wpa_supplicant]: Permission denied
Tue Jun 10 11:39:39 2025 daemon.notice netifd: radio1 (4214): WARNING: Variable 'data' does not exist or is not an array/object
Tue Jun 10 11:39:39 2025 daemon.notice netifd: Interface 'wwan' is disabled
Tue Jun 10 11:39:39 2025 daemon.notice hostapd: Set new config for phy phy0.2:
Tue Jun 10 11:39:39 2025 daemon.notice netifd: Wireless device 'radio0' is now down
Tue Jun 10 11:39:39 2025 daemon.notice hostapd: Set new config for phy phy0.1:
Tue Jun 10 11:39:39 2025 daemon.notice wpa_supplicant[1928]: Set new config for phy phy0.2
Tue Jun 10 11:39:39 2025 daemon.notice wpa_supplicant[1928]: Set new config for phy phy0.1
Tue Jun 10 11:39:39 2025 daemon.notice netifd: radio0 (4258): WARNING: Variable 'data' does not exist or is not an array/object
Tue Jun 10 11:39:39 2025 daemon.notice wpa_supplicant[1928]: Set new config for phy phy0.2
Tue Jun 10 11:39:39 2025 daemon.notice hostapd: Set new config for phy phy0.2:
Tue Jun 10 11:39:39 2025 daemon.notice hostapd: Set new config for phy phy0.0:
Tue Jun 10 11:39:39 2025 daemon.notice wpa_supplicant[1928]: Set new config for phy phy0.0
Tue Jun 10 11:39:39 2025 daemon.notice netifd: Wireless device 'radio2' is now up
Tue Jun 10 11:39:39 2025 daemon.notice netifd: radio0 (4258): sh: out of range
Tue Jun 10 11:39:39 2025 daemon.notice wpa_supplicant[1928]: Set new config for phy phy0.1
Tue Jun 10 11:39:39 2025 daemon.notice wpa_supplicant[1928]: Set new config for phy phy0.0
Tue Jun 10 11:39:39 2025 daemon.notice hostapd: Set new config for phy phy0.1: /var/run/hostapd-phy0.1.conf
Tue Jun 10 11:39:39 2025 daemon.notice hostapd: Restart interface for phy phy0.1
Tue Jun 10 11:39:39 2025 daemon.notice hostapd: Configuration file: data: driver=nl80211 logger_syslog=127 logger_syslog_level=2 logger_stdout=127 logger_stdout_level=2 hw_mode=a beacon_int=100 stationary_ap=1 chanlist=36 tx_quei
Tue Jun 10 11:39:39 2025 kern.info kernel: [  305.760347] br-lan: port 5(phy0.1-ap0) entered blocking state
Tue Jun 10 11:39:39 2025 kern.info kernel: [  305.766131] br-lan: port 5(phy0.1-ap0) entered disabled state
Tue Jun 10 11:39:39 2025 kern.info kernel: [  305.771918] mt7996e 0000:01:00.0 phy0.1-ap0: entered allmulticast mode
Tue Jun 10 11:39:39 2025 kern.info kernel: [  305.778594] mt7996e 0000:01:00.0 phy0.1-ap0: entered promiscuous mode
Tue Jun 10 11:39:39 2025 kern.info kernel: [  305.785107] br-lan: port 5(phy0.1-ap0) entered blocking state
Tue Jun 10 11:39:39 2025 kern.info kernel: [  305.790845] br-lan: port 5(phy0.1-ap0) entered forwarding state
Tue Jun 10 11:39:39 2025 daemon.notice hostapd: phy0.1-ap0: interface state UNINITIALIZED->HT_SCAN
Tue Jun 10 11:39:39 2025 daemon.notice hostapd: Set new config for phy phy0.0:
Tue Jun 10 11:39:39 2025 daemon.notice wpa_supplicant[1928]: Set new config for phy phy0.0
Tue Jun 10 11:39:39 2025 daemon.notice netifd: Wireless device 'radio1' is now up
Tue Jun 10 11:39:39 2025 daemon.notice netifd: Interface 'wwan' is enabled
Tue Jun 10 11:39:39 2025 daemon.notice netifd: Wireless device 'radio0' is now up
Tue Jun 10 11:39:39 2025 daemon.notice netifd: Interface 'wwan' is disabled
Tue Jun 10 11:39:39 2025 daemon.notice netifd: Interface 'wwan' is enabled
Tue Jun 10 11:39:40 2025 kern.info kernel: [  306.213269] br-lan: port 5(phy0.1-ap0) entered disabled state
Tue Jun 10 11:39:40 2025 daemon.notice netifd: Network device 'phy0.1-ap0' link is up
Tue Jun 10 11:39:40 2025 daemon.notice hostapd: phy0.1-ap0: interface state HT_SCAN->ENABLED
Tue Jun 10 11:39:40 2025 daemon.notice hostapd: phy0.1-ap0: AP-ENABLED
Tue Jun 10 11:39:40 2025 kern.info kernel: [  306.558452] br-lan: port 5(phy0.1-ap0) entered blocking state
Tue Jun 10 11:39:40 2025 kern.info kernel: [  306.564221] br-lan: port 5(phy0.1-ap0) entered forwarding state
Tue Jun 10 11:39:43 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: SME: Trying to authenticate with 08:55:31:35:c9:63 (SSID='domowe-ssid' freq=2412 MHz)
Tue Jun 10 11:39:43 2025 kern.info kernel: [  309.139907] phy0.0-sta0: authenticate with 08:55:31:35:c9:63 (local address=be:15:e0:cc:da:84)
Tue Jun 10 11:39:43 2025 kern.info kernel: [  309.148557] phy0.0-sta0: send auth to 08:55:31:35:c9:63 (try 1/3)
Tue Jun 10 11:39:43 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: Trying to associate with 08:55:31:35:c9:63 (SSID='domowe-ssid' freq=2412 MHz)
Tue Jun 10 11:39:43 2025 kern.info kernel: [  309.156185] phy0.0-sta0: authenticated
Tue Jun 10 11:39:43 2025 kern.info kernel: [  309.163284] phy0.0-sta0: associate with 08:55:31:35:c9:63 (try 1/3)
Tue Jun 10 11:39:43 2025 daemon.notice netifd: Network device 'phy0.0-sta0' link is up
Tue Jun 10 11:39:43 2025 daemon.notice netifd: Interface 'wwan' has link connectivity
Tue Jun 10 11:39:43 2025 daemon.notice netifd: Interface 'wwan' is setting up now
Tue Jun 10 11:39:43 2025 kern.info kernel: [  309.192763] phy0.0-sta0: RX AssocResp from 08:55:31:35:c9:63 (capab=0x431 status=0 aid=1)
Tue Jun 10 11:39:43 2025 kern.info kernel: [  309.202921] phy0.0-sta0: associated
Tue Jun 10 11:39:43 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: Associated with 08:55:31:35:c9:63
Tue Jun 10 11:39:43 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Tue Jun 10 11:39:43 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: Unknown event 37
Tue Jun 10 11:39:43 2025 daemon.notice netifd: wwan (4594): udhcpc: started, v1.36.1
Tue Jun 10 11:39:43 2025 daemon.notice netifd: wwan (4594): udhcpc: broadcasting discover
Tue Jun 10 11:39:43 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: WPA: Key negotiation completed with 08:55:31:35:c9:63 [PTK=CCMP GTK=CCMP]
Tue Jun 10 11:39:43 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: CTRL-EVENT-CONNECTED - Connection to 08:55:31:35:c9:63 completed [id=2 id_str=]
Tue Jun 10 11:39:43 2025 daemon.notice wpa_supplicant[1928]: phy0.0-sta0: Unknown event 37
Tue Jun 10 11:39:46 2025 daemon.notice netifd: wwan (4594): udhcpc: broadcasting discover
Tue Jun 10 11:39:49 2025 daemon.notice netifd: wwan (4594): udhcpc: broadcasting discover
Tue Jun 10 11:39:49 2025 daemon.notice netifd: wwan (4594): udhcpc: broadcasting select for 192.168.88.15, server 192.168.88.1
Tue Jun 10 11:39:50 2025 daemon.notice netifd: wwan (4594): udhcpc: lease of 192.168.88.15 obtained from 192.168.88.1, lease time 1800
Tue Jun 10 11:39:50 2025 daemon.notice netifd: Interface 'wwan' is now up
Tue Jun 10 11:39:50 2025 daemon.info dnsmasq[1]: reading /tmp/resolv.conf.d/resolv.conf.auto
Tue Jun 10 11:39:50 2025 daemon.info dnsmasq[1]: using nameserver 192.168.88.1#53
Tue Jun 10 11:39:50 2025 daemon.info dnsmasq[1]: using only locally-known addresses for test
Tue Jun 10 11:39:50 2025 daemon.info dnsmasq[1]: using only locally-known addresses for onion
Tue Jun 10 11:39:50 2025 daemon.info dnsmasq[1]: using only locally-known addresses for localhost
Tue Jun 10 11:39:50 2025 daemon.info dnsmasq[1]: using only locally-known addresses for local
Tue Jun 10 11:39:50 2025 daemon.info dnsmasq[1]: using only locally-known addresses for invalid
Tue Jun 10 11:39:50 2025 daemon.info dnsmasq[1]: using only locally-known addresses for bind
Tue Jun 10 11:39:50 2025 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Tue Jun 10 11:39:50 2025 user.notice firewall: Reloading firewall due to ifup of wwan (phy0.0-sta0)

Ani laptop wpiety w router ani telefon laczacy sie z OpenWrt, nie dostaje IP.

5

Odp: Wi-Fi Repeater: AP+STA w client mode

Dla radio0 brakuje ci channel i band.

Czy możesz z poziomu routera zrobić ping 192.168.88.1 i czy to działa?

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

6

Odp: Wi-Fi Repeater: AP+STA w client mode

Mam wpięty serial, więc mam zawsze dostęp do płytki.

ping 192.168.88.1
czy
ping 8.8.8.8

działają z poziomu płytki. radio0 mogę poprawić, ale nawet na LAN moj PC nie dostaje IP.

7

Odp: Wi-Fi Repeater: AP+STA w client mode

Ok, to teraz ustaw sobie na pc na stałe adres

192.168.88.222, maska pewnie /24 i gateway 192.168.88.1, dns 8.8.8.8

I zobacz czy działa.

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

8

Odp: Wi-Fi Repeater: AP+STA w client mode

Działa, ale wolałbym, żeby działał mi dynamic smile

9

Odp: Wi-Fi Repeater: AP+STA w client mode

Czyli
- repeater zrobiłeś dobrze
- relayd ma czasami problem z przepuszczaniem dhcp i właśnie to się u ciebie objawiło. I w sumie zbytnio nie masz co z tym zrobić po za właśnie używaniem statycznych adresów. A znając życie to jak zrobisz drugi - trzeci raz to nagle zacznie działać i nie będziesz wiedział dlaczego.

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

10

Odp: Wi-Fi Repeater: AP+STA w client mode

Dziękuję za pomoc.