Skip to content

Commit

Permalink
mac80211: rework interface setup, fix race condition
Browse files Browse the repository at this point in the history
Only tell netifd about vifs when the setup is complete and hostapd +
wpa_supplicant have been notified

Signed-off-by: Felix Fietkau <nbd@nbd.name>
  • Loading branch information
nbd168 committed Jan 11, 2024
1 parent d5a1de1 commit b7f9742
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 92 deletions.
159 changes: 71 additions & 88 deletions package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh
Original file line number Diff line number Diff line change
Expand Up @@ -635,71 +635,6 @@ mac80211_set_ifname() {
eval "ifname=\"$phy-$prefix\${idx_$prefix:-0}\"; idx_$prefix=\$((\${idx_$prefix:-0 } + 1))"
}

mac80211_prepare_vif() {
json_select config

json_get_vars ifname mode ssid wds powersave macaddr enable wpa_psk_file vlan_file

[ -n "$ifname" ] || {
local prefix;

case "$mode" in
ap|sta|mesh) prefix=$mode;;
adhoc) prefix=ibss;;
monitor) prefix=mon;;
esac

mac80211_set_ifname "$phy" "$prefix"
}

append active_ifnames "$ifname"
set_default wds 0
set_default powersave 0
json_add_string _ifname "$ifname"

default_macaddr=
if [ -z "$macaddr" ]; then
macaddr="$(mac80211_generate_mac $phy)"
macidx="$(($macidx + 1))"
default_macaddr=1
elif [ "$macaddr" = 'random' ]; then
macaddr="$(macaddr_random)"
fi
json_add_string _macaddr "$macaddr"
json_add_string _default_macaddr "$default_macaddr"
json_select ..


[ "$mode" == "ap" ] && {
[ -z "$wpa_psk_file" ] && hostapd_set_psk "$ifname"
[ -z "$vlan_file" ] && hostapd_set_vlan "$ifname"
}

json_select config

# It is far easier to delete and create the desired interface
case "$mode" in
ap)
# Hostapd will handle recreating the interface and
# subsequent virtual APs belonging to the same PHY
if [ -n "$hostapd_ctrl" ]; then
type=bss
else
type=interface
fi

mac80211_hostapd_setup_bss "$phy" "$ifname" "$macaddr" "$type" || return

[ -n "$hostapd_ctrl" ] || {
ap_ifname="${ifname}"
hostapd_ctrl="${hostapd_ctrl:-/var/run/hostapd/$ifname}"
}
;;
esac

json_select ..
}

mac80211_prepare_iw_htmode() {
case "$htmode" in
VHT20|HT20|HE20) iw_htmode=HT20;;
Expand Down Expand Up @@ -842,17 +777,6 @@ mac80211_setup_monitor() {
json_set_namespace "$prev"
}

mac80211_set_vif_txpower() {
local name="$1"

json_select config
json_get_var ifname _ifname
json_get_vars vif_txpower
json_select ..

[ -z "$vif_txpower" ] || iw dev "$ifname" set txpower fixed "${vif_txpower%%.*}00"
}

wpa_supplicant_init_config() {
json_set_namespace wpa_supp prev

Expand Down Expand Up @@ -957,19 +881,41 @@ mac80211_setup_supplicant() {
return 0
}

mac80211_setup_vif() {
local name="$1"
local failed

mac80211_prepare_vif() {
json_select config
json_get_var ifname _ifname
json_get_var macaddr _macaddr
json_get_var default_macaddr _default_macaddr
json_get_vars mode wds powersave

set_default powersave 0
json_get_vars ifname mode ssid wds powersave macaddr enable wpa_psk_file vlan_file
local config_wpa_psk_file="$wpa_psk_file"
local config_vlan_file="$vlan_file"

[ -n "$ifname" ] || {
local prefix;

case "$mode" in
ap|sta|mesh) prefix=$mode;;
adhoc) prefix=ibss;;
monitor) prefix=mon;;
esac

mac80211_set_ifname "$phy" "$prefix"
}

append active_ifnames "$ifname"

default_macaddr=
if [ -z "$macaddr" ]; then
macaddr="$(mac80211_generate_mac $phy)"
macidx="$(($macidx + 1))"
default_macaddr=1
elif [ "$macaddr" = 'random' ]; then
macaddr="$(macaddr_random)"
fi

local failed=
set_default wds 0
set_default powersave 0

# It is far easier to delete and create the desired interface
case "$mode" in
mesh)
json_get_vars $MP_CONFIG_INT $MP_CONFIG_BOOL $MP_CONFIG_STRING
Expand All @@ -995,10 +941,48 @@ mac80211_setup_vif() {
monitor)
mac80211_setup_monitor
;;
ap)
# Hostapd will handle recreating the interface and
# subsequent virtual APs belonging to the same PHY
if [ -n "$hostapd_ctrl" ]; then
type=bss
else
type=interface
fi

mac80211_hostapd_setup_bss "$phy" "$ifname" "$macaddr" "$type" || return

[ -n "$hostapd_ctrl" ] || {
ap_ifname="${ifname}"
hostapd_ctrl="${hostapd_ctrl:-/var/run/hostapd/$ifname}"
}
;;
esac

[ -n "$failed" ] || {
json_add_string _ifname "$ifname"
json_add_string _macaddr "$macaddr"
json_add_string _default_macaddr "$default_macaddr"
}

json_select ..
[ -n "$failed" ] || wireless_add_vif "$name" "$ifname"

[ "$mode" == "ap" ] && {
[ -z "$config_wpa_psk_file" ] && hostapd_set_psk "$ifname"
[ -z "$config_vlan_file" ] && hostapd_set_vlan "$ifname"
}
}

mac80211_setup_vif() {
local name="$1"

json_select config
json_get_var ifname _ifname
json_get_vars vif_txpower
json_select ..

[ -z "$vif_txpower" ] || iw dev "$ifname" set txpower fixed "${vif_txpower%%.*}00"
[ -n "$ifname" ] && wireless_add_vif "$name" "$ifname"
}

get_freq() {
Expand Down Expand Up @@ -1144,7 +1128,6 @@ drv_mac80211_setup() {
mac80211_prepare_iw_htmode
active_ifnames=
for_each_interface "ap sta adhoc mesh monitor" mac80211_prepare_vif
for_each_interface "ap sta adhoc mesh monitor" mac80211_setup_vif

[ -x /usr/sbin/wpa_supplicant ] && wpa_supplicant_set_config "$phy"
[ -x /usr/sbin/hostapd ] && hostapd_set_config "$phy"
Expand All @@ -1155,7 +1138,7 @@ drv_mac80211_setup() {
wdev_tool "$phy" set_config "$(json_dump)" $active_ifnames
json_set_namespace "$prev"

for_each_interface "ap sta adhoc mesh monitor" mac80211_set_vif_txpower
for_each_interface "ap sta adhoc mesh monitor" mac80211_setup_vif
wireless_set_up
}

Expand Down
7 changes: 3 additions & 4 deletions package/network/services/hostapd/files/hostapd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,7 @@ hostapd_set_vlan() {

rm -f /var/run/hostapd-${ifname}.vlan
for_each_vlan hostapd_set_vlan_file ${ifname}
touch /var/run/hostapd-${ifname}.vlan
}

hostapd_set_psk_file() {
Expand All @@ -416,6 +417,7 @@ hostapd_set_psk() {

rm -f /var/run/hostapd-${ifname}.psk
for_each_station hostapd_set_psk_file ${ifname}
touch /var/run/hostapd-${ifname}.psk
}

append_iw_roaming_consortium() {
Expand Down Expand Up @@ -688,10 +690,7 @@ hostapd_set_bss_options() {
return 1
fi
[ -z "$wpa_psk_file" ] && set_default wpa_psk_file /var/run/hostapd-$ifname.psk
[ -n "$wpa_psk_file" ] && {
[ -e "$wpa_psk_file" ] || touch "$wpa_psk_file"
append bss_conf "wpa_psk_file=$wpa_psk_file" "$N"
}
[ -n "$wpa_psk_file" ] && append bss_conf "wpa_psk_file=$wpa_psk_file" "$N"
[ "$eapol_version" -ge "1" -a "$eapol_version" -le "2" ] && append bss_conf "eapol_version=$eapol_version" "$N"

set_default dynamic_vlan 0
Expand Down

6 comments on commit b7f9742

@castillofrancodamian
Copy link

@castillofrancodamian castillofrancodamian commented on b7f9742 Jan 12, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I get these errors.

Thu Jan 11 21:53:56 2024 kern.notice kernel: [    0.000000] Linux version 5.15.146 (franco@pc) (mips-openwrt-linux-musl-gcc (OpenWrt GCC 12.3.0 r24801-b7f9742da8) 12.3.0, GNU ld (GNU Binutils) 2.40.0) #0 Thu Jan 11 09:40:43 2024
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000000] printk: bootconsole [early0] enabled
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000000] CPU0 revision is: 00019750 (MIPS 74Kc)
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000000] MIPS: machine is TP-Link Archer C60 v1
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000000] SoC: Qualcomm Atheros QCA956X ver 1 rev 0
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000000] Initrd not found or empty - disabling initrd
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000000] Primary instruction cache 64kB, VIPT, 4-way, linesize 32 bytes.
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000000] Primary data cache 32kB, 4-way, VIPT, cache aliases, linesize 32 bytes
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000000] Zone ranges:
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000000]   Normal   [mem 0x0000000000000000-0x0000000003ffffff]
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000000] Movable zone start for each node
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000000] Early memory node ranges
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000000]   node   0: [mem 0x0000000000000000-0x0000000003ffffff]
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000003ffffff]
Thu Jan 11 21:53:56 2024 kern.debug kernel: [    0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768
Thu Jan 11 21:53:56 2024 kern.debug kernel: [    0.000000] pcpu-alloc: [0] 0
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 16240
Thu Jan 11 21:53:56 2024 kern.notice kernel: [    0.000000] Kernel command line: console=ttyS0,115200n8 rootfstype=squashfs,jffs2
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000000] Dentry cache hash table entries: 8192 (order: 3, 32768 bytes, linear)
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000000] Inode-cache hash table entries: 4096 (order: 2, 16384 bytes, linear)
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000000] Writing ErrCtl register=00000000
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000000] Readback ErrCtl register=00000000
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000000] Memory: 55920K/65536K available (5661K kernel code, 590K rwdata, 1244K rodata, 1200K init, 206K bss, 9616K reserved, 0K cma-reserved)
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000000] NR_IRQS: 51
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000000] CPU clock: 775.000 MHz
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000000] clocksource: MIPS: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 4932285024 ns
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.000001] sched_clock: 32 bits at 387MHz, resolution 2ns, wraps every 5541893118ns
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.008277] Calibrating delay loop... 385.84 BogoMIPS (lpj=1929216)
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.074816] pid_max: default: 32768 minimum: 301
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.080514] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.088251] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.102211] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.112633] futex hash table entries: 256 (order: -1, 3072 bytes, linear)
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.119986] pinctrl core: initialized pinctrl subsystem
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.126976] NET: Registered PF_NETLINK/PF_ROUTE protocol family
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.149274] clocksource: Switched to clocksource MIPS
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.155838] NET: Registered PF_INET protocol family
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.161226] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear)
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.169564] tcp_listen_portaddr_hash hash table entries: 1024 (order: 0, 4096 bytes, linear)
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.178503] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.186713] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear)
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.194807] TCP bind hash table entries: 1024 (order: 0, 4096 bytes, linear)
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.202260] TCP: Hash tables configured (established 1024 bind 1024)
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.209097] UDP hash table entries: 256 (order: 0, 4096 bytes, linear)
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.216054] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes, linear)
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.223791] NET: Registered PF_UNIX/PF_LOCAL protocol family
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.229851] PCI: CLS 0 bytes, default 32
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.237263] workingset: timestamp_bits=14 max_order=14 bucket_order=0
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.248604] squashfs: version 4.0 (2009/01/31) Phillip Lougher
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.254824] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc.
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.269074] pinctrl-single 1804002c.pinmux: 544 pins, size 68
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.276342] Serial: 8250/16550 driver, 1 ports, IRQ sharing disabled
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.283783] printk: console [ttyS0] disabled
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.288350] 18020000.uart: ttyS0 at MMIO 0x18020000 (irq = 9, base_baud = 1562500) is a 16550A
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.297504] printk: console [ttyS0] enabled
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.306570] printk: bootconsole [early0] disabled
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.328568] spi-nor spi0.0: gd25q64 (8192 Kbytes)
Thu Jan 11 21:53:56 2024 kern.notice kernel: [    0.333545] 5 fixed-partitions partitions found on MTD device spi0.0
Thu Jan 11 21:53:56 2024 kern.err kernel: [    0.340169] OF: Bad cell count for /ahb/spi@1f000000/flash@0/partitions
Thu Jan 11 21:53:56 2024 kern.err kernel: [    0.347028] OF: Bad cell count for /ahb/spi@1f000000/flash@0/partitions
Thu Jan 11 21:53:56 2024 kern.notice kernel: [    0.354129] Creating 5 MTD partitions on "spi0.0":
Thu Jan 11 21:53:56 2024 kern.notice kernel: [    0.359086] 0x000000000000-0x000000010000 : "u-boot"
Thu Jan 11 21:53:56 2024 kern.notice kernel: [    0.368222] 0x000000010000-0x000000020000 : "info"
Thu Jan 11 21:53:56 2024 kern.err kernel: [    0.374322] OF: Bad cell count for /ahb/spi@1f000000/flash@0/partitions
Thu Jan 11 21:53:56 2024 kern.notice kernel: [    0.381497] 0x000000020000-0x0000007e0000 : "firmware"
Thu Jan 11 21:53:56 2024 kern.notice kernel: [    0.389869] 2 uimage-fw partitions found on MTD device firmware
Thu Jan 11 21:53:56 2024 kern.notice kernel: [    0.396008] Creating 2 MTD partitions on "firmware":
Thu Jan 11 21:53:56 2024 kern.notice kernel: [    0.401191] 0x000000000000-0x000000234da3 : "kernel"
Thu Jan 11 21:53:56 2024 kern.warn kernel: [    0.406319] mtd: partition "kernel" doesn't end on an erase/write block -- force read-only
Thu Jan 11 21:53:56 2024 kern.notice kernel: [    0.416645] 0x000000234da3-0x0000007c0000 : "rootfs"
Thu Jan 11 21:53:56 2024 kern.warn kernel: [    0.421841] mtd: partition "rootfs" doesn't start on an erase/write block boundary -- force read-only
Thu Jan 11 21:53:56 2024 kern.info kernel: [    0.432322] mtd: setting mtd4 (rootfs) as root device
Thu Jan 11 21:53:56 2024 kern.notice kernel: [    0.438418] 1 squashfs-split partitions found on MTD device rootfs
Thu Jan 11 21:53:56 2024 kern.notice kernel: [    0.444873] 0x000000730000-0x0000007c0000 : "rootfs_data"
Thu Jan 11 21:53:56 2024 kern.notice kernel: [    0.451467] 0x0000007e0000-0x0000007f0000 : "tplink"
Thu Jan 11 21:53:56 2024 kern.notice kernel: [    0.459080] 0x0000007f0000-0x000000800000 : "art"
Thu Jan 11 21:53:56 2024 kern.err kernel: [    0.850362] ag71xx 19000000.eth: Could not connect to PHY device. Deferring probe.
Thu Jan 11 21:53:56 2024 kern.info kernel: [    1.536957] switch0: Atheros AR8229 rev. 1 switch registered on mdio.0
Thu Jan 11 21:53:56 2024 kern.info kernel: [    1.605658] ag71xx 1a000000.eth: connected to PHY at fixed-0:00 [uid=00000000, driver=Generic PHY]
Thu Jan 11 21:53:56 2024 kern.info kernel: [    1.615553] eth0: Atheros AG71xx at 0xba000000, irq 5, mode: gmii
Thu Jan 11 21:53:56 2024 kern.info kernel: [    1.622210] i2c_dev: i2c /dev entries driver
Thu Jan 11 21:53:56 2024 kern.info kernel: [    1.629418] NET: Registered PF_INET6 protocol family
Thu Jan 11 21:53:56 2024 kern.info kernel: [    1.644846] Segment Routing with IPv6
Thu Jan 11 21:53:56 2024 kern.info kernel: [    1.648715] In-situ OAM (IOAM) with IPv6
Thu Jan 11 21:53:56 2024 kern.info kernel: [    1.652976] NET: Registered PF_PACKET protocol family
Thu Jan 11 21:53:56 2024 kern.info kernel: [    1.658275] 8021q: 802.1Q VLAN Support v1.8
Thu Jan 11 21:53:56 2024 kern.info kernel: [    1.663803] PCI host bridge to bus 0000:00
Thu Jan 11 21:53:56 2024 kern.info kernel: [    1.668052] pci_bus 0000:00: root bus resource [mem 0x12000000-0x13ffffff]
Thu Jan 11 21:53:56 2024 kern.info kernel: [    1.675213] pci_bus 0000:00: root bus resource [io  0x0000]
Thu Jan 11 21:53:56 2024 kern.info kernel: [    1.680981] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff]
Thu Jan 11 21:53:56 2024 kern.info kernel: [    1.689204] pci 0000:00:00.0: [168c:0056] type 00 class 0x028000
Thu Jan 11 21:53:56 2024 kern.info kernel: [    1.695460] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x001fffff 64bit]
Thu Jan 11 21:53:56 2024 kern.info kernel: [    1.702646] pci 0000:00:00.0: PME# supported from D0 D3hot
Thu Jan 11 21:53:56 2024 kern.info kernel: [    1.709231] pci_bus 0000:00: busn_res: [bus 00-ff] end is updated to 00
Thu Jan 11 21:53:56 2024 kern.info kernel: [    1.716130] pci 0000:00:00.0: BAR 0: assigned [mem 0x12000000-0x121fffff 64bit]
Thu Jan 11 21:53:56 2024 kern.info kernel: [    2.062818] ag71xx 19000000.eth: connected to PHY at mdio.0:1f:04 [uid=004dd042, driver=Generic PHY]
Thu Jan 11 21:53:56 2024 kern.info kernel: [    2.073137] eth1: Atheros AG71xx at 0xb9000000, irq 4, mode: mii
Thu Jan 11 21:53:56 2024 kern.info kernel: [    2.088933] VFS: Mounted root (squashfs filesystem) readonly on device 31:4.
Thu Jan 11 21:53:56 2024 kern.info kernel: [    2.102736] Freeing unused kernel image (initmem) memory: 1200K
Thu Jan 11 21:53:56 2024 kern.warn kernel: [    2.108862] This architecture does not have kernel memory protection.
Thu Jan 11 21:53:56 2024 kern.info kernel: [    2.115552] Run /sbin/init as init process
Thu Jan 11 21:53:56 2024 kern.debug kernel: [    2.119796]   with arguments:
Thu Jan 11 21:53:56 2024 kern.debug kernel: [    2.119801]     /sbin/init
Thu Jan 11 21:53:56 2024 kern.debug kernel: [    2.119806]   with environment:
Thu Jan 11 21:53:56 2024 kern.debug kernel: [    2.119809]     HOME=/
Thu Jan 11 21:53:56 2024 kern.debug kernel: [    2.119813]     TERM=linux
Thu Jan 11 21:53:56 2024 user.info kernel: [    2.844997] init: Console is alive
Thu Jan 11 21:53:56 2024 user.info kernel: [    2.849006] init: - watchdog -
Thu Jan 11 21:53:56 2024 user.info kernel: [    4.233974] kmodloader: loading kernel modules from /etc/modules-boot.d/*
Thu Jan 11 21:53:56 2024 user.info kernel: [    4.314136] kmodloader: done loading kernel modules from /etc/modules-boot.d/*
Thu Jan 11 21:53:56 2024 user.info kernel: [    4.332158] init: - preinit -
Thu Jan 11 21:53:56 2024 kern.notice kernel: [    5.425717] random: jshn: uninitialized urandom read (4 bytes read)
Thu Jan 11 21:53:56 2024 kern.notice kernel: [    5.669404] random: jshn: uninitialized urandom read (4 bytes read)
Thu Jan 11 21:53:56 2024 kern.notice kernel: [    5.811356] random: jshn: uninitialized urandom read (4 bytes read)
Thu Jan 11 21:53:56 2024 kern.info kernel: [    6.470074] eth0: link up (1000Mbps/Full duplex)
Thu Jan 11 21:53:56 2024 kern.info kernel: [    6.479352] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Thu Jan 11 21:53:56 2024 kern.info kernel: [    6.486211] IPv6: ADDRCONF(NETDEV_CHANGE): eth0.1: link becomes ready
Thu Jan 11 21:53:56 2024 kern.notice kernel: [    6.516566] random: procd: uninitialized urandom read (4 bytes read)
Thu Jan 11 21:53:56 2024 kern.notice kernel: [    8.779067] jffs2: notice: (388) jffs2_build_xattr_subsystem: complete building xattr subsystem, 12 of xdatum (10 unchecked, 2 orphan) and 17 of xref (2 dead, 0 orphan) found.
Thu Jan 11 21:53:56 2024 user.info kernel: [    8.797810] mount_root: switching to jffs2 overlay
Thu Jan 11 21:53:56 2024 kern.warn kernel: [    8.810115] overlayfs: upper fs does not support tmpfile.
Thu Jan 11 21:53:56 2024 user.warn kernel: [    8.822092] urandom-seed: Seeding with /etc/urandom.seed
Thu Jan 11 21:53:56 2024 kern.info kernel: [    8.918708] eth0: link down
Thu Jan 11 21:53:56 2024 user.info kernel: [    8.950248] procd: - early -
Thu Jan 11 21:53:56 2024 user.info kernel: [    8.953562] procd: - watchdog -
Thu Jan 11 21:53:56 2024 user.info kernel: [    9.654474] procd: - watchdog -
Thu Jan 11 21:53:56 2024 user.info kernel: [    9.659320] procd: - ubus -
Thu Jan 11 21:53:56 2024 kern.notice kernel: [    9.745354] random: ubusd: uninitialized urandom read (4 bytes read)
Thu Jan 11 21:53:56 2024 kern.notice kernel: [    9.755138] random: ubusd: uninitialized urandom read (4 bytes read)
Thu Jan 11 21:53:56 2024 kern.notice kernel: [    9.762140] random: ubusd: uninitialized urandom read (4 bytes read)
Thu Jan 11 21:53:56 2024 user.info kernel: [    9.774036] procd: - init -
Thu Jan 11 21:53:56 2024 user.info kernel: [   10.707373] kmodloader: loading kernel modules from /etc/modules.d/*
Thu Jan 11 21:53:56 2024 kern.info kernel: [   11.166541] Loading modules backported from Linux version v6.5-0-g2dde18cd1d8f
Thu Jan 11 21:53:56 2024 kern.info kernel: [   11.174063] Backport generated by backports.git v5.15.92-1-56-g5fb2ccb6b9e8
Thu Jan 11 21:53:56 2024 kern.info kernel: [   11.710359] ath10k_pci 0000:00:00.0: enabling device (0000 -> 0002)
Thu Jan 11 21:53:56 2024 kern.info kernel: [   11.717154] ath10k_pci 0000:00:00.0: pci irq legacy oper_irq_mode 1 irq_mode 0 reset_mode 0
Thu Jan 11 21:53:56 2024 user.info kernel: [   12.939684] urngd: v1.0.2 started.
Thu Jan 11 21:53:56 2024 kern.info kernel: [   14.020316] ath10k_pci 0000:00:00.0: qca9888 hw2.0 target 0x01000000 chip_id 0x00000000 sub 0000:0000
Thu Jan 11 21:53:56 2024 kern.info kernel: [   14.029897] ath10k_pci 0000:00:00.0: kconfig debug 0 debugfs 1 tracing 0 dfs 1 testmode 0
Thu Jan 11 21:53:56 2024 kern.info kernel: [   14.050165] ath10k_pci 0000:00:00.0: firmware ver 10.4-3.9.0.2-00157 api 5 features no-p2p,mfp,peer-flow-ctrl,allows-mesh-bcast,no-ps,iram-recovery crc32 812c4602
Thu Jan 11 21:53:56 2024 kern.err kernel: [   14.543722] ath10k_pci 0000:00:00.0: failed to fetch board data for bus=pci,bmi-chip-id=0,bmi-board-id=20 from ath10k/QCA9888/hw2.0/board-2.bin
Thu Jan 11 21:53:56 2024 kern.notice kernel: [   14.969648] random: crng init done
Thu Jan 11 21:53:56 2024 kern.notice kernel: [   14.973184] random: 27 urandom warning(s) missed due to ratelimiting
Thu Jan 11 21:53:56 2024 kern.info kernel: [   15.057881] ath10k_pci 0000:00:00.0: board_file api 1 bmi_id 0:20 crc32 8971a1b4
Thu Jan 11 21:53:56 2024 kern.info kernel: [   17.046996] ath10k_pci 0000:00:00.0: htt-ver 2.2 wmi-op 6 htt-op 4 cal pre-cal-file max-sta 512 raw 0 hwcrypto 1
Thu Jan 11 21:53:56 2024 kern.debug kernel: [   17.151358] ath: EEPROM regdomain: 0x0
Thu Jan 11 21:53:56 2024 kern.debug kernel: [   17.151381] ath: EEPROM indicates default country code should be used
Thu Jan 11 21:53:56 2024 kern.debug kernel: [   17.151386] ath: doing EEPROM country->regdmn map search
Thu Jan 11 21:53:56 2024 kern.debug kernel: [   17.151400] ath: country maps to regdmn code: 0x3a
Thu Jan 11 21:53:56 2024 kern.debug kernel: [   17.151407] ath: Country alpha2 being used: US
Thu Jan 11 21:53:56 2024 kern.debug kernel: [   17.151413] ath: Regpair used: 0x3a
Thu Jan 11 21:53:56 2024 kern.info kernel: [   17.208256] batman_adv: B.A.T.M.A.N. advanced 2023.3-openwrt-3 (compatibility version 15) loaded
Thu Jan 11 21:53:56 2024 kern.debug kernel: [   17.264650] ath: EEPROM regdomain: 0x0
Thu Jan 11 21:53:56 2024 kern.debug kernel: [   17.264673] ath: EEPROM indicates default country code should be used
Thu Jan 11 21:53:56 2024 kern.debug kernel: [   17.264679] ath: doing EEPROM country->regdmn map search
Thu Jan 11 21:53:56 2024 kern.debug kernel: [   17.264692] ath: country maps to regdmn code: 0x3a
Thu Jan 11 21:53:56 2024 kern.debug kernel: [   17.264699] ath: Country alpha2 being used: US
Thu Jan 11 21:53:56 2024 kern.debug kernel: [   17.264706] ath: Regpair used: 0x3a
Thu Jan 11 21:53:56 2024 kern.debug kernel: [   17.276461] ieee80211 phy1: Selected rate control algorithm 'minstrel_ht'
Thu Jan 11 21:53:56 2024 kern.info kernel: [   17.277349] ieee80211 phy1: Atheros AR9561 Rev:0 mem=0xb8100000, irq=2
Thu Jan 11 21:53:56 2024 user.info kernel: [   17.315197] kmodloader: done loading kernel modules from /etc/modules.d/*
Thu Jan 11 21:53:58 2024 daemon.info dnsmasq[1018]: started, version 2.89 cachesize 150
Thu Jan 11 21:53:58 2024 daemon.info dnsmasq[1018]: DNS service limited to local subnets
Thu Jan 11 21:53:58 2024 daemon.info dnsmasq[1018]: compile time options: IPv6 GNU-getopt no-DBus UBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-nftset no-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile
Thu Jan 11 21:53:58 2024 daemon.info dnsmasq[1018]: UBus support enabled: connected to system bus
Thu Jan 11 21:53:58 2024 daemon.info dnsmasq[1018]: using nameserver 192.168.50.2#5300
Thu Jan 11 21:53:58 2024 daemon.info dnsmasq[1018]: using only locally-known addresses for test
Thu Jan 11 21:53:58 2024 daemon.info dnsmasq[1018]: using only locally-known addresses for onion
Thu Jan 11 21:53:58 2024 daemon.info dnsmasq[1018]: using only locally-known addresses for localhost
Thu Jan 11 21:53:58 2024 daemon.info dnsmasq[1018]: using only locally-known addresses for local
Thu Jan 11 21:53:58 2024 daemon.info dnsmasq[1018]: using only locally-known addresses for invalid
Thu Jan 11 21:53:58 2024 daemon.info dnsmasq[1018]: using only locally-known addresses for bind
Thu Jan 11 21:53:58 2024 daemon.info dnsmasq[1018]: using only locally-known addresses for lan
Thu Jan 11 21:53:58 2024 daemon.warn dnsmasq[1018]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Thu Jan 11 21:53:58 2024 daemon.info dnsmasq[1018]: read /etc/hosts - 12 names
Thu Jan 11 21:53:58 2024 daemon.info dnsmasq[1018]: read /tmp/hosts/dhcp.cfg01411c - 0 names
Thu Jan 11 21:53:59 2024 authpriv.info dropbear[1082]: Not backgrounding
Thu Jan 11 21:54:03 2024 daemon.notice wpa_supplicant[1187]: Successfully initialized wpa_supplicant
Thu Jan 11 21:54:03 2024 user.notice : Added device handler type: bonding
Thu Jan 11 21:54:03 2024 user.notice : Added device handler type: 8021ad
Thu Jan 11 21:54:03 2024 user.notice : Added device handler type: 8021q
Thu Jan 11 21:54:03 2024 user.notice : Added device handler type: macvlan
Thu Jan 11 21:54:03 2024 user.notice : Added device handler type: veth
Thu Jan 11 21:54:03 2024 user.notice : Added device handler type: bridge
Thu Jan 11 21:54:03 2024 user.notice : Added device handler type: Network device
Thu Jan 11 21:54:03 2024 user.notice : Added device handler type: tunnel
Thu Jan 11 21:54:07 2024 user.notice ucitrack: Setting up /etc/config/dhcp reload dependency on /etc/config/network
Thu Jan 11 21:54:07 2024 user.notice ucitrack: Setting up /etc/config/network reload dependency on /etc/config/wireless
Thu Jan 11 21:54:08 2024 user.notice ucitrack: Setting up /etc/config/luci-splash reload dependency on /etc/config/firewall
Thu Jan 11 21:54:08 2024 user.notice ucitrack: Setting up /etc/config/qos reload dependency on /etc/config/firewall
Thu Jan 11 21:54:08 2024 user.notice ucitrack: Setting up /etc/config/miniupnpd reload dependency on /etc/config/firewall
Thu Jan 11 21:54:08 2024 user.notice ucitrack: Setting up /etc/config/odhcpd reload dependency on /etc/config/dhcp
Thu Jan 11 21:54:08 2024 user.notice ucitrack: Setting up non-init /etc/config/fstab reload handler: /sbin/block mount
Thu Jan 11 21:54:09 2024 user.notice ucitrack: Setting up /etc/config/system reload trigger for non-procd /etc/init.d/led
Thu Jan 11 21:54:09 2024 user.notice ucitrack: Setting up /etc/config/luci_statistics reload dependency on /etc/config/system
Thu Jan 11 21:54:09 2024 user.notice ucitrack: Setting up /etc/config/dhcp reload dependency on /etc/config/system
Thu Jan 11 21:54:10 2024 daemon.notice procd: /etc/rc.d/S96led: setting up led LAN
Thu Jan 11 21:54:10 2024 daemon.notice procd: /etc/rc.d/S96led: setting up led WAN
Thu Jan 11 21:54:11 2024 daemon.warn netifd: You have delegated IPv6-prefixes but haven't assigned them to any interface. Did you forget to set option ip6assign on your lan-interfaces?
Thu Jan 11 21:54:11 2024 kern.info kernel: [   36.241446] eth0: link up (1000Mbps/Full duplex)
Thu Jan 11 21:54:11 2024 kern.info kernel: [   36.246260] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Thu Jan 11 21:54:11 2024 kern.info kernel: [   36.269801] br-lan: port 1(eth0.1) entered blocking state
Thu Jan 11 21:54:11 2024 kern.info kernel: [   36.275404] br-lan: port 1(eth0.1) entered disabled state
Thu Jan 11 21:54:11 2024 kern.info kernel: [   36.281310] device eth0.1 entered promiscuous mode
Thu Jan 11 21:54:11 2024 kern.info kernel: [   36.286271] device eth0 entered promiscuous mode
Thu Jan 11 21:54:11 2024 kern.info kernel: [   36.305891] br-lan: port 1(eth0.1) entered blocking state
Thu Jan 11 21:54:11 2024 kern.info kernel: [   36.311545] br-lan: port 1(eth0.1) entered forwarding state
Thu Jan 11 21:54:11 2024 daemon.notice netifd: Interface 'lan' is enabled
Thu Jan 11 21:54:11 2024 daemon.notice netifd: Interface 'lan' is setting up now
Thu Jan 11 21:54:11 2024 daemon.notice netifd: Interface 'lan' is now up
Thu Jan 11 21:54:11 2024 daemon.notice netifd: bridge 'br-lan' link is up
Thu Jan 11 21:54:11 2024 daemon.notice netifd: Interface 'lan' has link connectivity
Thu Jan 11 21:54:11 2024 kern.info kernel: [   36.412155] br-wan: port 1(eth1) entered blocking state
Thu Jan 11 21:54:11 2024 kern.info kernel: [   36.417581] br-wan: port 1(eth1) entered disabled state
Thu Jan 11 21:54:11 2024 kern.info kernel: [   36.423268] device eth1 entered promiscuous mode
Thu Jan 11 21:54:11 2024 daemon.notice netifd: Interface 'wan' is enabled
Thu Jan 11 21:54:11 2024 daemon.notice netifd: Interface 'wan' is setting up now
Thu Jan 11 21:54:11 2024 daemon.notice netifd: Interface 'wan' is now up
Thu Jan 11 21:54:11 2024 daemon.notice netifd: VLAN 'eth0.1' link is up
Thu Jan 11 21:54:11 2024 daemon.notice netifd: Interface 'loopback' is enabled
Thu Jan 11 21:54:11 2024 daemon.notice netifd: Interface 'loopback' is setting up now
Thu Jan 11 21:54:11 2024 daemon.notice netifd: Interface 'loopback' is now up
Thu Jan 11 21:54:11 2024 daemon.notice netifd: bridge 'br-lan' link is down
Thu Jan 11 21:54:11 2024 daemon.notice netifd: Interface 'lan' has link connectivity loss
Thu Jan 11 21:54:11 2024 daemon.notice netifd: Network device 'eth0' link is up
Thu Jan 11 21:54:11 2024 daemon.notice netifd: VLAN 'eth0.1' link is down
Thu Jan 11 21:54:11 2024 daemon.notice netifd: VLAN 'eth0.1' link is up
Thu Jan 11 21:54:11 2024 daemon.notice netifd: bridge 'br-lan' link is up
Thu Jan 11 21:54:11 2024 daemon.notice netifd: Interface 'lan' has link connectivity
Thu Jan 11 21:54:11 2024 daemon.notice netifd: Network device 'lo' link is up
Thu Jan 11 21:54:11 2024 daemon.notice netifd: Interface 'loopback' has link connectivity
Thu Jan 11 21:54:12 2024 kern.info kernel: [   37.299697] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready
Thu Jan 11 21:54:12 2024 daemon.notice netifd: radio0 (1869): WARNING: Variable 'data' does not exist or is not an array/object
Thu Jan 11 21:54:12 2024 daemon.notice netifd: radio1 (1870): WARNING: Variable 'data' does not exist or is not an array/object
Thu Jan 11 21:54:13 2024 daemon.info procd: - init complete -
Thu Jan 11 21:54:13 2024 kern.info kernel: [   38.501269] eth1: link up (100Mbps/Full duplex)
Thu Jan 11 21:54:13 2024 kern.info kernel: [   38.506004] br-wan: port 1(eth1) entered blocking state
Thu Jan 11 21:54:13 2024 kern.info kernel: [   38.511461] br-wan: port 1(eth1) entered forwarding state
Thu Jan 11 21:54:13 2024 daemon.notice netifd: Network device 'eth1' link is up
Thu Jan 11 21:54:13 2024 user.notice firewall: Reloading firewall due to ifup of lan (br-lan)
Thu Jan 11 21:54:13 2024 daemon.notice netifd: bridge 'br-wan' link is up
Thu Jan 11 21:54:13 2024 daemon.notice netifd: Interface 'wan' has link connectivity
Thu Jan 11 21:54:13 2024 kern.info kernel: [   38.673241] IPv6: ADDRCONF(NETDEV_CHANGE): br-wan: link becomes ready
Thu Jan 11 21:54:14 2024 kern.debug kernel: [   39.199237] ath: EEPROM regdomain: 0x8020
Thu Jan 11 21:54:14 2024 kern.debug kernel: [   39.203441] ath: EEPROM indicates we should expect a country code
Thu Jan 11 21:54:14 2024 kern.debug kernel: [   39.209751] ath: doing EEPROM country->regdmn map search
Thu Jan 11 21:54:14 2024 kern.debug kernel: [   39.215231] ath: country maps to regdmn code: 0x3b
Thu Jan 11 21:54:14 2024 kern.debug kernel: [   39.220189] ath: Country alpha2 being used: AR
Thu Jan 11 21:54:14 2024 kern.debug kernel: [   39.224773] ath: Regpair used: 0x3b
Thu Jan 11 21:54:14 2024 kern.debug kernel: [   39.228375] ath: regdomain 0x8020 dynamically updated by user
Thu Jan 11 21:54:14 2024 kern.debug kernel: [   39.234397] ath: EEPROM regdomain: 0x8020
Thu Jan 11 21:54:14 2024 kern.debug kernel: [   39.238535] ath: EEPROM indicates we should expect a country code
Thu Jan 11 21:54:14 2024 kern.debug kernel: [   39.244844] ath: doing EEPROM country->regdmn map search
Thu Jan 11 21:54:14 2024 kern.debug kernel: [   39.250334] ath: country maps to regdmn code: 0x3b
Thu Jan 11 21:54:14 2024 kern.debug kernel: [   39.255273] ath: Country alpha2 being used: AR
Thu Jan 11 21:54:14 2024 kern.debug kernel: [   39.259872] ath: Regpair used: 0x3b
Thu Jan 11 21:54:14 2024 kern.debug kernel: [   39.263470] ath: regdomain 0x8020 dynamically updated by user
Thu Jan 11 21:54:15 2024 daemon.notice hostapd: Set new config for phy phy0:
Thu Jan 11 21:54:15 2024 daemon.notice wpa_supplicant[1187]: Set new config for phy phy0
Thu Jan 11 21:54:15 2024 daemon.notice hostapd: Set new config for phy phy1:
Thu Jan 11 21:54:15 2024 daemon.notice wpa_supplicant[1187]: Set new config for phy phy1
Fri Jan 12 00:04:10 2024 daemon.notice wpa_supplicant[1187]: Set new config for phy phy0
Fri Jan 12 00:04:11 2024 daemon.notice hostapd: Set new config for phy phy0: /var/run/hostapd-phy0.conf
Fri Jan 12 00:04:11 2024 daemon.notice hostapd: Restart interface for phy phy0
Fri Jan 12 00:04:11 2024 daemon.notice hostapd: Configuration file: data: driver=nl80211 logger_syslog=127 logger_syslog_level=2 logger_stdout=127 logger_stdout_level=2 country_code=AR ieee80211d=1 ieee80211h=1 hw_mode=a beacon_int=100 chanlist=36 tx_queue_data2_burst=2.0 #num_global_macaddr=1 ieee80211n=1 ht_coex=0 ht_capab=[HT40+][LDPC][SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][MAX-AMSDU-7935][DSSS_CCK-40] ieee80211ac=1 vht_oper_chwidth=1 vht_oper_centr_freq_seg0_idx=42 vht_capab=[RXLDPC][SHORT-GI-80][TX-STBC-2BY1][SU-BEAMFORMER][SU-BEAMFORMEE][MU-BEAMFORMER][MU-BEAMFORMEE][RX-ANTENNA-PATTERN][TX-ANTENNA-PATTERN][RX-STBC-1][SOUNDING-DIMENSION-2][BF-ANTENNA-4][MAX-MPDU-11454][MAX-A-MPDU-LEN-EXP7] channel=36  interface=5g_invitados bssid=50:c7:bf:75:81:af ctrl_interface=/var/run/hostapd ap_isolate=1 bss_load_update_period=60 chan_util_avg_period=600 disassoc_low_ack=1 skip_inactivity_poll=0 preamble=1 wmm_enabled=1 ignore_broadcast_ssid=0 uapsd_advertisement_enabled=1 utf8_ssid=1 multi_ap=0 wpa_passphrase=pass w
Fri Jan 12 00:04:11 2024 daemon.notice wpa_supplicant[1187]: Set new config for phy phy1
Fri Jan 12 00:04:12 2024 user.notice firewall: Reloading firewall due to ifup of wan (br-wan)
Fri Jan 12 00:04:12 2024 daemon.info dnsmasq[1018]: exiting on receipt of SIGTERM
Fri Jan 12 00:04:15 2024 kern.warn kernel: [   46.933807] ath10k_pci 0000:00:00.0: Unknown eventid: 36933
Fri Jan 12 00:04:15 2024 daemon.info dnsmasq[2354]: started, version 2.89 cachesize 150
Fri Jan 12 00:04:15 2024 daemon.info dnsmasq[2354]: DNS service limited to local subnets
Fri Jan 12 00:04:15 2024 kern.info kernel: [   46.957462] br-wan: port 2(5g_invitados) entered blocking state
Fri Jan 12 00:04:15 2024 kern.info kernel: [   46.963664] br-wan: port 2(5g_invitados) entered disabled state
Fri Jan 12 00:04:15 2024 kern.info kernel: [   46.970078] device 5g_invitados entered promiscuous mode
Fri Jan 12 00:04:15 2024 daemon.info dnsmasq[2354]: compile time options: IPv6 GNU-getopt no-DBus UBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-nftset no-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile
Fri Jan 12 00:04:15 2024 daemon.info dnsmasq[2354]: UBus support enabled: connected to system bus
Fri Jan 12 00:04:15 2024 daemon.info dnsmasq-dhcp[2354]: DHCP, IP range 10.1.0.100 -- 10.1.0.249, lease time 2h
Fri Jan 12 00:04:15 2024 daemon.info dnsmasq[2354]: using nameserver 192.168.50.2#5300
Fri Jan 12 00:04:15 2024 daemon.info dnsmasq[2354]: using only locally-known addresses for test
Fri Jan 12 00:04:15 2024 daemon.info dnsmasq[2354]: using only locally-known addresses for onion
Fri Jan 12 00:04:15 2024 daemon.info dnsmasq[2354]: using only locally-known addresses for localhost
Fri Jan 12 00:04:15 2024 daemon.info dnsmasq[2354]: using only locally-known addresses for local
Fri Jan 12 00:04:15 2024 daemon.info dnsmasq[2354]: using only locally-known addresses for invalid
Fri Jan 12 00:04:15 2024 daemon.info dnsmasq[2354]: using only locally-known addresses for bind
Fri Jan 12 00:04:15 2024 daemon.info dnsmasq[2354]: using only locally-known addresses for lan
Fri Jan 12 00:04:15 2024 daemon.warn dnsmasq[2354]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Fri Jan 12 00:04:15 2024 daemon.info dnsmasq[2354]: read /etc/hosts - 12 names
Fri Jan 12 00:04:15 2024 daemon.info dnsmasq[2354]: read /tmp/hosts/dhcp.cfg01411c - 2 names
Fri Jan 12 00:04:15 2024 daemon.notice hostapd: 5g_invitados: interface state UNINITIALIZED->COUNTRY_UPDATE
Fri Jan 12 00:04:15 2024 daemon.notice hostapd: 5g_invitados: interface state COUNTRY_UPDATE->HT_SCAN
Fri Jan 12 00:04:15 2024 daemon.info dnsmasq-dhcp[2354]: read /etc/ethers - 0 addresses
Fri Jan 12 00:04:15 2024 daemon.notice hostapd: Set new config for phy phy1: /var/run/hostapd-phy1.conf
Fri Jan 12 00:04:15 2024 daemon.notice hostapd: Restart interface for phy phy1
Fri Jan 12 00:04:15 2024 daemon.notice netifd: Wireless device 'radio0' is now up
Fri Jan 12 00:04:16 2024 kern.info kernel: [   48.025591] IPv6: ADDRCONF(NETDEV_CHANGE): 5g_invitados: link becomes ready
Fri Jan 12 00:04:16 2024 kern.info kernel: [   48.033090] br-wan: port 2(5g_invitados) entered blocking state
Fri Jan 12 00:04:16 2024 kern.info kernel: [   48.039222] br-wan: port 2(5g_invitados) entered forwarding state
Fri Jan 12 00:04:16 2024 daemon.notice netifd: Network device '5g_invitados' link is up
Fri Jan 12 00:04:16 2024 daemon.notice hostapd: Configuration file: data: driver=nl80211 logger_syslog=127 logger_syslog_level=2 logger_stdout=127 logger_stdout_level=2 country_code=AR ieee80211d=1 hw_mode=g supported_rates=60 90 120 180 240 360 480 540 basic_rates=60 120 240 beacon_int=100 chanlist=11 #num_global_macaddr=1 ieee80211n=1 ht_coex=0 ht_capab=[SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][DSSS_CCK-40] channel=11  interface=2g_invitados bssid=50:c7:bf:75:81:b0 ctrl_interface=/var/run/hostapd ap_isolate=1 bss_load_update_period=60 chan_util_avg_period=600 disassoc_low_ack=1 skip_inactivity_poll=0 preamble=1 wmm_enabled=1 ignore_broadcast_ssid=0 uapsd_advertisement_enabled=1 utf8_ssid=1 multi_ap=0 wpa_passphrase=pass wpa_psk_file=/var/run/hostapd-2g_invitados.psk auth_algs=1 wpa=2 wpa_pairwise=CCMP ssid=Invitados bridge=br-wan wds_bridge= snoop_iface=br-wan wpa_disable_eapol_key_retries=0 wpa_key_mgmt=WPA-PSK okc=0 disable_pmksa_caching=1 dynamic_vlan=0 vlan_naming=1 vlan_no_bridge=1 vlan_file=/var/run/hos
Fri Jan 12 00:04:16 2024 kern.info kernel: [   48.119650] br-wan: port 3(2g_invitados) entered blocking state
Fri Jan 12 00:04:16 2024 kern.info kernel: [   48.125791] br-wan: port 3(2g_invitados) entered disabled state
Fri Jan 12 00:04:16 2024 kern.info kernel: [   48.132333] device 2g_invitados entered promiscuous mode
Fri Jan 12 00:04:16 2024 kern.info kernel: [   48.137934] br-wan: port 3(2g_invitados) entered blocking state
Fri Jan 12 00:04:16 2024 kern.info kernel: [   48.144109] br-wan: port 3(2g_invitados) entered forwarding state
Fri Jan 12 00:04:16 2024 daemon.notice hostapd: 2g_invitados: interface state UNINITIALIZED->COUNTRY_UPDATE
Fri Jan 12 00:04:16 2024 kern.info kernel: [   48.316775] IPv6: ADDRCONF(NETDEV_CHANGE): 2g_invitados: link becomes ready
Fri Jan 12 00:04:17 2024 kern.info kernel: [   48.621999] br-lan: port 2(2g_f) entered blocking state
Fri Jan 12 00:04:17 2024 kern.info kernel: [   48.627418] br-lan: port 2(2g_f) entered disabled state
Fri Jan 12 00:04:17 2024 kern.info kernel: [   48.633168] device 2g_f entered promiscuous mode
Fri Jan 12 00:04:17 2024 kern.info kernel: [   48.674158] br-lan: port 2(2g_f) entered blocking state
Fri Jan 12 00:04:17 2024 kern.info kernel: [   48.679641] br-lan: port 2(2g_f) entered forwarding state
Fri Jan 12 00:04:17 2024 kern.info kernel: [   48.886222] IPv6: ADDRCONF(NETDEV_CHANGE): 2g_f: link becomes ready
Fri Jan 12 00:04:17 2024 daemon.notice hostapd: 2g_invitados: interface state COUNTRY_UPDATE->ENABLED
Fri Jan 12 00:04:17 2024 daemon.notice hostapd: 2g_invitados: AP-ENABLED
Fri Jan 12 00:04:17 2024 daemon.notice hostapd: Configuration file: data: driver=nl80211 logger_syslog=127 logger_syslog_level=2 logger_stdout=127 logger_stdout_level=2 country_code=AR ieee80211d=1 hw_mode=g supported_rates=60 90 120 180 240 360 480 540 basic_rates=60 120 240 beacon_int=100 chanlist=11 #num_global_macaddr=1 ieee80211n=1 ht_coex=0 ht_capab=[SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][DSSS_CCK-40] channel=11  interface=2g_invitados bssid=50:c7:bf:75:81:b0 ctrl_interface=/var/run/hostapd ap_isolate=1 bss_load_update_period=60 chan_util_avg_period=600 disassoc_low_ack=1 skip_inactivity_poll=0 preamble=1 wmm_enabled=1 ignore_broadcast_ssid=0 uapsd_advertisement_enabled=1 utf8_ssid=1 multi_ap=0 wpa_passphrase=pass wpa_psk_file=/var/run/hostapd-2g_invitados.psk auth_algs=1 wpa=2 wpa_pairwise=CCMP ssid=Invitados bridge=br-wan wds_bridge= snoop_iface=br-wan wpa_disable_eapol_key_retries=0 wpa_key_mgmt=WPA-PSK okc=0 disable_pmksa_caching=1 dynamic_vlan=0 vlan_naming=1 vlan_no_bridge=1 vlan_file=/var/run/hos
Fri Jan 12 00:04:17 2024 daemon.err hostapd: Multiple BSSes specified in BSS-config
Fri Jan 12 00:04:46 2024 daemon.notice netifd: Wireless device 'radio1' is now up
Fri Jan 12 00:04:46 2024 daemon.notice netifd: Network device '2g_invitados' link is up
Fri Jan 12 00:04:46 2024 daemon.notice netifd: Network device '2g_f' link is up
Fri Jan 12 00:07:24 2024 daemon.err uhttpd[1477]: [info] luci: accepted login on / for root from 192.168.50.10
Fri Jan 12 01:31:22 2024 daemon.err uhttpd[1477]: [info] luci: accepted login on / for root from 192.168.50.10
Fri Jan 12 01:43:41 2024 daemon.notice netifd: Interface 'lan' is now down
Fri Jan 12 01:43:41 2024 kern.info kernel: [ 6013.209173] br-lan: port 2(2g_f) entered disabled state
Fri Jan 12 01:43:41 2024 kern.info kernel: [ 6013.214680] br-lan: port 1(eth0.1) entered disabled state
Fri Jan 12 01:43:42 2024 kern.info kernel: [ 6013.337114] device 2g_f left promiscuous mode
Fri Jan 12 01:43:42 2024 kern.info kernel: [ 6013.341840] br-lan: port 2(2g_f) entered disabled state
Fri Jan 12 01:43:42 2024 kern.info kernel: [ 6013.366898] device eth0.1 left promiscuous mode
Fri Jan 12 01:43:42 2024 kern.info kernel: [ 6013.371622] device eth0 left promiscuous mode
Fri Jan 12 01:43:42 2024 kern.info kernel: [ 6013.376252] br-lan: port 1(eth0.1) entered disabled state
Fri Jan 12 01:43:42 2024 kern.info kernel: [ 6013.573357] eth0: link down
Fri Jan 12 01:43:42 2024 daemon.notice netifd: Interface 'lan' is disabled
Fri Jan 12 01:43:42 2024 daemon.notice netifd: bridge 'br-lan' link is down
Fri Jan 12 01:43:42 2024 daemon.notice netifd: Interface 'lan' has link connectivity loss
Fri Jan 12 01:43:42 2024 daemon.notice netifd: VLAN 'eth0.1' link is down
Fri Jan 12 01:43:42 2024 daemon.notice netifd: Network device 'eth0' link is down
Fri Jan 12 01:43:42 2024 daemon.notice netifd: Interface 'loopback' is now down
Fri Jan 12 01:43:42 2024 daemon.notice netifd: Interface 'loopback' is disabled
Fri Jan 12 01:43:42 2024 daemon.notice netifd: Network device 'lo' link is down
Fri Jan 12 01:43:42 2024 daemon.notice netifd: Interface 'loopback' has link connectivity loss
Fri Jan 12 01:43:42 2024 daemon.notice netifd: Interface 'wan' is now down
Fri Jan 12 01:43:42 2024 kern.info kernel: [ 6013.660703] br-wan: port 3(2g_invitados) entered disabled state
Fri Jan 12 01:43:42 2024 kern.info kernel: [ 6013.666975] br-wan: port 2(5g_invitados) entered disabled state
Fri Jan 12 01:43:42 2024 kern.info kernel: [ 6013.673124] br-wan: port 1(eth1) entered disabled state
Fri Jan 12 01:43:42 2024 kern.info kernel: [ 6013.776661] device 2g_invitados left promiscuous mode
Fri Jan 12 01:43:42 2024 kern.info kernel: [ 6013.782100] br-wan: port 3(2g_invitados) entered disabled state
Fri Jan 12 01:43:42 2024 kern.info kernel: [ 6013.807811] device 5g_invitados left promiscuous mode
Fri Jan 12 01:43:42 2024 kern.info kernel: [ 6013.813245] br-wan: port 2(5g_invitados) entered disabled state
Fri Jan 12 01:43:42 2024 kern.info kernel: [ 6013.859887] device eth1 left promiscuous mode
Fri Jan 12 01:43:42 2024 kern.info kernel: [ 6013.864609] br-wan: port 1(eth1) entered disabled state
Fri Jan 12 01:43:42 2024 kern.info kernel: [ 6013.917120] eth1: link down
Fri Jan 12 01:43:42 2024 daemon.notice netifd: Interface 'wan' is disabled
Fri Jan 12 01:43:42 2024 daemon.notice netifd: bridge 'br-wan' link is down
Fri Jan 12 01:43:42 2024 daemon.notice netifd: Interface 'wan' has link connectivity loss
Fri Jan 12 01:43:42 2024 daemon.notice netifd: Network device 'eth1' link is down
Fri Jan 12 01:43:44 2024 daemon.info dnsmasq[2354]: exiting on receipt of SIGTERM
Fri Jan 12 01:43:44 2024 daemon.info dnsmasq[3059]: started, version 2.89 cachesize 150
Fri Jan 12 01:43:44 2024 daemon.info dnsmasq[3059]: DNS service limited to local subnets
Fri Jan 12 01:43:44 2024 daemon.info dnsmasq[3059]: compile time options: IPv6 GNU-getopt no-DBus UBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-nftset no-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile
Fri Jan 12 01:43:44 2024 daemon.info dnsmasq[3059]: UBus support enabled: connected to system bus
Fri Jan 12 01:43:44 2024 daemon.info dnsmasq[3059]: using nameserver 94.140.14.14#5353
Fri Jan 12 01:43:44 2024 daemon.info dnsmasq[3059]: using nameserver 94.140.15.15#5353
Fri Jan 12 01:43:44 2024 daemon.info dnsmasq[3059]: using only locally-known addresses for test
Fri Jan 12 01:43:44 2024 daemon.info dnsmasq[3059]: using only locally-known addresses for onion
Fri Jan 12 01:43:44 2024 daemon.info dnsmasq[3059]: using only locally-known addresses for localhost
Fri Jan 12 01:43:44 2024 daemon.info dnsmasq[3059]: using only locally-known addresses for local
Fri Jan 12 01:43:44 2024 daemon.info dnsmasq[3059]: using only locally-known addresses for invalid
Fri Jan 12 01:43:44 2024 daemon.info dnsmasq[3059]: using only locally-known addresses for bind
Fri Jan 12 01:43:44 2024 daemon.info dnsmasq[3059]: using only locally-known addresses for lan
Fri Jan 12 01:43:44 2024 daemon.warn dnsmasq[3059]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Fri Jan 12 01:43:44 2024 daemon.info dnsmasq[3059]: read /etc/hosts - 12 names
Fri Jan 12 01:43:44 2024 daemon.info dnsmasq[3059]: read /tmp/hosts/dhcp.cfg01411c - 0 names
Fri Jan 12 01:43:45 2024 user.notice : Added device handler type: bonding
Fri Jan 12 01:43:45 2024 user.notice : Added device handler type: 8021ad
Fri Jan 12 01:43:45 2024 user.notice : Added device handler type: 8021q
Fri Jan 12 01:43:45 2024 user.notice : Added device handler type: macvlan
Fri Jan 12 01:43:45 2024 user.notice : Added device handler type: veth
Fri Jan 12 01:43:45 2024 user.notice : Added device handler type: bridge
Fri Jan 12 01:43:45 2024 user.notice : Added device handler type: Network device
Fri Jan 12 01:43:45 2024 user.notice : Added device handler type: tunnel
Fri Jan 12 01:43:46 2024 daemon.info dnsmasq[3059]: exiting on receipt of SIGTERM
Fri Jan 12 01:43:51 2024 daemon.warn netifd: You have delegated IPv6-prefixes but haven't assigned them to any interface. Did you forget to set option ip6assign on your lan-interfaces?
Fri Jan 12 01:43:51 2024 kern.info kernel: [ 6022.932153] eth0: link up (1000Mbps/Full duplex)
Fri Jan 12 01:43:51 2024 kern.info kernel: [ 6022.948938] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Fri Jan 12 01:43:51 2024 kern.info kernel: [ 6022.966611] br-lan: port 1(eth0.1) entered blocking state
Fri Jan 12 01:43:51 2024 kern.info kernel: [ 6022.972290] br-lan: port 1(eth0.1) entered disabled state
Fri Jan 12 01:43:51 2024 kern.info kernel: [ 6022.986175] device eth0.1 entered promiscuous mode
Fri Jan 12 01:43:51 2024 kern.info kernel: [ 6022.991340] device eth0 entered promiscuous mode
Fri Jan 12 01:43:51 2024 kern.info kernel: [ 6023.099147] br-lan: port 1(eth0.1) entered blocking state
Fri Jan 12 01:43:51 2024 kern.info kernel: [ 6023.104750] br-lan: port 1(eth0.1) entered forwarding state
Fri Jan 12 01:43:51 2024 daemon.notice netifd: Interface 'lan' is enabled
Fri Jan 12 01:43:51 2024 daemon.notice netifd: Interface 'lan' is setting up now
Fri Jan 12 01:43:51 2024 daemon.notice netifd: Interface 'lan' is now up
Fri Jan 12 01:43:51 2024 daemon.notice netifd: bridge 'br-lan' link is up
Fri Jan 12 01:43:51 2024 daemon.notice netifd: Interface 'lan' has link connectivity
Fri Jan 12 01:43:51 2024 kern.info kernel: [ 6023.241785] br-wan: port 1(eth1) entered blocking state
Fri Jan 12 01:43:51 2024 kern.info kernel: [ 6023.247247] br-wan: port 1(eth1) entered disabled state
Fri Jan 12 01:43:51 2024 kern.info kernel: [ 6023.262534] device eth1 entered promiscuous mode
Fri Jan 12 01:43:51 2024 daemon.notice netifd: Interface 'wan' is enabled
Fri Jan 12 01:43:51 2024 daemon.notice netifd: Interface 'wan' is setting up now
Fri Jan 12 01:43:51 2024 daemon.notice netifd: Interface 'wan' is now up
Fri Jan 12 01:43:51 2024 daemon.notice netifd: VLAN 'eth0.1' link is up
Fri Jan 12 01:43:51 2024 daemon.notice netifd: Interface 'loopback' is enabled
Fri Jan 12 01:43:51 2024 daemon.notice netifd: Interface 'loopback' is setting up now
Fri Jan 12 01:43:51 2024 daemon.notice netifd: Interface 'loopback' is now up
Fri Jan 12 01:43:52 2024 daemon.notice netifd: bridge 'br-lan' link is down
Fri Jan 12 01:43:52 2024 daemon.notice netifd: Interface 'lan' has link connectivity loss
Fri Jan 12 01:43:52 2024 daemon.notice netifd: VLAN 'eth0.1' link is down
Fri Jan 12 01:43:52 2024 daemon.notice netifd: Network device 'eth0' link is up
Fri Jan 12 01:43:52 2024 daemon.notice netifd: VLAN 'eth0.1' link is up
Fri Jan 12 01:43:52 2024 daemon.notice netifd: bridge 'br-lan' link is up
Fri Jan 12 01:43:52 2024 daemon.notice netifd: Interface 'lan' has link connectivity
Fri Jan 12 01:43:52 2024 daemon.notice netifd: Network device 'lo' link is up
Fri Jan 12 01:43:52 2024 daemon.notice netifd: Interface 'loopback' has link connectivity
Fri Jan 12 01:43:52 2024 kern.info kernel: [ 6023.958731] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready
Fri Jan 12 01:43:54 2024 kern.info kernel: [ 6025.308141] eth1: link up (100Mbps/Full duplex)
Fri Jan 12 01:43:54 2024 kern.info kernel: [ 6025.312996] br-wan: port 1(eth1) entered blocking state
Fri Jan 12 01:43:54 2024 kern.info kernel: [ 6025.318464] br-wan: port 1(eth1) entered forwarding state
Fri Jan 12 01:43:54 2024 daemon.notice netifd: Network device 'eth1' link is up
Fri Jan 12 01:43:54 2024 daemon.notice netifd: bridge 'br-wan' link is up
Fri Jan 12 01:43:54 2024 daemon.notice netifd: Interface 'wan' has link connectivity
Fri Jan 12 01:43:54 2024 kern.info kernel: [ 6025.456425] IPv6: ADDRCONF(NETDEV_CHANGE): br-wan: link becomes ready
Fri Jan 12 01:43:54 2024 daemon.notice netifd: radio0 (3394): WARNING: Variable 'data' does not exist or is not an array/object
Fri Jan 12 01:43:54 2024 daemon.notice netifd: radio1 (3395): WARNING: Variable 'data' does not exist or is not an array/object
Fri Jan 12 01:43:56 2024 user.notice firewall: Reloading firewall due to ifup of lan (br-lan)
Fri Jan 12 01:44:00 2024 daemon.info dnsmasq[3687]: started, version 2.89 cachesize 150
Fri Jan 12 01:44:00 2024 daemon.info dnsmasq[3687]: DNS service limited to local subnets
Fri Jan 12 01:44:00 2024 daemon.info dnsmasq[3687]: compile time options: IPv6 GNU-getopt no-DBus UBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-nftset no-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile
Fri Jan 12 01:44:00 2024 daemon.info dnsmasq[3687]: UBus support enabled: connected to system bus
Fri Jan 12 01:44:00 2024 daemon.info dnsmasq-dhcp[3687]: DHCP, IP range 10.1.0.100 -- 10.1.0.249, lease time 2h
Fri Jan 12 01:44:00 2024 daemon.info dnsmasq[3687]: using nameserver 94.140.14.14#5353
Fri Jan 12 01:44:00 2024 daemon.info dnsmasq[3687]: using nameserver 94.140.15.15#5353
Fri Jan 12 01:44:00 2024 daemon.info dnsmasq[3687]: using only locally-known addresses for test
Fri Jan 12 01:44:00 2024 daemon.info dnsmasq[3687]: using only locally-known addresses for onion
Fri Jan 12 01:44:00 2024 daemon.info dnsmasq[3687]: using only locally-known addresses for localhost
Fri Jan 12 01:44:00 2024 daemon.info dnsmasq[3687]: using only locally-known addresses for local
Fri Jan 12 01:44:00 2024 daemon.info dnsmasq[3687]: using only locally-known addresses for invalid
Fri Jan 12 01:44:00 2024 daemon.info dnsmasq[3687]: using only locally-known addresses for bind
Fri Jan 12 01:44:00 2024 daemon.info dnsmasq[3687]: using only locally-known addresses for lan
Fri Jan 12 01:44:00 2024 daemon.warn dnsmasq[3687]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Fri Jan 12 01:44:00 2024 daemon.info dnsmasq[3687]: read /etc/hosts - 12 names
Fri Jan 12 01:44:00 2024 daemon.info dnsmasq[3687]: read /tmp/hosts/dhcp.cfg01411c - 2 names
Fri Jan 12 01:44:00 2024 daemon.info dnsmasq-dhcp[3687]: read /etc/ethers - 0 addresses
Fri Jan 12 01:44:03 2024 user.notice firewall: Reloading firewall due to ifup of wan (br-wan)
Fri Jan 12 01:44:26 2024 daemon.notice netifd: Interface 'lan' is now down
Fri Jan 12 01:44:26 2024 kern.info kernel: [ 6058.147845] br-lan: port 1(eth0.1) entered disabled state
Fri Jan 12 01:44:26 2024 kern.info kernel: [ 6058.167222] device eth0.1 left promiscuous mode
Fri Jan 12 01:44:26 2024 kern.info kernel: [ 6058.171965] device eth0 left promiscuous mode
Fri Jan 12 01:44:26 2024 kern.info kernel: [ 6058.176635] br-lan: port 1(eth0.1) entered disabled state
Fri Jan 12 01:44:26 2024 kern.info kernel: [ 6058.198260] eth0: link down
Fri Jan 12 01:44:26 2024 daemon.notice netifd: Interface 'lan' is disabled
Fri Jan 12 01:44:26 2024 daemon.notice netifd: bridge 'br-lan' link is down
Fri Jan 12 01:44:26 2024 daemon.notice netifd: Interface 'lan' has link connectivity loss
Fri Jan 12 01:44:26 2024 daemon.notice netifd: VLAN 'eth0.1' link is down
Fri Jan 12 01:44:26 2024 daemon.notice netifd: Network device 'eth0' link is down
Fri Jan 12 01:44:26 2024 daemon.notice netifd: Interface 'loopback' is now down
Fri Jan 12 01:44:26 2024 daemon.notice netifd: Interface 'loopback' is disabled
Fri Jan 12 01:44:26 2024 daemon.notice netifd: Network device 'lo' link is down
Fri Jan 12 01:44:26 2024 daemon.notice netifd: Interface 'loopback' has link connectivity loss
Fri Jan 12 01:44:26 2024 daemon.notice netifd: Interface 'wan' is now down
Fri Jan 12 01:44:26 2024 kern.info kernel: [ 6058.286697] br-wan: port 1(eth1) entered disabled state
Fri Jan 12 01:44:27 2024 kern.info kernel: [ 6058.309093] device eth1 left promiscuous mode
Fri Jan 12 01:44:27 2024 kern.info kernel: [ 6058.313817] br-wan: port 1(eth1) entered disabled state
Fri Jan 12 01:44:27 2024 kern.info kernel: [ 6058.392735] eth1: link down
Fri Jan 12 01:44:27 2024 daemon.notice netifd: Interface 'wan' is disabled
Fri Jan 12 01:44:27 2024 daemon.notice netifd: bridge 'br-wan' link is down
Fri Jan 12 01:44:27 2024 daemon.notice netifd: Interface 'wan' has link connectivity loss
Fri Jan 12 01:44:27 2024 daemon.notice netifd: Network device 'eth1' link is down
Fri Jan 12 01:44:29 2024 daemon.info dnsmasq[3687]: exiting on receipt of SIGTERM
Fri Jan 12 01:44:29 2024 user.notice : Added device handler type: bonding
Fri Jan 12 01:44:29 2024 daemon.info dnsmasq[4125]: started, version 2.89 cachesize 150
Fri Jan 12 01:44:29 2024 daemon.info dnsmasq[4125]: DNS service limited to local subnets
Fri Jan 12 01:44:29 2024 daemon.info dnsmasq[4125]: compile time options: IPv6 GNU-getopt no-DBus UBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-nftset no-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile
Fri Jan 12 01:44:29 2024 daemon.info dnsmasq[4125]: UBus support enabled: connected to system bus
Fri Jan 12 01:44:29 2024 daemon.info dnsmasq[4125]: using nameserver 94.140.14.14#5353
Fri Jan 12 01:44:29 2024 user.notice : Added device handler type: 8021ad
Fri Jan 12 01:44:29 2024 daemon.info dnsmasq[4125]: using nameserver 94.140.15.15#5353
Fri Jan 12 01:44:29 2024 user.notice : Added device handler type: 8021q
Fri Jan 12 01:44:29 2024 user.notice : Added device handler type: macvlan
Fri Jan 12 01:44:29 2024 user.notice : Added device handler type: veth
Fri Jan 12 01:44:29 2024 user.notice : Added device handler type: bridge
Fri Jan 12 01:44:29 2024 daemon.info dnsmasq[4125]: using only locally-known addresses for test
Fri Jan 12 01:44:29 2024 user.notice : Added device handler type: Network device
Fri Jan 12 01:44:29 2024 user.notice : Added device handler type: tunnel
Fri Jan 12 01:44:29 2024 daemon.info dnsmasq[4125]: using only locally-known addresses for onion
Fri Jan 12 01:44:29 2024 daemon.info dnsmasq[4125]: using only locally-known addresses for localhost
Fri Jan 12 01:44:29 2024 daemon.info dnsmasq[4125]: using only locally-known addresses for local
Fri Jan 12 01:44:29 2024 daemon.info dnsmasq[4125]: using only locally-known addresses for invalid
Fri Jan 12 01:44:29 2024 daemon.info dnsmasq[4125]: using only locally-known addresses for bind
Fri Jan 12 01:44:29 2024 daemon.info dnsmasq[4125]: using only locally-known addresses for lan
Fri Jan 12 01:44:29 2024 daemon.warn dnsmasq[4125]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Fri Jan 12 01:44:29 2024 daemon.info dnsmasq[4125]: read /etc/hosts - 12 names
Fri Jan 12 01:44:29 2024 daemon.info dnsmasq[4125]: read /tmp/hosts/dhcp.cfg01411c - 0 names
Fri Jan 12 01:44:29 2024 daemon.info dnsmasq[4125]: read /etc/hosts - 12 names
Fri Jan 12 01:44:29 2024 daemon.info dnsmasq[4125]: read /tmp/hosts/dhcp.cfg01411c - 0 names
Fri Jan 12 01:44:30 2024 daemon.info dnsmasq[4125]: exiting on receipt of SIGTERM
Fri Jan 12 01:44:34 2024 daemon.warn netifd: You have delegated IPv6-prefixes but haven't assigned them to any interface. Did you forget to set option ip6assign on your lan-interfaces?
Fri Jan 12 01:44:34 2024 kern.info kernel: [ 6065.473386] eth0: link up (1000Mbps/Full duplex)
Fri Jan 12 01:44:34 2024 kern.info kernel: [ 6065.487484] br-lan: port 1(eth0.1) entered blocking state
Fri Jan 12 01:44:34 2024 kern.info kernel: [ 6065.493129] br-lan: port 1(eth0.1) entered disabled state
Fri Jan 12 01:44:34 2024 kern.info kernel: [ 6065.499099] device eth0.1 entered promiscuous mode
Fri Jan 12 01:44:34 2024 kern.info kernel: [ 6065.504087] device eth0 entered promiscuous mode
Fri Jan 12 01:44:34 2024 kern.info kernel: [ 6065.510233] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Fri Jan 12 01:44:34 2024 kern.info kernel: [ 6065.539322] br-lan: port 1(eth0.1) entered blocking state
Fri Jan 12 01:44:34 2024 kern.info kernel: [ 6065.544939] br-lan: port 1(eth0.1) entered forwarding state
Fri Jan 12 01:44:34 2024 daemon.notice netifd: Interface 'lan' is enabled
Fri Jan 12 01:44:34 2024 daemon.notice netifd: Interface 'lan' is setting up now
Fri Jan 12 01:44:34 2024 daemon.notice netifd: Interface 'lan' is now up
Fri Jan 12 01:44:34 2024 daemon.notice netifd: bridge 'br-lan' link is up
Fri Jan 12 01:44:34 2024 daemon.notice netifd: Interface 'lan' has link connectivity
Fri Jan 12 01:44:34 2024 kern.info kernel: [ 6065.794368] br-wan: port 1(eth1) entered blocking state
Fri Jan 12 01:44:34 2024 kern.info kernel: [ 6065.799953] br-wan: port 1(eth1) entered disabled state
Fri Jan 12 01:44:34 2024 kern.info kernel: [ 6065.805665] device eth1 entered promiscuous mode
Fri Jan 12 01:44:34 2024 daemon.notice netifd: Interface 'wan' is enabled
Fri Jan 12 01:44:34 2024 daemon.notice netifd: Interface 'wan' is setting up now
Fri Jan 12 01:44:34 2024 daemon.notice netifd: Interface 'wan' is now up
Fri Jan 12 01:44:34 2024 daemon.notice netifd: VLAN 'eth0.1' link is up
Fri Jan 12 01:44:34 2024 daemon.notice netifd: Interface 'loopback' is enabled
Fri Jan 12 01:44:34 2024 daemon.notice netifd: Interface 'loopback' is setting up now
Fri Jan 12 01:44:34 2024 daemon.notice netifd: Interface 'loopback' is now up
Fri Jan 12 01:44:34 2024 daemon.notice netifd: bridge 'br-lan' link is down
Fri Jan 12 01:44:34 2024 daemon.notice netifd: Interface 'lan' has link connectivity loss
Fri Jan 12 01:44:34 2024 daemon.notice netifd: VLAN 'eth0.1' link is down
Fri Jan 12 01:44:34 2024 daemon.notice netifd: Network device 'eth0' link is up
Fri Jan 12 01:44:34 2024 daemon.notice netifd: VLAN 'eth0.1' link is up
Fri Jan 12 01:44:34 2024 daemon.notice netifd: bridge 'br-lan' link is up
Fri Jan 12 01:44:34 2024 daemon.notice netifd: Interface 'lan' has link connectivity
Fri Jan 12 01:44:34 2024 daemon.notice netifd: Network device 'lo' link is up
Fri Jan 12 01:44:34 2024 daemon.notice netifd: Interface 'loopback' has link connectivity
Fri Jan 12 01:44:35 2024 kern.info kernel: [ 6066.506043] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready
Fri Jan 12 01:44:36 2024 kern.info kernel: [ 6067.873611] eth1: link up (100Mbps/Full duplex)
Fri Jan 12 01:44:36 2024 kern.info kernel: [ 6067.886127] br-wan: port 1(eth1) entered blocking state
Fri Jan 12 01:44:36 2024 kern.info kernel: [ 6067.891551] br-wan: port 1(eth1) entered forwarding state
Fri Jan 12 01:44:36 2024 daemon.notice netifd: Network device 'eth1' link is up
Fri Jan 12 01:44:36 2024 daemon.notice netifd: bridge 'br-wan' link is up
Fri Jan 12 01:44:36 2024 daemon.notice netifd: Interface 'wan' has link connectivity
Fri Jan 12 01:44:36 2024 kern.info kernel: [ 6068.149157] IPv6: ADDRCONF(NETDEV_CHANGE): br-wan: link becomes ready
Fri Jan 12 01:44:37 2024 daemon.notice netifd: radio0 (4307): WARNING: Variable 'data' does not exist or is not an array/object
Fri Jan 12 01:44:37 2024 daemon.notice netifd: radio1 (4308): WARNING: Variable 'data' does not exist or is not an array/object
Fri Jan 12 01:44:40 2024 user.notice firewall: Reloading firewall due to ifup of lan (br-lan)
Fri Jan 12 01:44:50 2024 daemon.info dnsmasq[4581]: started, version 2.89 cachesize 150
Fri Jan 12 01:44:50 2024 daemon.info dnsmasq[4581]: DNS service limited to local subnets
Fri Jan 12 01:44:50 2024 daemon.info dnsmasq[4581]: compile time options: IPv6 GNU-getopt no-DBus UBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-nftset no-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile
Fri Jan 12 01:44:50 2024 daemon.info dnsmasq[4581]: UBus support enabled: connected to system bus
Fri Jan 12 01:44:50 2024 daemon.info dnsmasq-dhcp[4581]: DHCP, IP range 10.1.0.100 -- 10.1.0.249, lease time 2h
Fri Jan 12 01:44:50 2024 daemon.info dnsmasq[4581]: using nameserver 94.140.14.14#5353
Fri Jan 12 01:44:50 2024 daemon.info dnsmasq[4581]: using nameserver 94.140.15.15#5353
Fri Jan 12 01:44:50 2024 daemon.info dnsmasq[4581]: using only locally-known addresses for test
Fri Jan 12 01:44:50 2024 daemon.info dnsmasq[4581]: using only locally-known addresses for onion
Fri Jan 12 01:44:50 2024 daemon.info dnsmasq[4581]: using only locally-known addresses for localhost
Fri Jan 12 01:44:50 2024 daemon.info dnsmasq[4581]: using only locally-known addresses for local
Fri Jan 12 01:44:50 2024 daemon.info dnsmasq[4581]: using only locally-known addresses for invalid
Fri Jan 12 01:44:50 2024 daemon.info dnsmasq[4581]: using only locally-known addresses for bind
Fri Jan 12 01:44:50 2024 daemon.info dnsmasq[4581]: using only locally-known addresses for lan
Fri Jan 12 01:44:50 2024 daemon.warn dnsmasq[4581]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Fri Jan 12 01:44:50 2024 daemon.info dnsmasq[4581]: read /etc/hosts - 12 names
Fri Jan 12 01:44:50 2024 daemon.info dnsmasq[4581]: read /tmp/hosts/dhcp.cfg01411c - 2 names
Fri Jan 12 01:44:51 2024 daemon.info dnsmasq-dhcp[4581]: read /etc/ethers - 0 addresses
Fri Jan 12 01:45:05 2024 user.notice firewall: Reloading firewall due to ifup of wan (br-wan)
Fri Jan 12 01:46:14 2024 daemon.notice netifd: radio1 (4308): Command failed: ubus call hostapd config_set { "phy": "phy1", "config": "", "prev_config": "/var/run/hostapd-phy1.conf" } (Request timed out)
Fri Jan 12 01:46:44 2024 daemon.notice netifd: radio0 (4307): Command failed: ubus call hostapd config_set { "phy": "phy0", "config": "", "prev_config": "/var/run/hostapd-phy0.conf" } (Request timed out)
Fri Jan 12 01:46:45 2024 daemon.notice wpa_supplicant[1187]: Set new config for phy phy1
Fri Jan 12 01:46:45 2024 daemon.notice wpa_supplicant[1187]: Set new config for phy phy0
Fri Jan 12 01:47:16 2024 daemon.notice wpa_supplicant[1187]: Set new config for phy phy0
Fri Jan 12 01:47:46 2024 daemon.notice netifd: radio0 (4307): Command failed: ubus call hostapd config_set { "phy": "phy0", "config": "", "prev_config": "/var/run/hostapd-phy0.conf.prev" } (Request timed out)
Fri Jan 12 01:47:46 2024 daemon.notice wpa_supplicant[1187]: Set new config for phy phy1
Fri Jan 12 01:48:16 2024 daemon.notice netifd: radio1 (4308): Command failed: ubus call hostapd config_set { "phy": "phy1", "config":"/var/run/hostapd-phy1.conf", "prev_config": "/var/run/hostapd-phy1.conf.prev"} (Request timed out)
Fri Jan 12 01:48:16 2024 daemon.notice netifd: radio1 (4308): Device setup failed: HOSTAPD_START_FAILED
Fri Jan 12 01:48:16 2024 daemon.notice netifd: Wireless device 'radio1' set retry=0
Fri Jan 12 01:48:16 2024 daemon.notice netifd: Wireless device 'radio0' is now up
Fri Jan 12 01:48:16 2024 daemon.notice wpa_supplicant[1187]: Set new config for phy phy1
Fri Jan 12 01:48:50 2024 daemon.notice netifd: Wireless device 'radio1' is now up
Fri Jan 12 01:48:50 2024 daemon.notice netifd: Network device '2g_f' link is up
Fri Jan 12 01:48:50 2024 kern.info kernel: [ 6321.558116] br-lan: port 2(2g_f) entered blocking state
Fri Jan 12 01:48:50 2024 kern.info kernel: [ 6321.563749] br-lan: port 2(2g_f) entered disabled state
Fri Jan 12 01:48:50 2024 kern.info kernel: [ 6321.569435] device 2g_f entered promiscuous mode
Fri Jan 12 01:48:50 2024 kern.info kernel: [ 6321.574374] br-lan: port 2(2g_f) entered blocking state
Fri Jan 12 01:48:50 2024 kern.info kernel: [ 6321.579802] br-lan: port 2(2g_f) entered forwarding state
Fri Jan 12 01:48:50 2024 daemon.notice netifd: Interface 'wwan' is enabled
Fri Jan 12 01:48:51 2024 daemon.notice wpa_supplicant[1187]: 2g_sta: SME: Trying to authenticate with 22:b8:2b:30:96:df (SSID='TeleCentro Wifi' freq=2437 MHz)
Fri Jan 12 01:49:21 2024 daemon.notice wpa_supplicant[1187]: BSSID 22:b8:2b:30:96:df ignore list count incremented to 2, ignoring for 10 seconds
Fri Jan 12 01:49:21 2024 kern.info kernel: [ 6352.790095] 2g_sta: authenticate with 22:b8:2b:30:96:df
Fri Jan 12 01:49:21 2024 kern.info kernel: [ 6352.795656] 2g_sta: 80 MHz not supported, disabling VHT
Fri Jan 12 01:50:21 2024 daemon.notice wpa_supplicant[1187]: 2g_sta: SME: Trying to authenticate with 22:b8:2b:30:96:df (SSID='TeleCentro Wifi' freq=2437 MHz)
Fri Jan 12 01:50:51 2024 daemon.notice wpa_supplicant[1187]: BSSID 22:b8:2b:30:96:df ignore list count incremented to 3, ignoring for 60 seconds
Fri Jan 12 01:50:51 2024 kern.info kernel: [ 6443.229010] 2g_sta: authenticate with 22:b8:2b:30:96:df
Fri Jan 12 01:50:51 2024 kern.info kernel: [ 6443.234569] 2g_sta: 80 MHz not supported, disabling VHT
Fri Jan 12 01:51:53 2024 daemon.notice wpa_supplicant[1187]: 2g_sta: SME: Trying to authenticate with 22:b8:2b:30:96:df (SSID='TeleCentro Wifi' freq=2437 MHz)
Fri Jan 12 01:52:18 2024 daemon.notice netifd: radio1 (4936): Command failed: ubus call hostapd config_set { "phy": "phy1", "config": "", "prev_config": "/var/run/hostapd-phy1.conf" } (Request timed out)
Fri Jan 12 01:52:23 2024 daemon.notice wpa_supplicant[1187]: Set new config for phy phy1
Fri Jan 12 01:52:23 2024 daemon.notice wpa_supplicant[1187]: Remove interface 2g_sta
Fri Jan 12 01:52:23 2024 daemon.notice wpa_supplicant[1187]: 2g_sta: CTRL-EVENT-DISCONNECTED bssid=22:b8:2b:30:96:df reason=3 locally_generated=1
Fri Jan 12 01:52:23 2024 daemon.notice wpa_supplicant[1187]: 2g_sta: CTRL-EVENT-DSCP-POLICY clear_all
Fri Jan 12 01:52:23 2024 daemon.notice wpa_supplicant[1187]: 2g_sta: CTRL-EVENT-DSCP-POLICY clear_all
Fri Jan 12 01:52:23 2024 daemon.notice wpa_supplicant[1187]: nl80211: deinit ifname=2g_sta disabled_11b_rates=0
Fri Jan 12 01:52:23 2024 daemon.notice netifd: Interface 'wwan' is disabled
Fri Jan 12 01:52:53 2024 kern.info kernel: [ 6564.758087] br-lan: port 2(2g_f) entered disabled state
Fri Jan 12 01:52:53 2024 kern.info kernel: [ 6564.765217] device 2g_f left promiscuous mode
Fri Jan 12 01:52:53 2024 kern.info kernel: [ 6564.769869] br-lan: port 2(2g_f) entered disabled state
Fri Jan 12 01:52:53 2024 daemon.notice netifd: Network device '2g_f' link is down
Fri Jan 12 01:52:53 2024 daemon.notice netifd: Wireless device 'radio1' is now down
Fri Jan 12 01:52:54 2024 daemon.notice netifd: radio1 (4975): WARNING: Variable 'data' does not exist or is not an array/object
Fri Jan 12 01:53:26 2024 daemon.notice netifd: radio1 (4975): Command failed: ubus call hostapd config_set { "phy": "phy1", "config": "", "prev_config": "/var/run/hostapd-phy1.conf" } (Request timed out)
Fri Jan 12 01:53:26 2024 daemon.notice wpa_supplicant[1187]: Set new config for phy phy1
Fri Jan 12 01:53:57 2024 daemon.notice wpa_supplicant[1187]: Set new config for phy phy1
Fri Jan 12 01:54:27 2024 daemon.notice netifd: radio1 (4975): Command failed: ubus call hostapd config_set { "phy": "phy1", "config":"/var/run/hostapd-phy1.conf", "prev_config": "/var/run/hostapd-phy1.conf.prev"} (Request timed out)
Fri Jan 12 01:54:27 2024 daemon.notice netifd: radio1 (4975): Device setup failed: HOSTAPD_START_FAILED
Fri Jan 12 01:54:28 2024 daemon.notice netifd: Wireless device 'radio1' set retry=0
Fri Jan 12 01:54:28 2024 daemon.notice wpa_supplicant[1187]: Set new config for phy phy1
Fri Jan 12 01:55:03 2024 daemon.notice netifd: Wireless device 'radio1' is now up
Fri Jan 12 01:55:04 2024 daemon.notice netifd: Interface 'wwan' is enabled
Fri Jan 12 01:55:05 2024 daemon.notice wpa_supplicant[1187]: 2g_sta: SME: Trying to authenticate with 22:b8:2b:30:96:df (SSID='TeleCentro Wifi' freq=2437 MHz)
Fri Jan 12 01:55:35 2024 kern.info kernel: [ 6726.456290] 2g_sta: authenticate with 22:b8:2b:30:96:df
Fri Jan 12 01:55:35 2024 kern.info kernel: [ 6726.461847] 2g_sta: 80 MHz not supported, disabling VHT
Fri Jan 12 01:55:35 2024 kern.info kernel: [ 6726.481310] 2g_sta: send auth to 22:b8:2b:30:96:df (try 1/3)
Fri Jan 12 01:55:35 2024 daemon.notice wpa_supplicant[1187]: 2g_sta: Trying to associate with 22:b8:2b:30:96:df (SSID='TeleCentro Wifi' freq=2437 MHz)
Fri Jan 12 01:55:35 2024 kern.info kernel: [ 6726.492714] 2g_sta: authenticated
Fri Jan 12 01:55:35 2024 kern.info kernel: [ 6726.499288] 2g_sta: associate with 22:b8:2b:30:96:df (try 1/3)
Fri Jan 12 01:55:35 2024 kern.info kernel: [ 6726.510480] 2g_sta: RX AssocResp from 22:b8:2b:30:96:df (capab=0x401 status=0 aid=39)
Fri Jan 12 01:55:35 2024 kern.info kernel: [ 6726.518825] 2g_sta: associated
Fri Jan 12 01:55:35 2024 daemon.notice wpa_supplicant[1187]: 2g_sta: Associated with 22:b8:2b:30:96:df
Fri Jan 12 01:55:35 2024 daemon.notice wpa_supplicant[1187]: 2g_sta: CTRL-EVENT-CONNECTED - Connection to 22:b8:2b:30:96:df completed [id=1 id_str=]
Fri Jan 12 01:55:35 2024 daemon.notice netifd: Network device '2g_sta' link is up
Fri Jan 12 01:55:35 2024 daemon.notice netifd: Interface 'wwan' has link connectivity
Fri Jan 12 01:55:35 2024 daemon.notice netifd: Interface 'wwan' is setting up now
Fri Jan 12 01:55:35 2024 daemon.notice netifd: wwan (5108): udhcpc: started, v1.36.1
Fri Jan 12 01:55:36 2024 daemon.notice netifd: wwan (5108): udhcpc: broadcasting discover
Fri Jan 12 01:55:36 2024 daemon.notice netifd: wwan (5108): udhcpc: broadcasting select for 10.195.220.152, server 10.192.0.1
Fri Jan 12 01:55:36 2024 daemon.notice netifd: wwan (5108): udhcpc: lease of 10.195.220.152 obtained from 10.192.0.1, lease time 300
Fri Jan 12 01:55:36 2024 daemon.notice netifd: Interface 'wwan' is now up
Fri Jan 12 01:55:37 2024 user.notice firewall: Reloading firewall due to ifup of wwan (2g_sta)
Fri Jan 12 01:56:05 2024 daemon.notice wpa_supplicant[1187]: 2g_sta: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Fri Jan 12 01:56:05 2024 kern.info kernel: [ 6756.551556] IPv6: ADDRCONF(NETDEV_CHANGE): 2g_sta: link becomes ready
Fri Jan 12 01:58:06 2024 daemon.notice netifd: wwan (5108): udhcpc: sending renew to server 10.192.0.1

@nbd168
Copy link
Member Author

@nbd168 nbd168 commented on b7f9742 Jan 12, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@castillofrancodamian could you please send me your /etc/config/wireless and the generated /var/run/hostapd-*.conf

@castillofrancodamian
Copy link

@castillofrancodamian castillofrancodamian commented on b7f9742 Jan 12, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nbd168 File before errors

config wifi-device 'radio0'
	option type 'mac80211'
	option path 'pci0000:00/0000:00:00.0'
	option band '5g'
	option cell_density '0'
	option channel '36'
	option htmode 'VHT80'
	option country 'AR'

config wifi-device 'radio1'
	option type 'mac80211'
	option path 'platform/ahb/18100000.wmac'
	option band '2g'
	option htmode 'HT20'
	option cell_density '0'
	option channel '11'
	option country 'AR'

config wifi-iface '5g_invitados'
	option device 'radio0'
	option mode 'ap'
	option ssid 'Invitados'
	option encryption 'psk2+ccmp'
	option ifname '5g_invitados'
	option key 'pass'
	option network 'wan'

config wifi-iface '2g_invitados'
	option device 'radio1'
	option mode 'ap'
	option ssid 'Invitados'
	option encryption 'psk2+ccmp'
	option ifname '2g_invitados'
	option key 'pass'
	option network 'wan'

config wifi-iface '2g_f'
	option device 'radio1'
	option mode 'ap'
	option ssid 'F'
	option encryption 'psk2+ccmp'
	option ifname '2g_f'
	option key 'pass'
	option network 'lan'

root@archer_c60:~# /var/run/hostapd-*.conf
-ash: /var/run/hostapd-phy0.conf: Permission denied
root@archer_c60:~# cat /var/run/hostapd-*.conf
driver=nl80211
logger_syslog=127
logger_syslog_level=2
logger_stdout=127
logger_stdout_level=2
country_code=AR
ieee80211d=1
ieee80211h=1
hw_mode=a
beacon_int=100
channel=36
chanlist=36

tx_queue_data2_burst=2.0

#num_global_macaddr=1
ieee80211n=1
ht_coex=0
ht_capab=[HT40+][LDPC][SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][MAX-AMSDU-7935][DSSS_CCK-40]
ieee80211ac=1
vht_oper_chwidth=1
vht_oper_centr_freq_seg0_idx=42
vht_capab=[RXLDPC][SHORT-GI-80][TX-STBC-2BY1][SU-BEAMFORMER][SU-BEAMFORMEE][MU-BEAMFORMER][MU-BEAMFORMEE][RX-ANTENNA-PATTERN][TX-ANTENNA-PATTERN][RX-STBC-1][SOUNDING-DIMENSION-2][BF-ANTENNA-4][MAX-MPDU-11454][MAX-A-MPDU-LEN-EXP7]

interface=5g_invitados
ctrl_interface=/var/run/hostapd
ap_isolate=1
bss_load_update_period=60
chan_util_avg_period=600
disassoc_low_ack=1
skip_inactivity_poll=0
preamble=1
wmm_enabled=1
ignore_broadcast_ssid=0
uapsd_advertisement_enabled=1
utf8_ssid=1
multi_ap=0
wpa_passphrase=pass
wpa_psk_file=/var/run/hostapd-5g_invitados.psk
auth_algs=1
wpa=2
wpa_pairwise=CCMP
ssid=Invitados
bridge=br-wan
wds_bridge=
snoop_iface=br-wan
wpa_disable_eapol_key_retries=0
wpa_key_mgmt=WPA-PSK
okc=0
disable_pmksa_caching=1
dynamic_vlan=0
vlan_naming=1
vlan_no_bridge=1
vlan_file=/var/run/hostapd-5g_invitados.vlan
qos_map_set=0,0,2,16,1,1,255,255,18,22,24,38,40,40,44,46,48,56
bssid=50:c7:bf:75:81:af
#default_macaddr


driver=nl80211
logger_syslog=127
logger_syslog_level=2
logger_stdout=127
logger_stdout_level=2
country_code=AR
ieee80211d=1
hw_mode=g
supported_rates=60 90 120 180 240 360 480 540
basic_rates=60 120 240
beacon_int=100
channel=11
chanlist=11



#num_global_macaddr=1
ieee80211n=1
ht_coex=0
ht_capab=[SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][DSSS_CCK-40]

interface=2g_invitados
ctrl_interface=/var/run/hostapd
ap_isolate=1
bss_load_update_period=60
chan_util_avg_period=600
disassoc_low_ack=1
skip_inactivity_poll=0
preamble=1
wmm_enabled=1
ignore_broadcast_ssid=0
uapsd_advertisement_enabled=1
utf8_ssid=1
multi_ap=0
wpa_passphrase=pass
wpa_psk_file=/var/run/hostapd-2g_invitados.psk
auth_algs=1
wpa=2
wpa_pairwise=CCMP
ssid=Invitados
bridge=br-wan
wds_bridge=
snoop_iface=br-wan
wpa_disable_eapol_key_retries=0
wpa_key_mgmt=WPA-PSK
okc=0
disable_pmksa_caching=1
dynamic_vlan=0
vlan_naming=1
vlan_no_bridge=1
vlan_file=/var/run/hostapd-2g_invitados.vlan
qos_map_set=0,0,2,16,1,1,255,255,18,22,24,38,40,40,44,46,48,56
bssid=50:c7:bf:75:81:b0
#default_macaddr


bss=2g_f
ctrl_interface=/var/run/hostapd
ap_isolate=1
bss_load_update_period=60
chan_util_avg_period=600
disassoc_low_ack=1
skip_inactivity_poll=0
preamble=1
wmm_enabled=1
ignore_broadcast_ssid=0
uapsd_advertisement_enabled=1
utf8_ssid=1
multi_ap=0
wpa_passphrase=pass
wpa_psk_file=/var/run/hostapd-2g_f.psk
auth_algs=1
wpa=2
wpa_pairwise=CCMP
ssid=F
bridge=br-lan
wds_bridge=
snoop_iface=br-lan
wpa_disable_eapol_key_retries=0
wpa_key_mgmt=WPA-PSK
okc=0
disable_pmksa_caching=1
dynamic_vlan=0
vlan_naming=1
vlan_no_bridge=1
vlan_file=/var/run/hostapd-2g_f.vlan
qos_map_set=0,0,2,16,1,1,255,255,18,22,24,38,40,40,44,46,48,56
bssid=52:c7:bf:75:81:b0
#default_macaddr
Fri Jan 12 14:26:18 2024 kern.notice kernel: [    0.000000] Linux version 5.15.146 (franco@pc) (mips-openwrt-linux-musl-gcc (OpenWrt GCC 12.3.0 r24801-b7f9742da8) 12.3.0, GNU ld (GNU Binutils) 2.40.0) #0 Thu Jan 11 09:40:43 2024
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000000] printk: bootconsole [early0] enabled
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000000] CPU0 revision is: 00019750 (MIPS 74Kc)
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000000] MIPS: machine is TP-Link Archer C60 v1
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000000] SoC: Qualcomm Atheros QCA956X ver 1 rev 0
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000000] Initrd not found or empty - disabling initrd
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000000] Primary instruction cache 64kB, VIPT, 4-way, linesize 32 bytes.
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000000] Primary data cache 32kB, 4-way, VIPT, cache aliases, linesize 32 bytes
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000000] Zone ranges:
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000000]   Normal   [mem 0x0000000000000000-0x0000000003ffffff]
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000000] Movable zone start for each node
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000000] Early memory node ranges
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000000]   node   0: [mem 0x0000000000000000-0x0000000003ffffff]
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000003ffffff]
Fri Jan 12 14:26:18 2024 kern.debug kernel: [    0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768
Fri Jan 12 14:26:18 2024 kern.debug kernel: [    0.000000] pcpu-alloc: [0] 0
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 16240
Fri Jan 12 14:26:18 2024 kern.notice kernel: [    0.000000] Kernel command line: console=ttyS0,115200n8 rootfstype=squashfs,jffs2
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000000] Dentry cache hash table entries: 8192 (order: 3, 32768 bytes, linear)
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000000] Inode-cache hash table entries: 4096 (order: 2, 16384 bytes, linear)
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000000] Writing ErrCtl register=00000000
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000000] Readback ErrCtl register=00000000
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000000] Memory: 55920K/65536K available (5661K kernel code, 590K rwdata, 1244K rodata, 1200K init, 206K bss, 9616K reserved, 0K cma-reserved)
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000000] NR_IRQS: 51
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000000] CPU clock: 775.000 MHz
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000000] clocksource: MIPS: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 4932285024 ns
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.000001] sched_clock: 32 bits at 387MHz, resolution 2ns, wraps every 5541893118ns
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.008278] Calibrating delay loop... 385.84 BogoMIPS (lpj=1929216)
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.074816] pid_max: default: 32768 minimum: 301
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.080513] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.088251] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.102210] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.112633] futex hash table entries: 256 (order: -1, 3072 bytes, linear)
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.119989] pinctrl core: initialized pinctrl subsystem
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.126980] NET: Registered PF_NETLINK/PF_ROUTE protocol family
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.149323] clocksource: Switched to clocksource MIPS
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.155888] NET: Registered PF_INET protocol family
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.161276] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear)
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.169610] tcp_listen_portaddr_hash hash table entries: 1024 (order: 0, 4096 bytes, linear)
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.178553] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.186765] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear)
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.194865] TCP bind hash table entries: 1024 (order: 0, 4096 bytes, linear)
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.202317] TCP: Hash tables configured (established 1024 bind 1024)
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.209156] UDP hash table entries: 256 (order: 0, 4096 bytes, linear)
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.216112] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes, linear)
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.223848] NET: Registered PF_UNIX/PF_LOCAL protocol family
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.229899] PCI: CLS 0 bytes, default 32
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.237273] workingset: timestamp_bits=14 max_order=14 bucket_order=0
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.248604] squashfs: version 4.0 (2009/01/31) Phillip Lougher
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.254823] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc.
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.269068] pinctrl-single 1804002c.pinmux: 544 pins, size 68
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.276326] Serial: 8250/16550 driver, 1 ports, IRQ sharing disabled
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.283774] printk: console [ttyS0] disabled
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.288341] 18020000.uart: ttyS0 at MMIO 0x18020000 (irq = 9, base_baud = 1562500) is a 16550A
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.297497] printk: console [ttyS0] enabled
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.306561] printk: bootconsole [early0] disabled
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.328542] spi-nor spi0.0: gd25q64 (8192 Kbytes)
Fri Jan 12 14:26:18 2024 kern.notice kernel: [    0.333518] 5 fixed-partitions partitions found on MTD device spi0.0
Fri Jan 12 14:26:18 2024 kern.err kernel: [    0.340142] OF: Bad cell count for /ahb/spi@1f000000/flash@0/partitions
Fri Jan 12 14:26:18 2024 kern.err kernel: [    0.347002] OF: Bad cell count for /ahb/spi@1f000000/flash@0/partitions
Fri Jan 12 14:26:18 2024 kern.notice kernel: [    0.354101] Creating 5 MTD partitions on "spi0.0":
Fri Jan 12 14:26:18 2024 kern.notice kernel: [    0.359061] 0x000000000000-0x000000010000 : "u-boot"
Fri Jan 12 14:26:18 2024 kern.notice kernel: [    0.368195] 0x000000010000-0x000000020000 : "info"
Fri Jan 12 14:26:18 2024 kern.err kernel: [    0.374297] OF: Bad cell count for /ahb/spi@1f000000/flash@0/partitions
Fri Jan 12 14:26:18 2024 kern.notice kernel: [    0.381472] 0x000000020000-0x0000007e0000 : "firmware"
Fri Jan 12 14:26:18 2024 kern.notice kernel: [    0.389847] 2 uimage-fw partitions found on MTD device firmware
Fri Jan 12 14:26:18 2024 kern.notice kernel: [    0.395982] Creating 2 MTD partitions on "firmware":
Fri Jan 12 14:26:18 2024 kern.notice kernel: [    0.401165] 0x000000000000-0x000000234da3 : "kernel"
Fri Jan 12 14:26:18 2024 kern.warn kernel: [    0.406292] mtd: partition "kernel" doesn't end on an erase/write block -- force read-only
Fri Jan 12 14:26:18 2024 kern.notice kernel: [    0.416605] 0x000000234da3-0x0000007c0000 : "rootfs"
Fri Jan 12 14:26:18 2024 kern.warn kernel: [    0.421806] mtd: partition "rootfs" doesn't start on an erase/write block boundary -- force read-only
Fri Jan 12 14:26:18 2024 kern.info kernel: [    0.432297] mtd: setting mtd4 (rootfs) as root device
Fri Jan 12 14:26:18 2024 kern.notice kernel: [    0.438391] 1 squashfs-split partitions found on MTD device rootfs
Fri Jan 12 14:26:18 2024 kern.notice kernel: [    0.444845] 0x000000730000-0x0000007c0000 : "rootfs_data"
Fri Jan 12 14:26:18 2024 kern.notice kernel: [    0.451430] 0x0000007e0000-0x0000007f0000 : "tplink"
Fri Jan 12 14:26:18 2024 kern.notice kernel: [    0.459028] 0x0000007f0000-0x000000800000 : "art"
Fri Jan 12 14:26:18 2024 kern.err kernel: [    0.850412] ag71xx 19000000.eth: Could not connect to PHY device. Deferring probe.
Fri Jan 12 14:26:18 2024 kern.info kernel: [    1.537016] switch0: Atheros AR8229 rev. 1 switch registered on mdio.0
Fri Jan 12 14:26:18 2024 kern.info kernel: [    1.605698] ag71xx 1a000000.eth: connected to PHY at fixed-0:00 [uid=00000000, driver=Generic PHY]
Fri Jan 12 14:26:18 2024 kern.info kernel: [    1.615597] eth0: Atheros AG71xx at 0xba000000, irq 5, mode: gmii
Fri Jan 12 14:26:18 2024 kern.info kernel: [    1.622249] i2c_dev: i2c /dev entries driver
Fri Jan 12 14:26:18 2024 kern.info kernel: [    1.629474] NET: Registered PF_INET6 protocol family
Fri Jan 12 14:26:18 2024 kern.info kernel: [    1.644856] Segment Routing with IPv6
Fri Jan 12 14:26:18 2024 kern.info kernel: [    1.648724] In-situ OAM (IOAM) with IPv6
Fri Jan 12 14:26:18 2024 kern.info kernel: [    1.652967] NET: Registered PF_PACKET protocol family
Fri Jan 12 14:26:18 2024 kern.info kernel: [    1.658267] 8021q: 802.1Q VLAN Support v1.8
Fri Jan 12 14:26:18 2024 kern.info kernel: [    1.663801] PCI host bridge to bus 0000:00
Fri Jan 12 14:26:18 2024 kern.info kernel: [    1.668054] pci_bus 0000:00: root bus resource [mem 0x12000000-0x13ffffff]
Fri Jan 12 14:26:18 2024 kern.info kernel: [    1.675212] pci_bus 0000:00: root bus resource [io  0x0000]
Fri Jan 12 14:26:18 2024 kern.info kernel: [    1.680983] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff]
Fri Jan 12 14:26:18 2024 kern.info kernel: [    1.689206] pci 0000:00:00.0: [168c:0056] type 00 class 0x028000
Fri Jan 12 14:26:18 2024 kern.info kernel: [    1.695460] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x001fffff 64bit]
Fri Jan 12 14:26:18 2024 kern.info kernel: [    1.702645] pci 0000:00:00.0: PME# supported from D0 D3hot
Fri Jan 12 14:26:18 2024 kern.info kernel: [    1.709230] pci_bus 0000:00: busn_res: [bus 00-ff] end is updated to 00
Fri Jan 12 14:26:18 2024 kern.info kernel: [    1.716129] pci 0000:00:00.0: BAR 0: assigned [mem 0x12000000-0x121fffff 64bit]
Fri Jan 12 14:26:18 2024 kern.info kernel: [    2.062866] ag71xx 19000000.eth: connected to PHY at mdio.0:1f:04 [uid=004dd042, driver=Generic PHY]
Fri Jan 12 14:26:18 2024 kern.info kernel: [    2.073182] eth1: Atheros AG71xx at 0xb9000000, irq 4, mode: mii
Fri Jan 12 14:26:18 2024 kern.info kernel: [    2.088979] VFS: Mounted root (squashfs filesystem) readonly on device 31:4.
Fri Jan 12 14:26:18 2024 kern.info kernel: [    2.102786] Freeing unused kernel image (initmem) memory: 1200K
Fri Jan 12 14:26:18 2024 kern.warn kernel: [    2.108908] This architecture does not have kernel memory protection.
Fri Jan 12 14:26:18 2024 kern.info kernel: [    2.115597] Run /sbin/init as init process
Fri Jan 12 14:26:18 2024 kern.debug kernel: [    2.119841]   with arguments:
Fri Jan 12 14:26:18 2024 kern.debug kernel: [    2.119845]     /sbin/init
Fri Jan 12 14:26:18 2024 kern.debug kernel: [    2.119850]   with environment:
Fri Jan 12 14:26:18 2024 kern.debug kernel: [    2.119854]     HOME=/
Fri Jan 12 14:26:18 2024 kern.debug kernel: [    2.119858]     TERM=linux
Fri Jan 12 14:26:18 2024 user.info kernel: [    2.845063] init: Console is alive
Fri Jan 12 14:26:18 2024 user.info kernel: [    2.849065] init: - watchdog -
Fri Jan 12 14:26:18 2024 user.info kernel: [    4.233790] kmodloader: loading kernel modules from /etc/modules-boot.d/*
Fri Jan 12 14:26:18 2024 user.info kernel: [    4.313912] kmodloader: done loading kernel modules from /etc/modules-boot.d/*
Fri Jan 12 14:26:18 2024 user.info kernel: [    4.331931] init: - preinit -
Fri Jan 12 14:26:18 2024 kern.notice kernel: [    5.428263] random: jshn: uninitialized urandom read (4 bytes read)
Fri Jan 12 14:26:18 2024 kern.notice kernel: [    5.673687] random: jshn: uninitialized urandom read (4 bytes read)
Fri Jan 12 14:26:18 2024 kern.notice kernel: [    5.814829] random: jshn: uninitialized urandom read (4 bytes read)
Fri Jan 12 14:26:18 2024 kern.info kernel: [    6.473349] eth0: link up (1000Mbps/Full duplex)
Fri Jan 12 14:26:18 2024 kern.info kernel: [    6.478165] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Fri Jan 12 14:26:18 2024 kern.info kernel: [    6.497364] IPv6: ADDRCONF(NETDEV_CHANGE): eth0.1: link becomes ready
Fri Jan 12 14:26:18 2024 kern.notice kernel: [    6.519888] random: procd: uninitialized urandom read (4 bytes read)
Fri Jan 12 14:26:18 2024 kern.notice kernel: [    8.792911] jffs2: notice: (388) jffs2_build_xattr_subsystem: complete building xattr subsystem, 19 of xdatum (10 unchecked, 9 orphan) and 24 of xref (9 dead, 0 orphan) found.
Fri Jan 12 14:26:18 2024 user.info kernel: [    8.811676] mount_root: switching to jffs2 overlay
Fri Jan 12 14:26:18 2024 kern.warn kernel: [    8.823040] overlayfs: upper fs does not support tmpfile.
Fri Jan 12 14:26:18 2024 user.warn kernel: [    8.835489] urandom-seed: Seeding with /etc/urandom.seed
Fri Jan 12 14:26:18 2024 kern.info kernel: [    8.933638] eth0: link down
Fri Jan 12 14:26:18 2024 user.info kernel: [    8.966853] procd: - early -
Fri Jan 12 14:26:18 2024 user.info kernel: [    8.970246] procd: - watchdog -
Fri Jan 12 14:26:18 2024 user.info kernel: [    9.665410] procd: - watchdog -
Fri Jan 12 14:26:18 2024 user.info kernel: [    9.670322] procd: - ubus -
Fri Jan 12 14:26:18 2024 kern.notice kernel: [    9.756277] random: ubusd: uninitialized urandom read (4 bytes read)
Fri Jan 12 14:26:18 2024 kern.notice kernel: [    9.766012] random: ubusd: uninitialized urandom read (4 bytes read)
Fri Jan 12 14:26:18 2024 kern.notice kernel: [    9.773002] random: ubusd: uninitialized urandom read (4 bytes read)
Fri Jan 12 14:26:18 2024 user.info kernel: [    9.784864] procd: - init -
Fri Jan 12 14:26:18 2024 user.info kernel: [   10.730245] kmodloader: loading kernel modules from /etc/modules.d/*
Fri Jan 12 14:26:18 2024 kern.info kernel: [   11.182108] Loading modules backported from Linux version v6.5-0-g2dde18cd1d8f
Fri Jan 12 14:26:18 2024 kern.info kernel: [   11.189650] Backport generated by backports.git v5.15.92-1-56-g5fb2ccb6b9e8
Fri Jan 12 14:26:18 2024 kern.info kernel: [   11.730070] ath10k_pci 0000:00:00.0: enabling device (0000 -> 0002)
Fri Jan 12 14:26:18 2024 kern.info kernel: [   11.736839] ath10k_pci 0000:00:00.0: pci irq legacy oper_irq_mode 1 irq_mode 0 reset_mode 0
Fri Jan 12 14:26:18 2024 user.info kernel: [   12.674871] urngd: v1.0.2 started.
Fri Jan 12 14:26:18 2024 kern.info kernel: [   14.060371] ath10k_pci 0000:00:00.0: qca9888 hw2.0 target 0x01000000 chip_id 0x00000000 sub 0000:0000
Fri Jan 12 14:26:18 2024 kern.info kernel: [   14.069949] ath10k_pci 0000:00:00.0: kconfig debug 0 debugfs 1 tracing 0 dfs 1 testmode 0
Fri Jan 12 14:26:18 2024 kern.info kernel: [   14.090214] ath10k_pci 0000:00:00.0: firmware ver 10.4-3.9.0.2-00157 api 5 features no-p2p,mfp,peer-flow-ctrl,allows-mesh-bcast,no-ps,iram-recovery crc32 812c4602
Fri Jan 12 14:26:18 2024 kern.err kernel: [   14.600724] ath10k_pci 0000:00:00.0: failed to fetch board data for bus=pci,bmi-chip-id=0,bmi-board-id=20 from ath10k/QCA9888/hw2.0/board-2.bin
Fri Jan 12 14:26:18 2024 kern.notice kernel: [   14.949653] random: crng init done
Fri Jan 12 14:26:18 2024 kern.notice kernel: [   14.953184] random: 27 urandom warning(s) missed due to ratelimiting
Fri Jan 12 14:26:18 2024 kern.info kernel: [   15.058774] ath10k_pci 0000:00:00.0: board_file api 1 bmi_id 0:20 crc32 8971a1b4
Fri Jan 12 14:26:18 2024 kern.info kernel: [   17.048150] ath10k_pci 0000:00:00.0: htt-ver 2.2 wmi-op 6 htt-op 4 cal pre-cal-file max-sta 512 raw 0 hwcrypto 1
Fri Jan 12 14:26:18 2024 kern.debug kernel: [   17.150594] ath: EEPROM regdomain: 0x0
Fri Jan 12 14:26:18 2024 kern.debug kernel: [   17.150615] ath: EEPROM indicates default country code should be used
Fri Jan 12 14:26:18 2024 kern.debug kernel: [   17.150620] ath: doing EEPROM country->regdmn map search
Fri Jan 12 14:26:18 2024 kern.debug kernel: [   17.150634] ath: country maps to regdmn code: 0x3a
Fri Jan 12 14:26:18 2024 kern.debug kernel: [   17.150641] ath: Country alpha2 being used: US
Fri Jan 12 14:26:18 2024 kern.debug kernel: [   17.150647] ath: Regpair used: 0x3a
Fri Jan 12 14:26:18 2024 kern.info kernel: [   17.208651] batman_adv: B.A.T.M.A.N. advanced 2023.3-openwrt-3 (compatibility version 15) loaded
Fri Jan 12 14:26:18 2024 kern.debug kernel: [   17.265078] ath: EEPROM regdomain: 0x0
Fri Jan 12 14:26:18 2024 kern.debug kernel: [   17.265101] ath: EEPROM indicates default country code should be used
Fri Jan 12 14:26:18 2024 kern.debug kernel: [   17.265106] ath: doing EEPROM country->regdmn map search
Fri Jan 12 14:26:18 2024 kern.debug kernel: [   17.265120] ath: country maps to regdmn code: 0x3a
Fri Jan 12 14:26:18 2024 kern.debug kernel: [   17.265127] ath: Country alpha2 being used: US
Fri Jan 12 14:26:18 2024 kern.debug kernel: [   17.265133] ath: Regpair used: 0x3a
Fri Jan 12 14:26:18 2024 kern.debug kernel: [   17.277023] ieee80211 phy1: Selected rate control algorithm 'minstrel_ht'
Fri Jan 12 14:26:18 2024 kern.info kernel: [   17.277915] ieee80211 phy1: Atheros AR9561 Rev:0 mem=0xb8100000, irq=2
Fri Jan 12 14:26:18 2024 user.info kernel: [   17.315697] kmodloader: done loading kernel modules from /etc/modules.d/*
Fri Jan 12 14:26:20 2024 daemon.info dnsmasq[1018]: started, version 2.89 cachesize 150
Fri Jan 12 14:26:20 2024 daemon.info dnsmasq[1018]: DNS service limited to local subnets
Fri Jan 12 14:26:20 2024 daemon.info dnsmasq[1018]: compile time options: IPv6 GNU-getopt no-DBus UBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-nftset no-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile
Fri Jan 12 14:26:20 2024 daemon.info dnsmasq[1018]: UBus support enabled: connected to system bus
Fri Jan 12 14:26:20 2024 daemon.info dnsmasq[1018]: using nameserver 192.168.50.2#5300
Fri Jan 12 14:26:20 2024 daemon.info dnsmasq[1018]: using only locally-known addresses for test
Fri Jan 12 14:26:20 2024 daemon.info dnsmasq[1018]: using only locally-known addresses for onion
Fri Jan 12 14:26:20 2024 daemon.info dnsmasq[1018]: using only locally-known addresses for localhost
Fri Jan 12 14:26:20 2024 daemon.info dnsmasq[1018]: using only locally-known addresses for local
Fri Jan 12 14:26:20 2024 daemon.info dnsmasq[1018]: using only locally-known addresses for invalid
Fri Jan 12 14:26:20 2024 daemon.info dnsmasq[1018]: using only locally-known addresses for bind
Fri Jan 12 14:26:20 2024 daemon.info dnsmasq[1018]: using only locally-known addresses for lan
Fri Jan 12 14:26:20 2024 daemon.warn dnsmasq[1018]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Fri Jan 12 14:26:20 2024 daemon.info dnsmasq[1018]: read /etc/hosts - 12 names
Fri Jan 12 14:26:20 2024 daemon.info dnsmasq[1018]: read /tmp/hosts/dhcp.cfg01411c - 0 names
Fri Jan 12 14:26:21 2024 authpriv.info dropbear[1082]: Not backgrounding
Fri Jan 12 14:26:25 2024 daemon.notice wpa_supplicant[1187]: Successfully initialized wpa_supplicant
Fri Jan 12 14:26:25 2024 user.notice : Added device handler type: bonding
Fri Jan 12 14:26:25 2024 user.notice : Added device handler type: 8021ad
Fri Jan 12 14:26:25 2024 user.notice : Added device handler type: 8021q
Fri Jan 12 14:26:25 2024 user.notice : Added device handler type: macvlan
Fri Jan 12 14:26:25 2024 user.notice : Added device handler type: veth
Fri Jan 12 14:26:25 2024 user.notice : Added device handler type: bridge
Fri Jan 12 14:26:25 2024 user.notice : Added device handler type: Network device
Fri Jan 12 14:26:25 2024 user.notice : Added device handler type: tunnel
Fri Jan 12 14:26:29 2024 user.notice ucitrack: Setting up /etc/config/dhcp reload dependency on /etc/config/network
Fri Jan 12 14:26:29 2024 user.notice ucitrack: Setting up /etc/config/network reload dependency on /etc/config/wireless
Fri Jan 12 14:26:30 2024 user.notice ucitrack: Setting up /etc/config/luci-splash reload dependency on /etc/config/firewall
Fri Jan 12 14:26:30 2024 user.notice ucitrack: Setting up /etc/config/qos reload dependency on /etc/config/firewall
Fri Jan 12 14:26:30 2024 user.notice ucitrack: Setting up /etc/config/miniupnpd reload dependency on /etc/config/firewall
Fri Jan 12 14:26:30 2024 user.notice ucitrack: Setting up /etc/config/odhcpd reload dependency on /etc/config/dhcp
Fri Jan 12 14:26:30 2024 user.notice ucitrack: Setting up non-init /etc/config/fstab reload handler: /sbin/block mount
Fri Jan 12 14:26:31 2024 user.notice ucitrack: Setting up /etc/config/system reload trigger for non-procd /etc/init.d/led
Fri Jan 12 14:26:31 2024 user.notice ucitrack: Setting up /etc/config/luci_statistics reload dependency on /etc/config/system
Fri Jan 12 14:26:31 2024 user.notice ucitrack: Setting up /etc/config/dhcp reload dependency on /etc/config/system
Fri Jan 12 14:26:32 2024 daemon.notice procd: /etc/rc.d/S96led: setting up led LAN
Fri Jan 12 14:26:32 2024 daemon.notice procd: /etc/rc.d/S96led: setting up led WAN
Fri Jan 12 14:26:33 2024 daemon.warn netifd: You have delegated IPv6-prefixes but haven't assigned them to any interface. Did you forget to set option ip6assign on your lan-interfaces?
Fri Jan 12 14:26:33 2024 kern.info kernel: [   36.239290] eth0: link up (1000Mbps/Full duplex)
Fri Jan 12 14:26:33 2024 kern.info kernel: [   36.260294] br-lan: port 1(eth0.1) entered blocking state
Fri Jan 12 14:26:33 2024 kern.info kernel: [   36.265929] br-lan: port 1(eth0.1) entered disabled state
Fri Jan 12 14:26:33 2024 kern.info kernel: [   36.271815] device eth0.1 entered promiscuous mode
Fri Jan 12 14:26:33 2024 kern.info kernel: [   36.276774] device eth0 entered promiscuous mode
Fri Jan 12 14:26:33 2024 kern.info kernel: [   36.282775] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Fri Jan 12 14:26:33 2024 kern.info kernel: [   36.304118] br-lan: port 1(eth0.1) entered blocking state
Fri Jan 12 14:26:33 2024 kern.info kernel: [   36.309772] br-lan: port 1(eth0.1) entered forwarding state
Fri Jan 12 14:26:33 2024 daemon.notice netifd: Interface 'lan' is enabled
Fri Jan 12 14:26:33 2024 daemon.notice netifd: Interface 'lan' is setting up now
Fri Jan 12 14:26:33 2024 daemon.notice netifd: Interface 'lan' is now up
Fri Jan 12 14:26:33 2024 daemon.notice netifd: bridge 'br-lan' link is up
Fri Jan 12 14:26:33 2024 daemon.notice netifd: Interface 'lan' has link connectivity
Fri Jan 12 14:26:33 2024 kern.info kernel: [   36.407685] br-wan: port 1(eth1) entered blocking state
Fri Jan 12 14:26:33 2024 kern.info kernel: [   36.413154] br-wan: port 1(eth1) entered disabled state
Fri Jan 12 14:26:33 2024 kern.info kernel: [   36.418815] device eth1 entered promiscuous mode
Fri Jan 12 14:26:33 2024 daemon.notice netifd: Interface 'wan' is enabled
Fri Jan 12 14:26:33 2024 daemon.notice netifd: Interface 'wan' is setting up now
Fri Jan 12 14:26:33 2024 daemon.notice netifd: Interface 'wan' is now up
Fri Jan 12 14:26:33 2024 daemon.notice netifd: VLAN 'eth0.1' link is up
Fri Jan 12 14:26:33 2024 daemon.notice netifd: Interface 'loopback' is enabled
Fri Jan 12 14:26:33 2024 daemon.notice netifd: Interface 'loopback' is setting up now
Fri Jan 12 14:26:33 2024 daemon.notice netifd: Interface 'loopback' is now up
Fri Jan 12 14:26:33 2024 daemon.notice netifd: bridge 'br-lan' link is down
Fri Jan 12 14:26:33 2024 daemon.notice netifd: Interface 'lan' has link connectivity loss
Fri Jan 12 14:26:33 2024 daemon.notice netifd: VLAN 'eth0.1' link is down
Fri Jan 12 14:26:33 2024 daemon.notice netifd: Network device 'eth0' link is up
Fri Jan 12 14:26:33 2024 daemon.notice netifd: VLAN 'eth0.1' link is up
Fri Jan 12 14:26:33 2024 daemon.notice netifd: bridge 'br-lan' link is up
Fri Jan 12 14:26:33 2024 daemon.notice netifd: Interface 'lan' has link connectivity
Fri Jan 12 14:26:33 2024 daemon.notice netifd: Network device 'lo' link is up
Fri Jan 12 14:26:33 2024 daemon.notice netifd: Interface 'loopback' has link connectivity
Fri Jan 12 14:26:34 2024 kern.info kernel: [   37.299409] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready
Fri Jan 12 14:26:34 2024 daemon.notice netifd: radio0 (1867): WARNING: Variable 'data' does not exist or is not an array/object
Fri Jan 12 14:26:34 2024 daemon.notice netifd: radio1 (1868): WARNING: Variable 'data' does not exist or is not an array/object
Fri Jan 12 14:26:35 2024 daemon.info procd: - init complete -
Fri Jan 12 14:26:35 2024 kern.info kernel: [   38.501154] eth1: link up (100Mbps/Full duplex)
Fri Jan 12 14:26:35 2024 kern.info kernel: [   38.505888] br-wan: port 1(eth1) entered blocking state
Fri Jan 12 14:26:35 2024 kern.info kernel: [   38.511345] br-wan: port 1(eth1) entered forwarding state
Fri Jan 12 14:26:35 2024 daemon.notice netifd: Network device 'eth1' link is up
Fri Jan 12 14:26:35 2024 daemon.notice netifd: bridge 'br-wan' link is up
Fri Jan 12 14:26:35 2024 daemon.notice netifd: Interface 'wan' has link connectivity
Fri Jan 12 14:26:35 2024 kern.info kernel: [   38.566407] IPv6: ADDRCONF(NETDEV_CHANGE): br-wan: link becomes ready
Fri Jan 12 14:26:35 2024 user.notice firewall: Reloading firewall due to ifup of lan (br-lan)
Fri Jan 12 14:26:36 2024 kern.debug kernel: [   39.184271] ath: EEPROM regdomain: 0x8020
Fri Jan 12 14:26:36 2024 kern.debug kernel: [   39.188445] ath: EEPROM indicates we should expect a country code
Fri Jan 12 14:26:36 2024 kern.debug kernel: [   39.194778] ath: doing EEPROM country->regdmn map search
Fri Jan 12 14:26:36 2024 kern.debug kernel: [   39.200266] ath: country maps to regdmn code: 0x3b
Fri Jan 12 14:26:36 2024 kern.debug kernel: [   39.205214] ath: Country alpha2 being used: AR
Fri Jan 12 14:26:36 2024 kern.debug kernel: [   39.209812] ath: Regpair used: 0x3b
Fri Jan 12 14:26:36 2024 kern.debug kernel: [   39.213412] ath: regdomain 0x8020 dynamically updated by user
Fri Jan 12 14:26:36 2024 kern.debug kernel: [   39.219435] ath: EEPROM regdomain: 0x8020
Fri Jan 12 14:26:36 2024 kern.debug kernel: [   39.223572] ath: EEPROM indicates we should expect a country code
Fri Jan 12 14:26:36 2024 kern.debug kernel: [   39.229881] ath: doing EEPROM country->regdmn map search
Fri Jan 12 14:26:36 2024 kern.debug kernel: [   39.235364] ath: country maps to regdmn code: 0x3b
Fri Jan 12 14:26:36 2024 kern.debug kernel: [   39.240322] ath: Country alpha2 being used: AR
Fri Jan 12 14:26:36 2024 kern.debug kernel: [   39.244906] ath: Regpair used: 0x3b
Fri Jan 12 14:26:36 2024 kern.debug kernel: [   39.248499] ath: regdomain 0x8020 dynamically updated by user
Fri Jan 12 14:26:37 2024 daemon.notice hostapd: Set new config for phy phy0:
Fri Jan 12 14:26:37 2024 daemon.notice wpa_supplicant[1187]: Set new config for phy phy0
Fri Jan 12 14:26:37 2024 daemon.notice hostapd: Set new config for phy phy1:
Fri Jan 12 14:26:37 2024 daemon.notice wpa_supplicant[1187]: Set new config for phy phy1
Fri Jan 12 14:27:29 2024 daemon.notice wpa_supplicant[1187]: Set new config for phy phy0
Fri Jan 12 14:27:30 2024 daemon.notice hostapd: Set new config for phy phy0: /var/run/hostapd-phy0.conf
Fri Jan 12 14:27:30 2024 daemon.notice hostapd: Restart interface for phy phy0
Fri Jan 12 14:27:30 2024 daemon.notice hostapd: Configuration file: data: driver=nl80211 logger_syslog=127 logger_syslog_level=2 logger_stdout=127 logger_stdout_level=2 country_code=AR ieee80211d=1 ieee80211h=1 hw_mode=a beacon_int=100 chanlist=36 tx_queue_data2_burst=2.0 #num_global_macaddr=1 ieee80211n=1 ht_coex=0 ht_capab=[HT40+][LDPC][SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][MAX-AMSDU-7935][DSSS_CCK-40] ieee80211ac=1 vht_oper_chwidth=1 vht_oper_centr_freq_seg0_idx=42 vht_capab=[RXLDPC][SHORT-GI-80][TX-STBC-2BY1][SU-BEAMFORMER][SU-BEAMFORMEE][MU-BEAMFORMER][MU-BEAMFORMEE][RX-ANTENNA-PATTERN][TX-ANTENNA-PATTERN][RX-STBC-1][SOUNDING-DIMENSION-2][BF-ANTENNA-4][MAX-MPDU-11454][MAX-A-MPDU-LEN-EXP7] channel=36  interface=5g_invitados bssid=50:c7:bf:75:81:af ctrl_interface=/var/run/hostapd ap_isolate=1 bss_load_update_period=60 chan_util_avg_period=600 disassoc_low_ack=1 skip_inactivity_poll=0 preamble=1 wmm_enabled=1 ignore_broadcast_ssid=0 uapsd_advertisement_enabled=1 utf8_ssid=1 multi_ap=0 wpa_passphrase=pass w
Fri Jan 12 14:27:30 2024 daemon.notice wpa_supplicant[1187]: Set new config for phy phy1
Fri Jan 12 14:27:31 2024 user.notice firewall: Reloading firewall due to ifup of wan (br-wan)
Fri Jan 12 14:27:31 2024 daemon.info dnsmasq[1018]: exiting on receipt of SIGTERM
Fri Jan 12 14:27:34 2024 kern.warn kernel: [   47.021320] ath10k_pci 0000:00:00.0: Unknown eventid: 36933
Fri Jan 12 14:27:34 2024 kern.info kernel: [   47.033936] br-wan: port 2(5g_invitados) entered blocking state
Fri Jan 12 14:27:34 2024 kern.info kernel: [   47.040137] br-wan: port 2(5g_invitados) entered disabled state
Fri Jan 12 14:27:34 2024 kern.info kernel: [   47.046519] device 5g_invitados entered promiscuous mode
Fri Jan 12 14:27:34 2024 kern.info kernel: [   47.052176] br-wan: port 2(5g_invitados) entered blocking state
Fri Jan 12 14:27:34 2024 kern.info kernel: [   47.058307] br-wan: port 2(5g_invitados) entered forwarding state
Fri Jan 12 14:27:34 2024 kern.info kernel: [   47.069448] br-wan: port 2(5g_invitados) entered disabled state
Fri Jan 12 14:27:34 2024 daemon.info dnsmasq[2354]: started, version 2.89 cachesize 150
Fri Jan 12 14:27:34 2024 daemon.info dnsmasq[2354]: DNS service limited to local subnets
Fri Jan 12 14:27:34 2024 daemon.info dnsmasq[2354]: compile time options: IPv6 GNU-getopt no-DBus UBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-nftset no-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile
Fri Jan 12 14:27:34 2024 daemon.info dnsmasq[2354]: UBus support enabled: connected to system bus
Fri Jan 12 14:27:34 2024 daemon.info dnsmasq-dhcp[2354]: DHCP, IP range 10.1.0.100 -- 10.1.0.249, lease time 2h
Fri Jan 12 14:27:34 2024 daemon.info dnsmasq[2354]: using nameserver 192.168.50.2#5300
Fri Jan 12 14:27:34 2024 daemon.info dnsmasq[2354]: using only locally-known addresses for test
Fri Jan 12 14:27:34 2024 daemon.info dnsmasq[2354]: using only locally-known addresses for onion
Fri Jan 12 14:27:34 2024 daemon.info dnsmasq[2354]: using only locally-known addresses for localhost
Fri Jan 12 14:27:34 2024 daemon.info dnsmasq[2354]: using only locally-known addresses for local
Fri Jan 12 14:27:34 2024 daemon.info dnsmasq[2354]: using only locally-known addresses for invalid
Fri Jan 12 14:27:34 2024 daemon.info dnsmasq[2354]: using only locally-known addresses for bind
Fri Jan 12 14:27:34 2024 daemon.info dnsmasq[2354]: using only locally-known addresses for lan
Fri Jan 12 14:27:34 2024 daemon.warn dnsmasq[2354]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Fri Jan 12 14:27:34 2024 daemon.info dnsmasq[2354]: read /etc/hosts - 12 names
Fri Jan 12 14:27:34 2024 daemon.info dnsmasq[2354]: read /tmp/hosts/dhcp.cfg01411c - 2 names
Fri Jan 12 14:27:34 2024 daemon.notice hostapd: 5g_invitados: interface state UNINITIALIZED->COUNTRY_UPDATE
Fri Jan 12 14:27:34 2024 daemon.notice hostapd: 5g_invitados: interface state COUNTRY_UPDATE->HT_SCAN
Fri Jan 12 14:27:34 2024 daemon.info dnsmasq-dhcp[2354]: read /etc/ethers - 0 addresses
Fri Jan 12 14:27:35 2024 daemon.notice hostapd: Set new config for phy phy1: /var/run/hostapd-phy1.conf
Fri Jan 12 14:27:35 2024 daemon.notice hostapd: Restart interface for phy phy1
Fri Jan 12 14:27:35 2024 daemon.notice netifd: Wireless device 'radio0' is now up
Fri Jan 12 14:27:36 2024 kern.info kernel: [   48.614476] IPv6: ADDRCONF(NETDEV_CHANGE): 5g_invitados: link becomes ready
Fri Jan 12 14:27:36 2024 kern.info kernel: [   48.621920] br-wan: port 2(5g_invitados) entered blocking state
Fri Jan 12 14:27:36 2024 kern.info kernel: [   48.628074] br-wan: port 2(5g_invitados) entered forwarding state
Fri Jan 12 14:27:36 2024 daemon.notice netifd: Network device '5g_invitados' link is up
Fri Jan 12 14:27:36 2024 daemon.notice hostapd: Configuration file: data: driver=nl80211 logger_syslog=127 logger_syslog_level=2 logger_stdout=127 logger_stdout_level=2 country_code=AR ieee80211d=1 hw_mode=g supported_rates=60 90 120 180 240 360 480 540 basic_rates=60 120 240 beacon_int=100 chanlist=11 #num_global_macaddr=1 ieee80211n=1 ht_coex=0 ht_capab=[SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][DSSS_CCK-40] channel=11  interface=2g_invitados bssid=50:c7:bf:75:81:b0 ctrl_interface=/var/run/hostapd ap_isolate=1 bss_load_update_period=60 chan_util_avg_period=600 disassoc_low_ack=1 skip_inactivity_poll=0 preamble=1 wmm_enabled=1 ignore_broadcast_ssid=0 uapsd_advertisement_enabled=1 utf8_ssid=1 multi_ap=0 wpa_passphrase=pass wpa_psk_file=/var/run/hostapd-2g_invitados.psk auth_algs=1 wpa=2 wpa_pairwise=CCMP ssid=Invitados bridge=br-wan wds_bridge= snoop_iface=br-wan wpa_disable_eapol_key_retries=0 wpa_key_mgmt=WPA-PSK okc=0 disable_pmksa_caching=1 dynamic_vlan=0 vlan_naming=1 vlan_no_bridge=1 vlan_file=/var/run/hos
Fri Jan 12 14:27:36 2024 kern.info kernel: [   48.764262] br-wan: port 3(2g_invitados) entered blocking state
Fri Jan 12 14:27:36 2024 kern.info kernel: [   48.770545] br-wan: port 3(2g_invitados) entered disabled state
Fri Jan 12 14:27:36 2024 kern.info kernel: [   48.776956] device 2g_invitados entered promiscuous mode
Fri Jan 12 14:27:36 2024 kern.info kernel: [   48.782697] br-wan: port 3(2g_invitados) entered blocking state
Fri Jan 12 14:27:36 2024 kern.info kernel: [   48.788833] br-wan: port 3(2g_invitados) entered forwarding state
Fri Jan 12 14:27:36 2024 daemon.notice hostapd: 2g_invitados: interface state UNINITIALIZED->COUNTRY_UPDATE
Fri Jan 12 14:27:36 2024 kern.info kernel: [   49.053280] IPv6: ADDRCONF(NETDEV_CHANGE): 2g_invitados: link becomes ready
Fri Jan 12 14:27:37 2024 kern.info kernel: [   49.657837] br-lan: port 2(2g_f) entered blocking state
Fri Jan 12 14:27:37 2024 kern.info kernel: [   49.663410] br-lan: port 2(2g_f) entered disabled state
Fri Jan 12 14:27:37 2024 kern.info kernel: [   49.669102] device 2g_f entered promiscuous mode
Fri Jan 12 14:27:37 2024 kern.info kernel: [   49.797778] br-lan: port 2(2g_f) entered blocking state
Fri Jan 12 14:27:37 2024 kern.info kernel: [   49.803258] br-lan: port 2(2g_f) entered forwarding state
Fri Jan 12 14:27:37 2024 kern.info kernel: [   49.809160] br-lan: port 2(2g_f) entered disabled state
Fri Jan 12 14:27:37 2024 kern.info kernel: [   50.087516] IPv6: ADDRCONF(NETDEV_CHANGE): 2g_f: link becomes ready
Fri Jan 12 14:27:37 2024 kern.info kernel: [   50.094261] br-lan: port 2(2g_f) entered blocking state
Fri Jan 12 14:27:37 2024 kern.info kernel: [   50.099717] br-lan: port 2(2g_f) entered forwarding state
Fri Jan 12 14:27:37 2024 daemon.notice hostapd: 2g_invitados: interface state COUNTRY_UPDATE->ENABLED
Fri Jan 12 14:27:37 2024 daemon.notice hostapd: 2g_invitados: AP-ENABLED
Fri Jan 12 14:27:37 2024 daemon.notice hostapd: Configuration file: data: driver=nl80211 logger_syslog=127 logger_syslog_level=2 logger_stdout=127 logger_stdout_level=2 country_code=AR ieee80211d=1 hw_mode=g supported_rates=60 90 120 180 240 360 480 540 basic_rates=60 120 240 beacon_int=100 chanlist=11 #num_global_macaddr=1 ieee80211n=1 ht_coex=0 ht_capab=[SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][DSSS_CCK-40] channel=11  interface=2g_invitados bssid=50:c7:bf:75:81:b0 ctrl_interface=/var/run/hostapd ap_isolate=1 bss_load_update_period=60 chan_util_avg_period=600 disassoc_low_ack=1 skip_inactivity_poll=0 preamble=1 wmm_enabled=1 ignore_broadcast_ssid=0 uapsd_advertisement_enabled=1 utf8_ssid=1 multi_ap=0 wpa_passphrase=pass wpa_psk_file=/var/run/hostapd-2g_invitados.psk auth_algs=1 wpa=2 wpa_pairwise=CCMP ssid=Invitados bridge=br-wan wds_bridge= snoop_iface=br-wan wpa_disable_eapol_key_retries=0 wpa_key_mgmt=WPA-PSK okc=0 disable_pmksa_caching=1 dynamic_vlan=0 vlan_naming=1 vlan_no_bridge=1 vlan_file=/var/run/hos
Fri Jan 12 14:27:37 2024 daemon.err hostapd: Multiple BSSes specified in BSS-config
Fri Jan 12 14:28:06 2024 daemon.notice netifd: Wireless device 'radio1' is now up
Fri Jan 12 14:28:06 2024 daemon.notice netifd: Network device '2g_invitados' link is up
Fri Jan 12 14:28:06 2024 daemon.notice netifd: Network device '2g_f' link is up
Fri Jan 12 14:28:40 2024 daemon.err uhttpd[1477]: [info] luci: accepted login on / for root from 192.168.50.10

Errors after creating an interface in LuCI. The new interface does not appear in any clients. The other interfaces do appear.

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

config wifi-device 'radio0'
        option type 'mac80211'
        option path 'pci0000:00/0000:00:00.0'
        option band '5g'
        option cell_density '0'
        option channel '36'
        option htmode 'VHT80'
        option country 'AR'

config wifi-device 'radio1'
        option type 'mac80211'
        option path 'platform/ahb/18100000.wmac'
        option band '2g'
        option htmode 'HT20'
        option cell_density '0'
        option channel '11'
        option country 'AR'

config wifi-iface '5g_invitados'
        option device 'radio0'
        option mode 'ap'
        option ssid 'Invitados'
        option encryption 'psk2+ccmp'
        option ifname '5g_invitados'
        option key 'pass'
        option network 'wan'

config wifi-iface '2g_invitados'
        option device 'radio1'
        option mode 'ap'
        option ssid 'Invitados'
        option encryption 'psk2+ccmp'
        option ifname '2g_invitados'
        option key 'pass'
        option network 'wan'

config wifi-iface '2g_f'
        option device 'radio1'
        option mode 'ap'
        option ssid 'F'
        option encryption 'psk2+ccmp'
        option ifname '2g_f'
        option key 'pass'
        option network 'lan'

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

root@archer_c60:~# cat /var/run/hostapd-*.conf
driver=nl80211
logger_syslog=127
logger_syslog_level=2
logger_stdout=127
logger_stdout_level=2
country_code=AR
ieee80211d=1
ieee80211h=1
hw_mode=a
beacon_int=100
channel=36
chanlist=36

tx_queue_data2_burst=2.0

#num_global_macaddr=1
ieee80211n=1
ht_coex=0
ht_capab=[HT40+][LDPC][SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][MAX-AMSDU-7935][DSSS_CCK-40]
ieee80211ac=1
vht_oper_chwidth=1
vht_oper_centr_freq_seg0_idx=42
vht_capab=[RXLDPC][SHORT-GI-80][TX-STBC-2BY1][SU-BEAMFORMER][SU-BEAMFORMEE][MU-BEAMFORMER][MU-BEAMFORMEE][RX-ANTENNA-PATTERN][TX-ANTENNA-PATTERN][RX-STBC-1][SOUNDING-DIMENSION-2][BF-ANTENNA-4][MAX-MPDU-11454][MAX-A-MPDU-LEN-EXP7]

interface=5g_invitados
ctrl_interface=/var/run/hostapd
ap_isolate=1
bss_load_update_period=60
chan_util_avg_period=600
disassoc_low_ack=1
skip_inactivity_poll=0
preamble=1
wmm_enabled=1
ignore_broadcast_ssid=0
uapsd_advertisement_enabled=1
utf8_ssid=1
multi_ap=0
wpa_passphrase=pass
wpa_psk_file=/var/run/hostapd-5g_invitados.psk
auth_algs=1
wpa=2
wpa_pairwise=CCMP
ssid=Invitados
bridge=br-wan
wds_bridge=
snoop_iface=br-wan
wpa_disable_eapol_key_retries=0
wpa_key_mgmt=WPA-PSK
okc=0
disable_pmksa_caching=1
dynamic_vlan=0
vlan_naming=1
vlan_no_bridge=1
vlan_file=/var/run/hostapd-5g_invitados.vlan
qos_map_set=0,0,2,16,1,1,255,255,18,22,24,38,40,40,44,46,48,56
bssid=50:c7:bf:75:81:af
#default_macaddr


driver=nl80211
logger_syslog=127
logger_syslog_level=2
logger_stdout=127
logger_stdout_level=2
country_code=AR
ieee80211d=1
hw_mode=g
supported_rates=60 90 120 180 240 360 480 540
basic_rates=60 120 240
beacon_int=100
channel=11
chanlist=11



#num_global_macaddr=1
ieee80211n=1
ht_coex=0
ht_capab=[SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][DSSS_CCK-40]

interface=2g_invitados
ctrl_interface=/var/run/hostapd
ap_isolate=1
bss_load_update_period=60
chan_util_avg_period=600
disassoc_low_ack=1
skip_inactivity_poll=0
preamble=1
wmm_enabled=1
ignore_broadcast_ssid=0
uapsd_advertisement_enabled=1
utf8_ssid=1
multi_ap=0
wpa_passphrase=pass
wpa_psk_file=/var/run/hostapd-2g_invitados.psk
auth_algs=1
wpa=2
wpa_pairwise=CCMP
ssid=Invitados
bridge=br-wan
wds_bridge=
snoop_iface=br-wan
wpa_disable_eapol_key_retries=0
wpa_key_mgmt=WPA-PSK
okc=0
disable_pmksa_caching=1
dynamic_vlan=0
vlan_naming=1
vlan_no_bridge=1
vlan_file=/var/run/hostapd-2g_invitados.vlan
qos_map_set=0,0,2,16,1,1,255,255,18,22,24,38,40,40,44,46,48,56
bssid=50:c7:bf:75:81:b0
#default_macaddr


bss=2g_f
ctrl_interface=/var/run/hostapd
ap_isolate=1
bss_load_update_period=60
chan_util_avg_period=600
disassoc_low_ack=1
skip_inactivity_poll=0
preamble=1
wmm_enabled=1
ignore_broadcast_ssid=0
uapsd_advertisement_enabled=1
utf8_ssid=1
multi_ap=0
wpa_passphrase=pass
wpa_psk_file=/var/run/hostapd-2g_f.psk
auth_algs=1
wpa=2
wpa_pairwise=CCMP
ssid=F
bridge=br-lan
wds_bridge=
snoop_iface=br-lan
wpa_disable_eapol_key_retries=0
wpa_key_mgmt=WPA-PSK
okc=0
disable_pmksa_caching=1
dynamic_vlan=0
vlan_naming=1
vlan_no_bridge=1
vlan_file=/var/run/hostapd-2g_f.vlan
qos_map_set=0,0,2,16,1,1,255,255,18,22,24,38,40,40,44,46,48,56
bssid=52:c7:bf:75:81:b0
#default_macaddr


bss=phy1-ap0
ctrl_interface=/var/run/hostapd
ap_isolate=1
bss_load_update_period=60
chan_util_avg_period=600
disassoc_low_ack=1
skip_inactivity_poll=0
preamble=1
wmm_enabled=1
ignore_broadcast_ssid=0
uapsd_advertisement_enabled=1
utf8_ssid=1
multi_ap=0
auth_algs=1
wpa=0
ssid=OpenWrt
bridge=br-lan
wds_bridge=
snoop_iface=br-lan
qos_map_set=0,0,2,16,1,1,255,255,18,22,24,38,40,40,44,46,48,56
bssid=56:c7:bf:75:81:b0
#default_macaddr

Fri Jan 12 14:27:37 2024 daemon.notice hostapd: 2g_invitados: interface state COUNTRY_UPDATE->ENABLED
Fri Jan 12 14:27:37 2024 daemon.notice hostapd: 2g_invitados: AP-ENABLED
Fri Jan 12 14:27:37 2024 daemon.notice hostapd: Configuration file: data: driver=nl80211 logger_syslog=127 logger_syslog_level=2 logger_stdout=127 logger_stdout_level=2 country_code=AR ieee80211d=1 hw_mode=g supported_rates=60 90 120 180 240 360 480 540 basic_rates=60 120 240 beacon_int=100 chanlist=11 #num_global_macaddr=1 ieee80211n=1 ht_coex=0 ht_capab=[SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][DSSS_CCK-40] channel=11  interface=2g_invitados bssid=50:c7:bf:75:81:b0 ctrl_interface=/var/run/hostapd ap_isolate=1 bss_load_update_period=60 chan_util_avg_period=600 disassoc_low_ack=1 skip_inactivity_poll=0 preamble=1 wmm_enabled=1 ignore_broadcast_ssid=0 uapsd_advertisement_enabled=1 utf8_ssid=1 multi_ap=0 wpa_passphrase=pass wpa_psk_file=/var/run/hostapd-2g_invitados.psk auth_algs=1 wpa=2 wpa_pairwise=CCMP ssid=Invitados bridge=br-wan wds_bridge= snoop_iface=br-wan wpa_disable_eapol_key_retries=0 wpa_key_mgmt=WPA-PSK okc=0 disable_pmksa_caching=1 dynamic_vlan=0 vlan_naming=1 vlan_no_bridge=1 vlan_file=/var/run/hos
Fri Jan 12 14:27:37 2024 daemon.err hostapd: Multiple BSSes specified in BSS-config
Fri Jan 12 14:28:06 2024 daemon.notice netifd: Wireless device 'radio1' is now up
Fri Jan 12 14:28:06 2024 daemon.notice netifd: Network device '2g_invitados' link is up
Fri Jan 12 14:28:06 2024 daemon.notice netifd: Network device '2g_f' link is up
Fri Jan 12 14:28:40 2024 daemon.err uhttpd[1477]: [info] luci: accepted login on / for root from 192.168.50.10
Fri Jan 12 14:29:42 2024 authpriv.info dropbear[2723]: Child connection from 192.168.50.10:58258
Fri Jan 12 14:29:44 2024 authpriv.notice dropbear[2723]: Password auth succeeded for 'root' from 192.168.50.10:58258
Fri Jan 12 14:31:02 2024 daemon.info dnsmasq[2354]: read /etc/hosts - 12 names
Fri Jan 12 14:31:02 2024 daemon.info dnsmasq[2354]: read /tmp/hosts/dhcp.cfg01411c - 2 names
Fri Jan 12 14:31:02 2024 daemon.info dnsmasq-dhcp[2354]: read /etc/ethers - 0 addresses
Fri Jan 12 14:31:02 2024 daemon.notice wpa_supplicant[1187]: Set new config for phy phy1
Fri Jan 12 14:31:33 2024 daemon.notice netifd: radio1 (2779): Command failed: ubus call hostapd config_set { "phy": "phy1", "config":"/var/run/hostapd-phy1.conf", "prev_config": "/var/run/hostapd-phy1.conf.prev"} (Request timed out)
Fri Jan 12 14:31:33 2024 daemon.notice netifd: radio1 (2779): Device setup failed: HOSTAPD_START_FAILED
Fri Jan 12 14:31:33 2024 daemon.notice netifd: Wireless device 'radio1' set retry=0
Fri Jan 12 14:32:03 2024 daemon.notice netifd: Wireless device 'radio1' is now up

After rebooting the radio in LuCI, any interfaces for that radio no longer appear on clients.

root@archer_c60:~# cat /var/run/hostapd-*.conf
driver=nl80211
logger_syslog=127
logger_syslog_level=2
logger_stdout=127
logger_stdout_level=2
country_code=AR
ieee80211d=1
ieee80211h=1
hw_mode=a
beacon_int=100
channel=36
chanlist=36

tx_queue_data2_burst=2.0

#num_global_macaddr=1
ieee80211n=1
ht_coex=0
ht_capab=[HT40+][LDPC][SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][MAX-AMSDU-7935][DSSS_CCK-40]
ieee80211ac=1
vht_oper_chwidth=1
vht_oper_centr_freq_seg0_idx=42
vht_capab=[RXLDPC][SHORT-GI-80][TX-STBC-2BY1][SU-BEAMFORMER][SU-BEAMFORMEE][MU-BEAMFORMER][MU-BEAMFORMEE][RX-ANTENNA-PATTERN][TX-ANTENNA-PATTERN][RX-STBC-1][SOUNDING-DIMENSION-2][BF-ANTENNA-4][MAX-MPDU-11454][MAX-A-MPDU-LEN-EXP7]

interface=5g_invitados
ctrl_interface=/var/run/hostapd
ap_isolate=1
bss_load_update_period=60
chan_util_avg_period=600
disassoc_low_ack=1
skip_inactivity_poll=0
preamble=1
wmm_enabled=1
ignore_broadcast_ssid=0
uapsd_advertisement_enabled=1
utf8_ssid=1
multi_ap=0
wpa_passphrase=pass
wpa_psk_file=/var/run/hostapd-5g_invitados.psk
auth_algs=1
wpa=2
wpa_pairwise=CCMP
ssid=Invitados
bridge=br-wan
wds_bridge=
snoop_iface=br-wan
wpa_disable_eapol_key_retries=0
wpa_key_mgmt=WPA-PSK
okc=0
disable_pmksa_caching=1
dynamic_vlan=0
vlan_naming=1
vlan_no_bridge=1
vlan_file=/var/run/hostapd-5g_invitados.vlan
qos_map_set=0,0,2,16,1,1,255,255,18,22,24,38,40,40,44,46,48,56
bssid=50:c7:bf:75:81:af
#default_macaddr


driver=nl80211
logger_syslog=127
logger_syslog_level=2
logger_stdout=127
logger_stdout_level=2
country_code=AR
ieee80211d=1
hw_mode=g
supported_rates=60 90 120 180 240 360 480 540
basic_rates=60 120 240
beacon_int=100
channel=11
chanlist=11



#num_global_macaddr=1
ieee80211n=1
ht_coex=0
ht_capab=[SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][DSSS_CCK-40]

interface=2g_invitados
ctrl_interface=/var/run/hostapd
ap_isolate=1
bss_load_update_period=60
chan_util_avg_period=600
disassoc_low_ack=1
skip_inactivity_poll=0
preamble=1
wmm_enabled=1
ignore_broadcast_ssid=0
uapsd_advertisement_enabled=1
utf8_ssid=1
multi_ap=0
wpa_passphrase=pass
wpa_psk_file=/var/run/hostapd-2g_invitados.psk
auth_algs=1
wpa=2
wpa_pairwise=CCMP
ssid=Invitados
bridge=br-wan
wds_bridge=
snoop_iface=br-wan
wpa_disable_eapol_key_retries=0
wpa_key_mgmt=WPA-PSK
okc=0
disable_pmksa_caching=1
dynamic_vlan=0
vlan_naming=1
vlan_no_bridge=1
vlan_file=/var/run/hostapd-2g_invitados.vlan
qos_map_set=0,0,2,16,1,1,255,255,18,22,24,38,40,40,44,46,48,56
bssid=50:c7:bf:75:81:b0
#default_macaddr


bss=2g_f
ctrl_interface=/var/run/hostapd
ap_isolate=1
bss_load_update_period=60
chan_util_avg_period=600
disassoc_low_ack=1
skip_inactivity_poll=0
preamble=1
wmm_enabled=1
ignore_broadcast_ssid=0
uapsd_advertisement_enabled=1
utf8_ssid=1
multi_ap=0
wpa_passphrase=pass
wpa_psk_file=/var/run/hostapd-2g_f.psk
auth_algs=1
wpa=2
wpa_pairwise=CCMP
ssid=F
bridge=br-lan
wds_bridge=
snoop_iface=br-lan
wpa_disable_eapol_key_retries=0
wpa_key_mgmt=WPA-PSK
okc=0
disable_pmksa_caching=1
dynamic_vlan=0
vlan_naming=1
vlan_no_bridge=1
vlan_file=/var/run/hostapd-2g_f.vlan
qos_map_set=0,0,2,16,1,1,255,255,18,22,24,38,40,40,44,46,48,56
bssid=52:c7:bf:75:81:b0
#default_macaddr


bss=phy1-ap0
ctrl_interface=/var/run/hostapd
ap_isolate=1
bss_load_update_period=60
chan_util_avg_period=600
disassoc_low_ack=1
skip_inactivity_poll=0
preamble=1
wmm_enabled=1
ignore_broadcast_ssid=0
uapsd_advertisement_enabled=1
utf8_ssid=1
multi_ap=0
auth_algs=1
wpa=0
ssid=OpenWrt
bridge=br-lan
wds_bridge=
snoop_iface=br-lan
qos_map_set=0,0,2,16,1,1,255,255,18,22,24,38,40,40,44,46,48,56
bssid=56:c7:bf:75:81:b0
#default_macaddr
Fri Jan 12 14:31:02 2024 daemon.notice wpa_supplicant[1187]: Set new config for phy phy1
Fri Jan 12 14:31:33 2024 daemon.notice netifd: radio1 (2779): Command failed: ubus call hostapd config_set { "phy": "phy1", "config":"/var/run/hostapd-phy1.conf", "prev_config": "/var/run/hostapd-phy1.conf.prev"} (Request timed out)
Fri Jan 12 14:31:33 2024 daemon.notice netifd: radio1 (2779): Device setup failed: HOSTAPD_START_FAILED
Fri Jan 12 14:31:33 2024 daemon.notice netifd: Wireless device 'radio1' set retry=0
Fri Jan 12 14:32:03 2024 daemon.notice netifd: Wireless device 'radio1' is now up
Fri Jan 12 14:42:13 2024 daemon.notice netifd: radio1 (3173): Command failed: ubus call hostapd config_set { "phy": "phy1", "config": "", "prev_config": "/var/run/hostapd-phy1.conf" } (Request timed out)
Fri Jan 12 14:42:13 2024 daemon.notice wpa_supplicant[1187]: Set new config for phy phy1
Fri Jan 12 14:42:43 2024 kern.info kernel: [  956.219834] br-lan: port 2(2g_f) entered disabled state
Fri Jan 12 14:42:44 2024 kern.info kernel: [  956.364720] device 2g_f left promiscuous mode
Fri Jan 12 14:42:44 2024 kern.info kernel: [  956.369337] br-lan: port 2(2g_f) entered disabled state
Fri Jan 12 14:42:44 2024 daemon.notice netifd: Network device '2g_f' link is down
Fri Jan 12 14:42:44 2024 kern.info kernel: [  956.498134] br-wan: port 3(2g_invitados) entered disabled state
Fri Jan 12 14:42:44 2024 kern.info kernel: [  956.525088] device 2g_invitados left promiscuous mode
Fri Jan 12 14:42:44 2024 kern.info kernel: [  956.530575] br-wan: port 3(2g_invitados) entered disabled state
Fri Jan 12 14:42:44 2024 daemon.notice netifd: Network device '2g_invitados' link is down
Fri Jan 12 14:42:44 2024 daemon.notice netifd: Wireless device 'radio1' is now down
Fri Jan 12 14:42:44 2024 daemon.notice netifd: radio1 (3205): WARNING: Variable 'data' does not exist or is not an array/object
Fri Jan 12 14:43:16 2024 daemon.notice netifd: radio1 (3205): Command failed: ubus call hostapd config_set { "phy": "phy1", "config": "", "prev_config": "/var/run/hostapd-phy1.conf" } (Request timed out)
Fri Jan 12 14:43:16 2024 daemon.notice wpa_supplicant[1187]: Set new config for phy phy1
Fri Jan 12 14:43:47 2024 daemon.notice wpa_supplicant[1187]: Set new config for phy phy1
Fri Jan 12 14:44:17 2024 daemon.notice netifd: radio1 (3205): Command failed: ubus call hostapd config_set { "phy": "phy1", "config":"/var/run/hostapd-phy1.conf", "prev_config": "/var/run/hostapd-phy1.conf.prev"} (Request timed out)
Fri Jan 12 14:44:17 2024 daemon.notice netifd: radio1 (3205): Device setup failed: HOSTAPD_START_FAILED
Fri Jan 12 14:44:17 2024 daemon.notice netifd: Wireless device 'radio1' set retry=0
Fri Jan 12 14:44:47 2024 daemon.notice netifd: Wireless device 'radio1' is now up

Then restart the router and all the interfaces appear.

@castillofrancodamian
Copy link

@castillofrancodamian castillofrancodamian commented on b7f9742 Jan 12, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nbd168 I get this on another router when changing the settings on the default Wi-Fi interfaces. After restarting the router, the interfaces no longer turn on.

make image PROFILE=mercusys_mr70x-v1 PACKAGES="wpad-mbedtls luci-ssl htop nano iperf3 luci-i18n-firewall-es luci-i18n-opkg-es luci-theme-openwrt-2020 luci-i18n-base-es luci-i18n-commands-es luci-lua-runtime wavemon luci-proto-wireguard qrencode luci-proto-relay luci-i18n-sqm-es luci-i18n-nlbwmon-es curl -wpad-basic-mbedtls"

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

config wifi-device 'radio0'
        option type 'mac80211'
        option path '1e140000.pcie/pci0000:00/0000:00:01.0/0000:02:00.0'
        option channel '11'
        option band '2g'
        option htmode 'HE20'
        option country 'AR'
        option cell_density '0'

config wifi-iface 'default_radio0'
        option device 'radio0'
        option network 'lan'
        option mode 'ap'
        option ssid 'LAG'
        option encryption 'psk2+ccmp'
        option ifname '2g_lag'
        option key 'pass'

config wifi-device 'radio1'
        option type 'mac80211'
        option path '1e140000.pcie/pci0000:00/0000:00:01.0/0000:02:00.0+1'
        option channel '36'
        option band '5g'
        option htmode 'HE80'
        option country 'AR'
        option cell_density '0'

config wifi-iface 'default_radio1'
        option device 'radio1'
        option network 'lan'
        option mode 'ap'
        option ssid 'LAG'
        option encryption 'psk2+ccmp'
        option ifname '5g_lag'
        option key 'pass'
Thu Jan 11 09:40:55 2024 kern.notice kernel: [    0.000000] Linux version 5.15.146 (builder@buildhost) (mipsel-openwrt-linux-musl-gcc (OpenWrt GCC 12.3.0 r24801-b7f9742da8) 12.3.0, GNU ld (GNU Binutils) 2.40.0) #0 SMP Thu Jan 11 09:40:43 2024
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] SoC Type: MediaTek MT7621 ver:1 eco:4
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] printk: bootconsole [early0] enabled
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] CPU0 revision is: 0001992f (MIPS 1004Kc)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] MIPS: machine is MERCUSYS MR70X v1
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] Initrd not found or empty - disabling initrd
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] VPE topology {2,2} total 4
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes.
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes
Thu Jan 11 09:40:55 2024 kern.warn kernel: [    0.000000] MIPS secondary cache 256kB, 8-way, linesize 32 bytes.
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] Zone ranges:
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000]   Normal   [mem 0x0000000000000000-0x0000000007ffffff]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] Movable zone start for each node
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] Early memory node ranges
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000]   node   0: [mem 0x0000000000000000-0x0000000007ffffff]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000007ffffff]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] percpu: Embedded 11 pages/cpu s14736 r8192 d22128 u45056
Thu Jan 11 09:40:55 2024 kern.debug kernel: [    0.000000] pcpu-alloc: s14736 r8192 d22128 u45056 alloc=11*4096
Thu Jan 11 09:40:55 2024 kern.debug kernel: [    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 32480
Thu Jan 11 09:40:55 2024 kern.notice kernel: [    0.000000] Kernel command line: console=ttyS0,115200 rootfstype=squashfs,jffs2
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes, linear)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes, linear)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] Writing ErrCtl register=00011310
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] Readback ErrCtl register=00011310
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] Memory: 118660K/131072K available (7327K kernel code, 629K rwdata, 1496K rodata, 1224K init, 225K bss, 12412K reserved, 0K cma-reserved)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] rcu: Hierarchical RCU implementation.
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] 	Tracing variant of Tasks RCU enabled.
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] NR_IRQS: 256
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000000] clocksource: GIC: mask: 0xffffffffffffffff max_cycles: 0xcaf478abb4, max_idle_ns: 440795247997 ns
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.000004] sched_clock: 64 bits at 880MHz, resolution 1ns, wraps every 4398046511103ns
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.008040] Calibrating delay loop... 586.13 BogoMIPS (lpj=2930688)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.066218] pid_max: default: 32768 minimum: 301
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.071597] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.078809] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.090371] rcu: Hierarchical SRCU implementation.
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.095868] smp: Bringing up secondary CPUs ...
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.101263] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes.
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.101288] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes
Thu Jan 11 09:40:55 2024 kern.warn kernel: [    0.101303] MIPS secondary cache 256kB, 8-way, linesize 32 bytes.
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.101348] CPU1 revision is: 0001992f (MIPS 1004Kc)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.160638] Synchronize counters for CPU 1: done.
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.193104] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes.
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.193125] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes
Thu Jan 11 09:40:55 2024 kern.warn kernel: [    0.193136] MIPS secondary cache 256kB, 8-way, linesize 32 bytes.
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.193163] CPU2 revision is: 0001992f (MIPS 1004Kc)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.252097] Synchronize counters for CPU 2: done.
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.282749] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes.
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.282770] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes
Thu Jan 11 09:40:55 2024 kern.warn kernel: [    0.282780] MIPS secondary cache 256kB, 8-way, linesize 32 bytes.
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.282810] CPU3 revision is: 0001992f (MIPS 1004Kc)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.337278] Synchronize counters for CPU 3: done.
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.367132] smp: Brought up 1 node, 4 CPUs
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.376042] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.385837] futex hash table entries: 1024 (order: 3, 32768 bytes, linear)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.392937] pinctrl core: initialized pinctrl subsystem
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.399743] NET: Registered PF_NETLINK/PF_ROUTE protocol family
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.406332] thermal_sys: Registered thermal governor 'step_wise'
Thu Jan 11 09:40:55 2024 kern.debug kernel: [    0.417045] FPU Affinity set after 11720 emulations
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.436301] clocksource: Switched to clocksource GIC
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.442722] NET: Registered PF_INET protocol family
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.447756] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.455831] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes, linear)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.464133] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.471813] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.479438] TCP bind hash table entries: 1024 (order: 1, 8192 bytes, linear)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.486432] TCP: Hash tables configured (established 1024 bind 1024)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.492860] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.499352] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.506630] NET: Registered PF_UNIX/PF_LOCAL protocol family
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.512237] PCI: CLS 0 bytes, default 32
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.518434] workingset: timestamp_bits=14 max_order=15 bucket_order=1
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.530650] squashfs: version 4.0 (2009/01/31) Phillip Lougher
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.536549] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc.
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.548003] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.559119] mt7621_gpio 1e000600.gpio: registering 32 gpios
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.564998] mt7621_gpio 1e000600.gpio: registering 32 gpios
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.570940] mt7621_gpio 1e000600.gpio: registering 32 gpios
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.576981] mt7621-pci 1e140000.pcie: host bridge /pcie@1e140000 ranges:
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.583641] mt7621-pci 1e140000.pcie:   No bus range found for /pcie@1e140000, using [bus 00-ff]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.592412] mt7621-pci 1e140000.pcie:      MEM 0x0060000000..0x006fffffff -> 0x0060000000
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.600514] mt7621-pci 1e140000.pcie:       IO 0x001e160000..0x001e16ffff -> 0x0000000000
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.966307] mt7621-pci 1e140000.pcie: pcie2 no card, disable it (RST & CLK)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.973205] mt7621-pci 1e140000.pcie: PCIE0 enabled
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.978078] mt7621-pci 1e140000.pcie: PCIE1 enabled
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.982895] PCI coherence region base: 0x60000000, mask/settings: 0xf0000002
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.990046] mt7621-pci 1e140000.pcie: PCI host bridge to bus 0000:00
Thu Jan 11 09:40:55 2024 kern.info kernel: [    0.996346] pci_bus 0000:00: root bus resource [bus 00-ff]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.001747] pci_bus 0000:00: root bus resource [mem 0x60000000-0x6fffffff]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.008603] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.014757] pci 0000:00:00.0: [0e8d:0801] type 01 class 0x060400
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.020706] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x7fffffff]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.026932] pci 0000:00:00.0: reg 0x14: [mem 0x60400000-0x6040ffff]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.033176] pci 0000:00:00.0: supports D1
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.037109] pci 0000:00:00.0: PME# supported from D0 D1 D3hot
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.043523] pci 0000:00:01.0: [0e8d:0801] type 01 class 0x060400
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.049549] pci 0000:00:01.0: reg 0x10: [mem 0x00000000-0x7fffffff]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.055741] pci 0000:00:01.0: reg 0x14: [mem 0x60410000-0x6041ffff]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.062050] pci 0000:00:01.0: supports D1
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.065967] pci 0000:00:01.0: PME# supported from D0 D1 D3hot
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.073682] pci 0000:01:00.0: [14c3:7916] type 00 class 0x000280
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.079701] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x000fffff 64bit pref]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.086882] pci 0000:01:00.0: reg 0x18: [mem 0x00000000-0x00003fff 64bit pref]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.094018] pci 0000:01:00.0: reg 0x20: [mem 0x00000000-0x00000fff 64bit pref]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.101324] pci 0000:01:00.0: supports D1 D2
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.105501] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.112129] pci 0000:01:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x1 link at 0000:00:00.0 (capable of 4.000 Gb/s with 5.0 GT/s PCIe x1 link)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.128115] pci 0000:00:00.0: PCI bridge to [bus 01-ff]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.133272] pci 0000:00:00.0:   bridge window [io  0x0000-0x0fff]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.139355] pci 0000:00:00.0:   bridge window [mem 0x60000000-0x601fffff pref]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.146523] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.153335] pci 0000:02:00.0: [14c3:7915] type 00 class 0x000280
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.159319] pci 0000:02:00.0: reg 0x10: [mem 0x00000000-0x000fffff 64bit pref]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.166504] pci 0000:02:00.0: reg 0x18: [mem 0x00000000-0x00003fff 64bit pref]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.173643] pci 0000:02:00.0: reg 0x20: [mem 0x00000000-0x00000fff 64bit pref]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.180949] pci 0000:02:00.0: supports D1 D2
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.185126] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.191755] pci 0000:02:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x1 link at 0000:00:01.0 (capable of 4.000 Gb/s with 5.0 GT/s PCIe x1 link)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.207775] pci 0000:00:01.0: PCI bridge to [bus 02-ff]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.212931] pci 0000:00:01.0:   bridge window [io  0x0000-0x0fff]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.219017] pci 0000:00:01.0:   bridge window [mem 0x60200000-0x603fffff pref]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.226149] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 02
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.232784] pci 0000:00:00.0: BAR 0: no space for [mem size 0x80000000]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.239323] pci 0000:00:00.0: BAR 0: failed to assign [mem size 0x80000000]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.246213] pci 0000:00:01.0: BAR 0: no space for [mem size 0x80000000]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.252801] pci 0000:00:01.0: BAR 0: failed to assign [mem size 0x80000000]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.259717] pci 0000:00:00.0: BAR 9: assigned [mem 0x60000000-0x601fffff pref]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.266896] pci 0000:00:01.0: BAR 9: assigned [mem 0x60200000-0x603fffff pref]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.274031] pci 0000:00:00.0: BAR 1: assigned [mem 0x60400000-0x6040ffff]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.280803] pci 0000:00:01.0: BAR 1: assigned [mem 0x60410000-0x6041ffff]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.287539] pci 0000:00:00.0: BAR 7: assigned [io  0x0000-0x0fff]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.293558] pci 0000:00:01.0: BAR 7: assigned [io  0x1000-0x1fff]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.299640] pci 0000:01:00.0: BAR 0: assigned [mem 0x60000000-0x600fffff 64bit pref]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.307335] pci 0000:01:00.0: BAR 2: assigned [mem 0x60100000-0x60103fff 64bit pref]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.314996] pci 0000:01:00.0: BAR 4: assigned [mem 0x60104000-0x60104fff 64bit pref]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.322713] pci 0000:00:00.0: PCI bridge to [bus 01]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.327632] pci 0000:00:00.0:   bridge window [io  0x0000-0x0fff]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.333651] pci 0000:00:00.0:   bridge window [mem 0x60000000-0x601fffff pref]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.340852] pci 0000:02:00.0: BAR 0: assigned [mem 0x60200000-0x602fffff 64bit pref]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.348547] pci 0000:02:00.0: BAR 2: assigned [mem 0x60300000-0x60303fff 64bit pref]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.356209] pci 0000:02:00.0: BAR 4: assigned [mem 0x60304000-0x60304fff 64bit pref]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.363925] pci 0000:00:01.0: PCI bridge to [bus 02]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.368837] pci 0000:00:01.0:   bridge window [io  0x1000-0x1fff]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.374862] pci 0000:00:01.0:   bridge window [mem 0x60200000-0x603fffff pref]
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.383538] Serial: 8250/16550 driver, 16 ports, IRQ sharing enabled
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.394805] printk: console [ttyS0] disabled
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.399173] 1e000c00.uartlite: ttyS0 at MMIO 0x1e000c00 (irq = 18, base_baud = 3125000) is a 16550A
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.408184] printk: console [ttyS0] enabled
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.416452] printk: bootconsole [early0] disabled
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.429533] spi-mt7621 1e000b00.spi: sys_freq: 220000000
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.435980] spi-nor spi0.0: w25q128 (16384 Kbytes)
Thu Jan 11 09:40:55 2024 kern.notice kernel: [    1.440903] 5 fixed-partitions partitions found on MTD device spi0.0
Thu Jan 11 09:40:55 2024 kern.err kernel: [    1.447302] OF: Bad cell count for /palmbus@1e000000/spi@b00/flash@0/partitions
Thu Jan 11 09:40:55 2024 kern.err kernel: [    1.454624] OF: Bad cell count for /palmbus@1e000000/spi@b00/flash@0/partitions
Thu Jan 11 09:40:55 2024 kern.notice kernel: [    1.462265] Creating 5 MTD partitions on "spi0.0":
Thu Jan 11 09:40:55 2024 kern.notice kernel: [    1.467084] 0x000000000000-0x000000040000 : "u-boot"
Thu Jan 11 09:40:55 2024 kern.notice kernel: [    1.473314] 0x000000040000-0x000000fa0000 : "firmware"
Thu Jan 11 09:40:55 2024 kern.notice kernel: [    1.479621] 2 uimage-fw partitions found on MTD device firmware
Thu Jan 11 09:40:55 2024 kern.notice kernel: [    1.485553] Creating 2 MTD partitions on "firmware":
Thu Jan 11 09:40:55 2024 kern.notice kernel: [    1.490539] 0x000000000000-0x0000002d62bf : "kernel"
Thu Jan 11 09:40:55 2024 kern.warn kernel: [    1.495488] mtd: partition "kernel" doesn't end on an erase/write block -- force read-only
Thu Jan 11 09:40:55 2024 kern.notice kernel: [    1.504918] 0x0000002d62bf-0x000000f60000 : "rootfs"
Thu Jan 11 09:40:55 2024 kern.warn kernel: [    1.509929] mtd: partition "rootfs" doesn't start on an erase/write block boundary -- force read-only
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.520097] mtd: setting mtd3 (rootfs) as root device
Thu Jan 11 09:40:55 2024 kern.notice kernel: [    1.525255] 1 squashfs-split partitions found on MTD device rootfs
Thu Jan 11 09:40:55 2024 kern.notice kernel: [    1.531457] 0x000000870000-0x000000f60000 : "rootfs_data"
Thu Jan 11 09:40:55 2024 kern.notice kernel: [    1.537914] 0x000000fa0000-0x000000fb0000 : "config"
Thu Jan 11 09:40:55 2024 kern.err kernel: [    1.544012] OF: Bad cell count for /palmbus@1e000000/spi@b00/flash@0/partitions
Thu Jan 11 09:40:55 2024 kern.notice kernel: [    1.551684] 0x000000fb0000-0x000000ff0000 : "tplink"
Thu Jan 11 09:40:55 2024 kern.notice kernel: [    1.557818] 0x000000ff0000-0x000001000000 : "radio"
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.699315] mt7530-mdio mdio-bus:1f: MT7530 adapts as multi-chip module
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.712518] mtk_soc_eth 1e100000.ethernet eth0: mediatek frame engine at 0xbe100000, irq 21
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.724639] mtk_soc_eth 1e100000.ethernet wan: mediatek frame engine at 0xbe100000, irq 21
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.734453] i2c_dev: i2c /dev entries driver
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.741774] NET: Registered PF_INET6 protocol family
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.749246] Segment Routing with IPv6
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.752981] In-situ OAM (IOAM) with IPv6
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.757056] NET: Registered PF_PACKET protocol family
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.762214] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.775647] 8021q: 802.1Q VLAN Support v1.8
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.785742] mt7530-mdio mdio-bus:1f: MT7530 adapts as multi-chip module
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.810442] mt7530-mdio mdio-bus:1f: configuring for fixed/rgmii link mode
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.818192] mt7530-mdio mdio-bus:1f: Link is Up - 1Gbps/Full - flow control rx/tx
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.826813] mt7530-mdio mdio-bus:1f lan1 (uninitialized): PHY [mt7530-0:01] driver [MediaTek MT7530 PHY] (irq=23)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.839959] mt7530-mdio mdio-bus:1f lan2 (uninitialized): PHY [mt7530-0:02] driver [MediaTek MT7530 PHY] (irq=24)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.852677] mt7530-mdio mdio-bus:1f lan3 (uninitialized): PHY [mt7530-0:03] driver [MediaTek MT7530 PHY] (irq=25)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.865382] DSA: tree 0 setup
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.877181] VFS: Mounted root (squashfs filesystem) readonly on device 31:3.
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.888352] Freeing unused kernel image (initmem) memory: 1224K
Thu Jan 11 09:40:55 2024 kern.warn kernel: [    1.894295] This architecture does not have kernel memory protection.
Thu Jan 11 09:40:55 2024 kern.info kernel: [    1.900803] Run /sbin/init as init process
Thu Jan 11 09:40:55 2024 kern.debug kernel: [    1.904903]   with arguments:
Thu Jan 11 09:40:55 2024 kern.debug kernel: [    1.904908]     /sbin/init
Thu Jan 11 09:40:55 2024 kern.debug kernel: [    1.904914]   with environment:
Thu Jan 11 09:40:55 2024 kern.debug kernel: [    1.904918]     HOME=/
Thu Jan 11 09:40:55 2024 kern.debug kernel: [    1.904924]     TERM=linux
Thu Jan 11 09:40:55 2024 user.info kernel: [    2.480791] init: Console is alive
Thu Jan 11 09:40:55 2024 user.info kernel: [    2.484600] init: - watchdog -
Thu Jan 11 09:40:55 2024 user.info kernel: [    3.493978] kmodloader: loading kernel modules from /etc/modules-boot.d/*
Thu Jan 11 09:40:55 2024 user.info kernel: [    3.557425] kmodloader: done loading kernel modules from /etc/modules-boot.d/*
Thu Jan 11 09:40:55 2024 user.info kernel: [    3.569774] init: - preinit -
Thu Jan 11 09:40:55 2024 kern.notice kernel: [    4.409999] random: jshn: uninitialized urandom read (4 bytes read)
Thu Jan 11 09:40:55 2024 kern.notice kernel: [    4.537009] random: jshn: uninitialized urandom read (4 bytes read)
Thu Jan 11 09:40:55 2024 kern.notice kernel: [    4.575475] random: jshn: uninitialized urandom read (4 bytes read)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    4.840410] mtk_soc_eth 1e100000.ethernet eth0: configuring for fixed/rgmii link mode
Thu Jan 11 09:40:55 2024 kern.info kernel: [    4.853036] mtk_soc_eth 1e100000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
Thu Jan 11 09:40:55 2024 kern.info kernel: [    4.856708] mt7530-mdio mdio-bus:1f lan1: configuring for phy/gmii link mode
Thu Jan 11 09:40:55 2024 kern.info kernel: [    4.868977] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Thu Jan 11 09:40:55 2024 user.notice kernel: [    7.054913] mount_root: jffs2 not ready yet, using temporary tmpfs overlay
Thu Jan 11 09:40:55 2024 user.warn kernel: [    7.066042] urandom-seed: Seed file not found (/etc/urandom.seed)
Thu Jan 11 09:40:55 2024 user.info kernel: [    7.180421] procd: - early -
Thu Jan 11 09:40:55 2024 user.info kernel: [    7.183545] procd: - watchdog -
Thu Jan 11 09:40:55 2024 user.info kernel: [    7.801372] procd: - watchdog -
Thu Jan 11 09:40:55 2024 user.info kernel: [    7.805238] procd: - ubus -
Thu Jan 11 09:40:55 2024 kern.notice kernel: [    7.877771] random: ubusd: uninitialized urandom read (4 bytes read)
Thu Jan 11 09:40:55 2024 kern.notice kernel: [    7.886856] random: ubusd: uninitialized urandom read (4 bytes read)
Thu Jan 11 09:40:55 2024 kern.notice kernel: [    7.893601] random: ubusd: uninitialized urandom read (4 bytes read)
Thu Jan 11 09:40:55 2024 user.info kernel: [    7.905400] procd: - init -
Thu Jan 11 09:40:55 2024 user.info kernel: [    8.509744] kmodloader: loading kernel modules from /etc/modules.d/*
Thu Jan 11 09:40:55 2024 kern.info kernel: [    8.580624] mtk-eip93 1e004000.crypto: EIP93 Crypto Engine Initialized.
Thu Jan 11 09:40:55 2024 kern.info kernel: [    8.781768] GACT probability on
Thu Jan 11 09:40:55 2024 kern.info kernel: [    8.786583] Mirror/redirect action on
Thu Jan 11 09:40:55 2024 kern.info kernel: [    8.800535] u32 classifier
Thu Jan 11 09:40:55 2024 kern.info kernel: [    8.803269]     input device check on
Thu Jan 11 09:40:55 2024 kern.info kernel: [    8.806963]     Actions configured
Thu Jan 11 09:40:55 2024 kern.info kernel: [    8.826048] Loading modules backported from Linux version v6.5-0-g2dde18cd1d8f
Thu Jan 11 09:40:55 2024 kern.info kernel: [    8.833311] Backport generated by backports.git v5.15.92-1-56-g5fb2ccb6b9e8
Thu Jan 11 09:40:55 2024 kern.info kernel: [    8.879947] xt_time: kernel timezone is -0000
Thu Jan 11 09:40:55 2024 kern.info kernel: [    9.075261] pci 0000:00:00.0: enabling device (0006 -> 0007)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    9.081044] mt7915e_hif 0000:01:00.0: enabling device (0000 -> 0002)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    9.087902] pci 0000:00:01.0: enabling device (0006 -> 0007)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    9.093614] mt7915e 0000:02:00.0: enabling device (0000 -> 0002)
Thu Jan 11 09:40:55 2024 kern.info kernel: [    9.380138] mt7915e 0000:02:00.0: HW/SW Version: 0x8a108a10, Build Time: 20220929104113a
Thu Jan 11 09:40:55 2024 kern.info kernel: [    9.380138]
Thu Jan 11 09:40:55 2024 user.info kernel: [    9.643861] urngd: v1.0.2 started.
Thu Jan 11 09:40:55 2024 kern.info kernel: [    9.878046] mt7915e 0000:02:00.0: WM Firmware Version: ____000000, Build Time: 20220929104145
Thu Jan 11 09:40:55 2024 kern.info kernel: [    9.918407] mt7915e 0000:02:00.0: WA Firmware Version: DEV_000000, Build Time: 20220929104205
Thu Jan 11 09:40:55 2024 kern.info kernel: [   10.037610] mt7915e 0000:02:00.0: registering led 'mt76-phy0'
Thu Jan 11 09:40:55 2024 kern.info kernel: [   10.047739] mt7915e 0000:02:00.0: registering led 'mt76-phy1'
Thu Jan 11 09:40:55 2024 kern.notice kernel: [   10.480347] random: crng init done
Thu Jan 11 09:40:55 2024 kern.notice kernel: [   10.483795] random: 33 urandom warning(s) missed due to ratelimiting
Thu Jan 11 09:40:55 2024 kern.info kernel: [   15.382159] PPP generic driver version 2.4.2
Thu Jan 11 09:40:55 2024 kern.info kernel: [   15.388497] NET: Registered PF_PPPOX protocol family
Thu Jan 11 09:40:55 2024 kern.info kernel: [   15.397677] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.
Thu Jan 11 09:40:55 2024 kern.info kernel: [   15.405504] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
Thu Jan 11 09:40:55 2024 user.info kernel: [   15.423871] kmodloader: done loading kernel modules from /etc/modules.d/*
Thu Jan 11 09:40:56 2024 user.notice dnsmasq: DNS rebinding protection is active, will discard upstream RFC1918 responses!
Thu Jan 11 09:40:56 2024 user.notice dnsmasq: Allowing 127.0.0.0/8 responses
Thu Jan 11 09:40:56 2024 daemon.info dnsmasq[1]: started, version 2.89 cachesize 1000
Thu Jan 11 09:40:56 2024 daemon.info dnsmasq[1]: DNS service limited to local subnets
Thu Jan 11 09:40:56 2024 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 inotify dumpfile
Thu Jan 11 09:40:56 2024 daemon.info dnsmasq[1]: UBus support enabled: connected to system bus
Thu Jan 11 09:40:56 2024 daemon.info dnsmasq[1]: using only locally-known addresses for test
Thu Jan 11 09:40:56 2024 daemon.info dnsmasq[1]: using only locally-known addresses for onion
Thu Jan 11 09:40:56 2024 daemon.info dnsmasq[1]: using only locally-known addresses for localhost
Thu Jan 11 09:40:56 2024 daemon.info dnsmasq[1]: using only locally-known addresses for local
Thu Jan 11 09:40:56 2024 daemon.info dnsmasq[1]: using only locally-known addresses for invalid
Thu Jan 11 09:40:56 2024 daemon.info dnsmasq[1]: using only locally-known addresses for bind
Thu Jan 11 09:40:56 2024 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Thu Jan 11 09:40:56 2024 daemon.warn dnsmasq[1]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Thu Jan 11 09:40:56 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Thu Jan 11 09:40:56 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 0 names
Thu Jan 11 09:41:01 2024 authpriv.info dropbear[1436]: Not backgrounding
Thu Jan 11 09:41:03 2024 user.notice : Added device handler type: bonding
Thu Jan 11 09:41:03 2024 user.notice : Added device handler type: 8021ad
Thu Jan 11 09:41:03 2024 user.notice : Added device handler type: 8021q
Thu Jan 11 09:41:03 2024 user.notice : Added device handler type: macvlan
Thu Jan 11 09:41:03 2024 user.notice : Added device handler type: veth
Thu Jan 11 09:41:03 2024 user.notice : Added device handler type: bridge
Thu Jan 11 09:41:03 2024 user.notice : Added device handler type: Network device
Thu Jan 11 09:41:03 2024 user.notice : Added device handler type: tunnel
Thu Jan 11 09:41:04 2024 daemon.notice wpa_supplicant[1545]: Successfully initialized wpa_supplicant
Thu Jan 11 09:41:06 2024 daemon.notice procd: /etc/rc.d/S50uhttpd: 4+0 records in
Thu Jan 11 09:41:06 2024 daemon.notice procd: /etc/rc.d/S50uhttpd: 4+0 records out
Thu Jan 11 09:41:06 2024 daemon.notice procd: /etc/rc.d/S50uhttpd: Generating EC private key
Thu Jan 11 09:41:06 2024 daemon.notice procd: /etc/rc.d/S50uhttpd: Generating selfsigned certificate with subject 'C=ZZ,ST=Somewhere,L=Unknown,O=OpenWrt7d6bba9f,CN=OpenWrt,' and validity 20240111094106-20260110094106
Thu Jan 11 09:41:06 2024 kern.info kernel: [   31.698551] mtk_soc_eth 1e100000.ethernet eth0: Link is Down
Thu Jan 11 09:41:06 2024 kern.info kernel: [   31.762316] mtk_soc_eth 1e100000.ethernet eth0: configuring for fixed/rgmii link mode
Thu Jan 11 09:41:06 2024 kern.info kernel: [   31.770754] mtk_soc_eth 1e100000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
Thu Jan 11 09:41:06 2024 kern.info kernel: [   31.780551] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Thu Jan 11 09:41:06 2024 kern.info kernel: [   31.798519] mt7530-mdio mdio-bus:1f lan1: configuring for phy/gmii link mode
Thu Jan 11 09:41:06 2024 kern.info kernel: [   31.808861] br-lan: port 1(lan1) entered blocking state
Thu Jan 11 09:41:06 2024 kern.info kernel: [   31.814137] br-lan: port 1(lan1) entered disabled state
Thu Jan 11 09:41:06 2024 kern.info kernel: [   31.822694] device lan1 entered promiscuous mode
Thu Jan 11 09:41:06 2024 kern.info kernel: [   31.827480] device eth0 entered promiscuous mode
Thu Jan 11 09:41:06 2024 daemon.notice netifd: Interface 'lan' is enabled
Thu Jan 11 09:41:06 2024 daemon.notice netifd: Interface 'lan' is setting up now
Thu Jan 11 09:41:06 2024 daemon.notice netifd: Interface 'lan' is now up
Thu Jan 11 09:41:06 2024 kern.info kernel: [   31.871899] mt7530-mdio mdio-bus:1f lan2: configuring for phy/gmii link mode
Thu Jan 11 09:41:06 2024 kern.info kernel: [   31.881437] br-lan: port 2(lan2) entered blocking state
Thu Jan 11 09:41:06 2024 kern.info kernel: [   31.886810] br-lan: port 2(lan2) entered disabled state
Thu Jan 11 09:41:06 2024 kern.info kernel: [   31.895123] device lan2 entered promiscuous mode
Thu Jan 11 09:41:06 2024 kern.info kernel: [   31.916606] mt7530-mdio mdio-bus:1f lan3: configuring for phy/gmii link mode
Thu Jan 11 09:41:06 2024 kern.info kernel: [   31.925877] br-lan: port 3(lan3) entered blocking state
Thu Jan 11 09:41:06 2024 kern.info kernel: [   31.931229] br-lan: port 3(lan3) entered disabled state
Thu Jan 11 09:41:06 2024 kern.info kernel: [   31.938641] device lan3 entered promiscuous mode
Thu Jan 11 09:41:06 2024 daemon.notice netifd: Interface 'loopback' is enabled
Thu Jan 11 09:41:06 2024 daemon.notice netifd: Interface 'loopback' is setting up now
Thu Jan 11 09:41:06 2024 daemon.notice netifd: Interface 'loopback' is now up
Thu Jan 11 09:41:06 2024 kern.info kernel: [   31.960606] mtk_soc_eth 1e100000.ethernet wan: PHY [mdio-bus:00] driver [Generic PHY] (irq=POLL)
Thu Jan 11 09:41:06 2024 kern.info kernel: [   31.969551] mtk_soc_eth 1e100000.ethernet wan: configuring for phy/rgmii link mode
Thu Jan 11 09:41:06 2024 daemon.notice netifd: Interface 'wan' is enabled
Thu Jan 11 09:41:06 2024 daemon.notice netifd: Interface 'wan6' is enabled
Thu Jan 11 09:41:06 2024 daemon.notice netifd: Network device 'eth0' link is up
Thu Jan 11 09:41:06 2024 daemon.notice netifd: Network device 'lo' link is up
Thu Jan 11 09:41:06 2024 daemon.notice netifd: Interface 'loopback' has link connectivity
Thu Jan 11 09:41:07 2024 daemon.err nlbwmon[2306]: The netlink receive buffer size of 524288 bytes will be capped to 180224 bytes
Thu Jan 11 09:41:07 2024 daemon.err nlbwmon[2306]: by the kernel. The net.core.rmem_max sysctl limit needs to be raised to
Thu Jan 11 09:41:07 2024 daemon.err nlbwmon[2306]: at least 524288 in order to sucessfully set the desired receive buffer size!
Thu Jan 11 09:41:07 2024 user.notice ucitrack: Setting up /etc/config/dhcp reload dependency on /etc/config/network
Thu Jan 11 09:41:07 2024 user.notice ucitrack: Setting up /etc/config/network reload dependency on /etc/config/wireless
Thu Jan 11 09:41:07 2024 user.notice ucitrack: Setting up /etc/config/luci-splash reload dependency on /etc/config/firewall
Thu Jan 11 09:41:07 2024 user.notice ucitrack: Setting up /etc/config/qos reload dependency on /etc/config/firewall
Thu Jan 11 09:41:08 2024 user.notice ucitrack: Setting up /etc/config/miniupnpd reload dependency on /etc/config/firewall
Thu Jan 11 09:41:08 2024 user.notice ucitrack: Setting up /etc/config/sqm reload dependency on /etc/config/firewall
Thu Jan 11 09:41:08 2024 user.notice firewall: Reloading firewall due to ifup of lan (br-lan)
Thu Jan 11 09:41:08 2024 user.notice ucitrack: Setting up /etc/config/odhcpd reload dependency on /etc/config/dhcp
Thu Jan 11 09:41:08 2024 kern.info kernel: [   33.439174] mt7530-mdio mdio-bus:1f lan2: Link is Up - 100Mbps/Full - flow control off
Thu Jan 11 09:41:08 2024 kern.info kernel: [   33.447288] br-lan: port 2(lan2) entered blocking state
Thu Jan 11 09:41:08 2024 kern.info kernel: [   33.452586] br-lan: port 2(lan2) entered forwarding state
Thu Jan 11 09:41:08 2024 daemon.notice netifd: Network device 'lan2' link is up
Thu Jan 11 09:41:08 2024 daemon.notice netifd: bridge 'br-lan' link is up
Thu Jan 11 09:41:08 2024 daemon.notice netifd: Interface 'lan' has link connectivity
Thu Jan 11 09:41:08 2024 kern.info kernel: [   33.466713] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready
Thu Jan 11 09:41:08 2024 user.notice ucitrack: Setting up non-init /etc/config/fstab reload handler: /sbin/block mount
Thu Jan 11 09:41:08 2024 user.notice ucitrack: Setting up /etc/config/system reload trigger for non-procd /etc/init.d/led
Thu Jan 11 09:41:08 2024 user.notice ucitrack: Setting up /etc/config/luci_statistics reload dependency on /etc/config/system
Thu Jan 11 09:41:08 2024 user.notice ucitrack: Setting up /etc/config/dhcp reload dependency on /etc/config/system
Thu Jan 11 09:41:09 2024 kern.warn kernel: [   34.397036] jffs2_scan_eraseblock(): End of filesystem marker found at 0x0
Thu Jan 11 09:41:09 2024 kern.warn kernel: [   34.403982] jffs2_build_filesystem(): unlocking the mtd device...
Thu Jan 11 09:41:09 2024 kern.warn kernel: [   34.403999] done.
Thu Jan 11 09:41:09 2024 user.notice nlbwmon: Reloading nlbwmon due to ifup of lan (br-lan)
Thu Jan 11 09:41:10 2024 kern.warn kernel: [   34.412211] jffs2_build_filesystem(): erasing all blocks after the end marker...
Thu Jan 11 09:41:10 2024 kern.info kernel: [   35.683787] mt7530-mdio mdio-bus:1f lan3: Link is Up - 1Gbps/Full - flow control rx/tx
Thu Jan 11 09:41:10 2024 kern.info kernel: [   35.699291] br-lan: port 3(lan3) entered blocking state
Thu Jan 11 09:41:10 2024 kern.info kernel: [   35.704541] br-lan: port 3(lan3) entered forwarding state
Thu Jan 11 09:41:10 2024 daemon.notice netifd: Network device 'lan3' link is up
Thu Jan 11 09:41:11 2024 kern.info kernel: [   36.116616] mtk_soc_eth 1e100000.ethernet wan: Link is Up - 1Gbps/Full - flow control rx/tx
Thu Jan 11 09:41:11 2024 kern.info kernel: [   36.125031] IPv6: ADDRCONF(NETDEV_CHANGE): wan: link becomes ready
Thu Jan 11 09:41:11 2024 daemon.notice netifd: Network device 'wan' link is up
Thu Jan 11 09:41:11 2024 daemon.notice netifd: Interface 'wan' has link connectivity
Thu Jan 11 09:41:11 2024 daemon.notice netifd: Interface 'wan' is setting up now
Thu Jan 11 09:41:11 2024 daemon.notice netifd: Interface 'wan6' has link connectivity
Thu Jan 11 09:41:11 2024 daemon.notice netifd: Interface 'wan6' is setting up now
Thu Jan 11 09:41:11 2024 daemon.notice netifd: wan (3039): udhcpc: started, v1.36.1
Thu Jan 11 09:41:11 2024 user.notice nlbwmon: Reloading nlbwmon due to ifup of loopback (lo)
Thu Jan 11 09:41:12 2024 daemon.err odhcp6c[3040]: Failed to send RS (Address not available)
Thu Jan 11 09:41:19 2024 daemon.notice netifd: wan (3039): udhcpc: broadcasting discover
Thu Jan 11 09:41:19 2024 daemon.notice netifd: wan (3039): udhcpc: broadcasting select for 192.168.50.156, server 192.168.50.1
Thu Jan 11 09:41:20 2024 daemon.notice netifd: wan (3039): udhcpc: lease of 192.168.50.156 obtained from 192.168.50.1, lease time 300
Thu Jan 11 09:41:21 2024 daemon.notice netifd: Interface 'wan' is now up
Thu Jan 11 09:41:21 2024 daemon.info dnsmasq[1]: reading /tmp/resolv.conf.d/resolv.conf.auto
Thu Jan 11 09:41:21 2024 daemon.info dnsmasq[1]: using nameserver 181.30.140.132#53
Thu Jan 11 09:41:21 2024 daemon.info dnsmasq[1]: using nameserver 181.30.140.197#53
Thu Jan 11 09:41:21 2024 daemon.info dnsmasq[1]: using only locally-known addresses for test
Thu Jan 11 09:41:21 2024 daemon.info dnsmasq[1]: using only locally-known addresses for onion
Thu Jan 11 09:41:21 2024 daemon.info dnsmasq[1]: using only locally-known addresses for localhost
Thu Jan 11 09:41:21 2024 daemon.info dnsmasq[1]: using only locally-known addresses for local
Thu Jan 11 09:41:21 2024 daemon.info dnsmasq[1]: using only locally-known addresses for invalid
Thu Jan 11 09:41:21 2024 daemon.info dnsmasq[1]: using only locally-known addresses for bind
Thu Jan 11 09:41:21 2024 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq[1]: exiting on receipt of SIGTERM
Thu Jan 11 09:41:22 2024 daemon.err procd: Got unexpected signal 1
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq[1]: started, version 2.89 cachesize 1000
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq[1]: DNS service limited to local subnets
Thu Jan 11 09:41:22 2024 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 inotify dumpfile
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq[1]: UBus support enabled: connected to system bus
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq-dhcp[1]: DHCP, IP range 192.168.1.100 -- 192.168.1.249, lease time 12h
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq[1]: using only locally-known addresses for test
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq[1]: using only locally-known addresses for onion
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq[1]: using only locally-known addresses for localhost
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq[1]: using only locally-known addresses for local
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq[1]: using only locally-known addresses for invalid
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq[1]: using only locally-known addresses for bind
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq[1]: reading /tmp/resolv.conf.d/resolv.conf.auto
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq[1]: using nameserver 181.30.140.132#53
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq[1]: using nameserver 181.30.140.197#53
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq[1]: using only locally-known addresses for test
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq[1]: using only locally-known addresses for onion
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq[1]: using only locally-known addresses for localhost
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq[1]: using only locally-known addresses for local
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq[1]: using only locally-known addresses for invalid
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq[1]: using only locally-known addresses for bind
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 4 names
Thu Jan 11 09:41:22 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Thu Jan 11 09:41:22 2024 daemon.warn odhcpd[1845]: No default route present, overriding ra_lifetime!
Thu Jan 11 09:41:22 2024 user.notice firewall: Reloading firewall due to ifup of wan (wan)
Thu Jan 11 09:41:24 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Thu Jan 11 09:41:24 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 4 names
Thu Jan 11 09:41:24 2024 daemon.info dnsmasq[1]: read /tmp/hosts/odhcpd - 2 names
Thu Jan 11 09:41:24 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Thu Jan 11 09:41:25 2024 daemon.info dnsmasq[1]: exiting on receipt of SIGTERM
Thu Jan 11 09:41:25 2024 user.notice nlbwmon: Reloading nlbwmon due to ifup of wan (wan)
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq[1]: started, version 2.89 cachesize 1000
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq[1]: DNS service limited to local subnets
Thu Jan 11 09:41:30 2024 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 inotify dumpfile
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq[1]: UBus support enabled: connected to system bus
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq-dhcp[1]: DHCP, IP range 192.168.1.100 -- 192.168.1.249, lease time 12h
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq[1]: using only locally-known addresses for test
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq[1]: using only locally-known addresses for onion
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq[1]: using only locally-known addresses for localhost
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq[1]: using only locally-known addresses for local
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq[1]: using only locally-known addresses for invalid
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq[1]: using only locally-known addresses for bind
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq[1]: reading /tmp/resolv.conf.d/resolv.conf.auto
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq[1]: using nameserver 181.30.140.132#53
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq[1]: using nameserver 181.30.140.197#53
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq[1]: using only locally-known addresses for test
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq[1]: using only locally-known addresses for onion
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq[1]: using only locally-known addresses for localhost
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq[1]: using only locally-known addresses for local
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq[1]: using only locally-known addresses for invalid
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq[1]: using only locally-known addresses for bind
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 4 names
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq[1]: read /tmp/hosts/odhcpd - 2 names
Thu Jan 11 09:41:30 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Thu Jan 11 09:41:34 2024 daemon.warn odhcpd[1845]: No default route present, overriding ra_lifetime!
Thu Jan 11 09:41:38 2024 daemon.warn odhcpd[1845]: No default route present, overriding ra_lifetime!
Thu Jan 11 09:41:39 2024 kern.warn kernel: [   64.880440] done.
Thu Jan 11 09:41:39 2024 kern.notice kernel: [   64.882416] jffs2: notice: (2814) jffs2_build_xattr_subsystem: complete building xattr subsystem, 0 of xdatum (0 unchecked, 0 orphan) and 0 of xref (0 dead, 0 orphan) found.
Thu Jan 11 09:41:40 2024 daemon.info mount_root: performing overlay whiteout
Thu Jan 11 09:41:40 2024 kern.warn kernel: [   65.142034] overlayfs: upper fs does not support tmpfile.
Thu Jan 11 09:41:40 2024 daemon.info mount_root: synchronizing overlay
Thu Jan 11 09:41:40 2024 daemon.err mount_root: failed to sync jffs2 overlay
Thu Jan 11 09:41:41 2024 daemon.info procd: - init complete -
Thu Jan 11 09:41:41 2024 daemon.info urandom_seed[3965]: Seed saved (/etc/urandom.seed)
Fri Jan 12 22:08:30 2024 daemon.err uhttpd[2181]: [info] luci: accepted login on / for root from 192.168.1.100
Fri Jan 12 22:08:37 2024 auth.err passwd: password for root changed by root
Fri Jan 12 22:08:51 2024 daemon.notice netifd: radio0 (4089): WARNING: Variable 'data' does not exist or is not an array/object
Fri Jan 12 22:08:51 2024 daemon.notice hostapd: Set new config for phy phy0:
Fri Jan 12 22:08:51 2024 daemon.notice wpa_supplicant[1545]: Set new config for phy phy0
Fri Jan 12 22:08:52 2024 daemon.notice wpa_supplicant[1545]: Set new config for phy phy0
Fri Jan 12 22:08:52 2024 daemon.notice hostapd: Set new config for phy phy0: /var/run/hostapd-phy0.conf
Fri Jan 12 22:08:52 2024 daemon.notice hostapd: Restart interface for phy phy0
Fri Jan 12 22:08:52 2024 daemon.notice hostapd: Configuration file: data: driver=nl80211 logger_syslog=127 logger_syslog_level=2 logger_stdout=127 logger_stdout_level=2 hw_mode=g supported_rates=60 90 120 180 240 360 480 540 basic_rates=60 120 240 beacon_int=100 chanlist=1 #num_global_macaddr=1 ieee80211n=1 ht_coex=0 ht_capab=[LDPC][SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][MAX-AMSDU-7935] ieee80211ax=1 he_su_beamformer=1 he_su_beamformee=1 he_mu_beamformer=1 he_bss_color=128 he_spr_sr_control=3 he_default_pe_duration=4 he_rts_threshold=1023 he_mu_edca_qos_info_param_count=0 he_mu_edca_qos_info_q_ack=0 he_mu_edca_qos_info_queue_request=0 he_mu_edca_qos_info_txop_request=0 he_mu_edca_ac_be_aifsn=8 he_mu_edca_ac_be_aci=0 he_mu_edca_ac_be_ecwmin=9 he_mu_edca_ac_be_ecwmax=10 he_mu_edca_ac_be_timer=255 he_mu_edca_ac_bk_aifsn=15 he_mu_edca_ac_bk_aci=1 he_mu_edca_ac_bk_ecwmin=9 he_mu_edca_ac_bk_ecwmax=10 he_mu_edca_ac_bk_timer=255 he_mu_edca_ac_vi_ecwmin=5 he_mu_edca_ac_vi_ecwmax=7 he_mu_edca_ac_vi_aifsn=5 he_mu_edca_ac_vi_aci=2 h
Fri Jan 12 22:08:52 2024 kern.info kernel: [   94.340743] br-lan: port 4(phy0-ap0) entered blocking state
Fri Jan 12 22:08:52 2024 kern.info kernel: [   94.346425] br-lan: port 4(phy0-ap0) entered disabled state
Fri Jan 12 22:08:52 2024 kern.info kernel: [   94.352682] device phy0-ap0 entered promiscuous mode
Fri Jan 12 22:08:52 2024 kern.info kernel: [   94.358241] br-lan: port 4(phy0-ap0) entered blocking state
Fri Jan 12 22:08:52 2024 kern.info kernel: [   94.363913] br-lan: port 4(phy0-ap0) entered forwarding state
Fri Jan 12 22:08:52 2024 kern.info kernel: [   94.370442] br-lan: port 4(phy0-ap0) entered disabled state
Fri Jan 12 22:08:52 2024 kern.info kernel: [   94.477116] IPv6: ADDRCONF(NETDEV_CHANGE): phy0-ap0: link becomes ready
Fri Jan 12 22:08:52 2024 kern.info kernel: [   94.484081] br-lan: port 4(phy0-ap0) entered blocking state
Fri Jan 12 22:08:52 2024 kern.info kernel: [   94.489751] br-lan: port 4(phy0-ap0) entered forwarding state
Fri Jan 12 22:08:52 2024 daemon.notice hostapd: phy0-ap0: interface state UNINITIALIZED->ENABLED
Fri Jan 12 22:08:52 2024 daemon.notice hostapd: phy0-ap0: AP-ENABLED
Fri Jan 12 22:08:52 2024 daemon.notice netifd: Wireless device 'radio0' is now up
Fri Jan 12 22:08:52 2024 daemon.notice netifd: Network device 'phy0-ap0' link is up
Fri Jan 12 22:08:54 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Fri Jan 12 22:08:54 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 4 names
Fri Jan 12 22:08:54 2024 daemon.info dnsmasq[1]: read /tmp/hosts/odhcpd - 2 names
Fri Jan 12 22:08:54 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Fri Jan 12 22:08:55 2024 daemon.warn odhcpd[1845]: No default route present, overriding ra_lifetime!
Fri Jan 12 22:09:00 2024 daemon.notice netifd: radio1 (4682): WARNING: Variable 'data' does not exist or is not an array/object
Fri Jan 12 22:09:00 2024 daemon.notice hostapd: Set new config for phy phy1:
Fri Jan 12 22:09:00 2024 daemon.notice wpa_supplicant[1545]: Set new config for phy phy1
Fri Jan 12 22:09:01 2024 daemon.notice wpa_supplicant[1545]: Set new config for phy phy1
Fri Jan 12 22:09:01 2024 daemon.notice hostapd: Set new config for phy phy1: /var/run/hostapd-phy1.conf
Fri Jan 12 22:09:01 2024 daemon.notice hostapd: Restart interface for phy phy1
Fri Jan 12 22:09:01 2024 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 chanlist=36 tx_queue_data2_burst=2.0 #num_global_macaddr=1 ieee80211n=1 ht_coex=0 ht_capab=[HT40+][LDPC][SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][MAX-AMSDU-7935] ieee80211ac=1 vht_oper_chwidth=1 vht_oper_centr_freq_seg0_idx=42 vht_capab=[RXLDPC][SHORT-GI-80][TX-STBC-2BY1][SU-BEAMFORMER][SU-BEAMFORMEE][MU-BEAMFORMER][MU-BEAMFORMEE][RX-ANTENNA-PATTERN][TX-ANTENNA-PATTERN][RX-STBC-1][SOUNDING-DIMENSION-2][BF-ANTENNA-2][MAX-MPDU-7991][MAX-A-MPDU-LEN-EXP7] ieee80211ax=1 he_oper_chwidth=1 he_oper_centr_freq_seg0_idx=42 he_su_beamformer=1 he_su_beamformee=1 he_mu_beamformer=1 he_bss_color=128 he_spr_sr_control=3 he_default_pe_duration=4 he_rts_threshold=1023 he_mu_edca_qos_info_param_count=0 he_mu_edca_qos_info_q_ack=0 he_mu_edca_qos_info_queue_request=0 he_mu_edca_qos_info_txop_request=0 he_mu_edca_ac_be_aifsn=8 he_mu_edca_ac_be_aci=0 he_
Fri Jan 12 22:09:01 2024 kern.info kernel: [  103.445622] br-lan: port 5(phy1-ap0) entered blocking state
Fri Jan 12 22:09:01 2024 kern.info kernel: [  103.451371] br-lan: port 5(phy1-ap0) entered disabled state
Fri Jan 12 22:09:01 2024 kern.info kernel: [  103.457836] device phy1-ap0 entered promiscuous mode
Fri Jan 12 22:09:01 2024 daemon.notice hostapd: phy1-ap0: interface state UNINITIALIZED->HT_SCAN
Fri Jan 12 22:09:01 2024 daemon.notice netifd: Wireless device 'radio1' is now up
Fri Jan 12 22:09:01 2024 kern.info kernel: [  104.082200] IPv6: ADDRCONF(NETDEV_CHANGE): phy1-ap0: link becomes ready
Fri Jan 12 22:09:01 2024 kern.info kernel: [  104.089215] br-lan: port 5(phy1-ap0) entered blocking state
Fri Jan 12 22:09:01 2024 kern.info kernel: [  104.094806] br-lan: port 5(phy1-ap0) entered forwarding state
Fri Jan 12 22:09:01 2024 daemon.notice netifd: Network device 'phy1-ap0' link is up
Fri Jan 12 22:09:01 2024 daemon.notice hostapd: phy1-ap0: interface state HT_SCAN->ENABLED
Fri Jan 12 22:09:01 2024 daemon.notice hostapd: phy1-ap0: AP-ENABLED
Fri Jan 12 22:09:03 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Fri Jan 12 22:09:03 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 4 names
Fri Jan 12 22:09:03 2024 daemon.info dnsmasq[1]: read /tmp/hosts/odhcpd - 2 names
Fri Jan 12 22:09:03 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Fri Jan 12 22:09:04 2024 daemon.warn odhcpd[1845]: No default route present, overriding ra_lifetime!
Fri Jan 12 22:10:10 2024 daemon.info hostapd: phy0-ap0: STA 48:13:7e:8e:bd:d2 IEEE 802.11: authenticated
Fri Jan 12 22:10:10 2024 daemon.info hostapd: phy0-ap0: STA 48:13:7e:8e:bd:d2 IEEE 802.11: associated (aid 1)
Fri Jan 12 22:10:10 2024 daemon.notice hostapd: phy0-ap0: AP-STA-CONNECTED 48:13:7e:8e:bd:d2 auth_alg=open
Fri Jan 12 22:10:10 2024 daemon.info hostapd: phy0-ap0: STA 48:13:7e:8e:bd:d2 RADIUS: starting accounting session 9440FF6F49DE5B78
Fri Jan 12 22:10:11 2024 daemon.warn odhcpd[1845]: No default route present, overriding ra_lifetime!
Fri Jan 12 22:10:11 2024 daemon.warn odhcpd[1845]: No default route present, overriding ra_lifetime!
Fri Jan 12 22:10:13 2024 kern.info kernel: [  175.338763] device phy0-ap0 left promiscuous mode
Fri Jan 12 22:10:13 2024 kern.info kernel: [  175.343745] br-lan: port 4(phy0-ap0) entered disabled state
Fri Jan 12 22:10:13 2024 kern.info kernel: [  175.418206] device phy1-ap0 left promiscuous mode
Fri Jan 12 22:10:13 2024 kern.info kernel: [  175.423143] br-lan: port 5(phy1-ap0) entered disabled state
Fri Jan 12 22:10:14 2024 daemon.info dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) 48:13:7e:8e:bd:d2
Fri Jan 12 22:10:14 2024 daemon.info dnsmasq-dhcp[1]: DHCPOFFER(br-lan) 192.168.1.114 48:13:7e:8e:bd:d2
Fri Jan 12 22:10:15 2024 daemon.notice wpa_supplicant[1545]: Set new config for phy phy0
Fri Jan 12 22:10:15 2024 daemon.notice wpa_supplicant[1545]: Set new config for phy phy1
Fri Jan 12 22:10:15 2024 daemon.notice hostapd: Set new config for phy phy0: /var/run/hostapd-phy0.conf
Fri Jan 12 22:10:15 2024 daemon.notice hostapd: Restart interface for phy phy0
Fri Jan 12 22:10:15 2024 daemon.notice hostapd: Remove interface 'phy0'
Fri Jan 12 22:10:15 2024 daemon.notice hostapd: phy0-ap0: interface state ENABLED->DISABLED
Fri Jan 12 22:10:15 2024 daemon.notice hostapd: phy0-ap0: AP-STA-DISCONNECTED 48:13:7e:8e:bd:d2
Fri Jan 12 22:10:15 2024 daemon.notice hostapd: phy0-ap0: AP-DISABLED
Fri Jan 12 22:10:15 2024 daemon.notice hostapd: phy0-ap0: CTRL-EVENT-TERMINATING
Fri Jan 12 22:10:15 2024 daemon.err hostapd: rmdir[ctrl_interface=/var/run/hostapd]: Permission denied
Fri Jan 12 22:10:15 2024 daemon.notice hostapd: nl80211: deinit ifname=phy0-ap0 disabled_11b_rates=0
Fri Jan 12 22:10:15 2024 daemon.notice hostapd: nl80211: Failed to remove interface phy0-ap0 from bridge br-lan: Invalid argument
Fri Jan 12 22:10:15 2024 daemon.notice hostapd: Configuration file: data: driver=nl80211 logger_syslog=127 logger_syslog_level=2 logger_stdout=127 logger_stdout_level=2 country_code=AR ieee80211d=1 hw_mode=g supported_rates=60 90 120 180 240 360 480 540 basic_rates=60 120 240 beacon_int=100 chanlist=11 #num_global_macaddr=1 ieee80211n=1 ht_coex=0 ht_capab=[LDPC][SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][MAX-AMSDU-7935] ieee80211ax=1 he_su_beamformer=1 he_su_beamformee=1 he_mu_beamformer=1 he_bss_color=128 he_spr_sr_control=3 he_default_pe_duration=4 he_rts_threshold=1023 he_mu_edca_qos_info_param_count=0 he_mu_edca_qos_info_q_ack=0 he_mu_edca_qos_info_queue_request=0 he_mu_edca_qos_info_txop_request=0 he_mu_edca_ac_be_aifsn=8 he_mu_edca_ac_be_aci=0 he_mu_edca_ac_be_ecwmin=9 he_mu_edca_ac_be_ecwmax=10 he_mu_edca_ac_be_timer=255 he_mu_edca_ac_bk_aifsn=15 he_mu_edca_ac_bk_aci=1 he_mu_edca_ac_bk_ecwmin=9 he_mu_edca_ac_bk_ecwmax=10 he_mu_edca_ac_bk_timer=255 he_mu_edca_ac_vi_ecwmin=5 he_mu_edca_ac_vi_ecwmax=7 he_mu_edca_ac_vi_ai
Fri Jan 12 22:10:15 2024 daemon.err hostapd: VLAN file '/var/run/hostapd-2g_lag.vlan' not readable.
Fri Jan 12 22:10:15 2024 daemon.err hostapd: Line 82: failed to read VLAN file '/var/run/hostapd-2g_lag.vlan'
Fri Jan 12 22:10:15 2024 daemon.err hostapd: 1 errors found in configuration file '<inline>'
Fri Jan 12 22:10:15 2024 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 country_code=AR ieee80211d=1 hw_mode=g supported_rates=60 90 120 180 240 360 480 540 basic_rates=60 120 240 beacon_int=100 chanlist=11 #num_global_macaddr=1 ieee80211n=1 ht_coex=0 ht_capab=[LDPC][SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][MAX-AMSDU-7935] ieee80211ax=1 he_su_beamformer=1 he_su_beamformee=1 he_mu_beamformer=1 he_bss_color=128 he_spr_sr_control=3 he_default_pe_duration=4 he_rts_threshold=1023 he_mu_edca_qos_info_param_count=0 he_mu_edca_qos_info_q_ack=0 he_mu_edca_qos_info_queue_request=0 he_mu_edca_qos_info_txop_request=0 he_mu_edca_ac_be_aifsn=8 he_mu_edca_ac_be_aci=0 he_mu_edca_ac_be_ecwmin=9 he_mu_edca_ac_be_ecwmax=10 he_mu_edca_ac_be_timer=255 he_mu_edca_ac_bk_aifsn=15 he_mu_edca_ac_bk_aci=1 he_mu_edca_ac_bk_ecwmin=9 he_mu_edca_ac_bk_ecwmax=10 he_mu_edca_ac_bk_timer=255 he_mu_edca_ac_vi_ecwmin=5 he_mu_edca_ac_vi_ecwmax=7 he_mu_e
Fri Jan 12 22:10:15 2024 daemon.notice hostapd: hostapd.add_iface failed for phy phy0 ifname=2g_lag
Fri Jan 12 22:10:15 2024 daemon.notice hostapd: Set new config for phy phy1: /var/run/hostapd-phy1.conf
Fri Jan 12 22:10:15 2024 daemon.notice hostapd: Restart interface for phy phy1
Fri Jan 12 22:10:15 2024 daemon.notice hostapd: Remove interface 'phy1'
Fri Jan 12 22:10:15 2024 daemon.notice hostapd: phy1-ap0: interface state ENABLED->DISABLED
Fri Jan 12 22:10:15 2024 daemon.notice hostapd: phy1-ap0: AP-DISABLED
Fri Jan 12 22:10:15 2024 daemon.notice hostapd: phy1-ap0: CTRL-EVENT-TERMINATING
Fri Jan 12 22:10:15 2024 daemon.err hostapd: rmdir[ctrl_interface=/var/run/hostapd]: Permission denied
Fri Jan 12 22:10:15 2024 daemon.notice hostapd: nl80211: deinit ifname=phy1-ap0 disabled_11b_rates=0
Fri Jan 12 22:10:15 2024 daemon.notice hostapd: nl80211: Failed to remove interface phy1-ap0 from bridge br-lan: Invalid argument
Fri Jan 12 22:10:16 2024 daemon.notice hostapd: Configuration file: data: driver=nl80211 logger_syslog=127 logger_syslog_level=2 logger_stdout=127 logger_stdout_level=2 country_code=AR ieee80211d=1 ieee80211h=1 hw_mode=a beacon_int=100 chanlist=36 tx_queue_data2_burst=2.0 #num_global_macaddr=1 ieee80211n=1 ht_coex=0 ht_capab=[HT40+][LDPC][SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][MAX-AMSDU-7935] ieee80211ac=1 vht_oper_chwidth=1 vht_oper_centr_freq_seg0_idx=42 vht_capab=[RXLDPC][SHORT-GI-80][TX-STBC-2BY1][SU-BEAMFORMER][SU-BEAMFORMEE][MU-BEAMFORMER][MU-BEAMFORMEE][RX-ANTENNA-PATTERN][TX-ANTENNA-PATTERN][RX-STBC-1][SOUNDING-DIMENSION-2][BF-ANTENNA-2][MAX-MPDU-7991][MAX-A-MPDU-LEN-EXP7] ieee80211ax=1 he_oper_chwidth=1 he_oper_centr_freq_seg0_idx=42 he_su_beamformer=1 he_su_beamformee=1 he_mu_beamformer=1 he_bss_color=128 he_spr_sr_control=3 he_default_pe_duration=4 he_rts_threshold=1023 he_mu_edca_qos_info_param_count=0 he_mu_edca_qos_info_q_ack=0 he_mu_edca_qos_info_queue_request=0 he_mu_edca_qos_info_txop_request=0 he_mu_edc
Fri Jan 12 22:10:16 2024 daemon.err hostapd: VLAN file '/var/run/hostapd-5g_lag.vlan' not readable.
Fri Jan 12 22:10:16 2024 daemon.err hostapd: Line 88: failed to read VLAN file '/var/run/hostapd-5g_lag.vlan'
Fri Jan 12 22:10:16 2024 daemon.err hostapd: 1 errors found in configuration file '<inline>'
Fri Jan 12 22:10:16 2024 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 country_code=AR ieee80211d=1 ieee80211h=1 hw_mode=a beacon_int=100 chanlist=36 tx_queue_data2_burst=2.0 #num_global_macaddr=1 ieee80211n=1 ht_coex=0 ht_capab=[HT40+][LDPC][SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][MAX-AMSDU-7935] ieee80211ac=1 vht_oper_chwidth=1 vht_oper_centr_freq_seg0_idx=42 vht_capab=[RXLDPC][SHORT-GI-80][TX-STBC-2BY1][SU-BEAMFORMER][SU-BEAMFORMEE][MU-BEAMFORMER][MU-BEAMFORMEE][RX-ANTENNA-PATTERN][TX-ANTENNA-PATTERN][RX-STBC-1][SOUNDING-DIMENSION-2][BF-ANTENNA-2][MAX-MPDU-7991][MAX-A-MPDU-LEN-EXP7] ieee80211ax=1 he_oper_chwidth=1 he_oper_centr_freq_seg0_idx=42 he_su_beamformer=1 he_su_beamformee=1 he_mu_beamformer=1 he_bss_color=128 he_spr_sr_control=3 he_default_pe_duration=4 he_rts_threshold=1023 he_mu_edca_qos_info_param_count=0 he_mu_edca_qos_info_q_ack=0 he_mu_edca_qos_info_queue_request=0 he_mu_edca_qos_info_txop_request
Fri Jan 12 22:10:16 2024 daemon.notice hostapd: hostapd.add_iface failed for phy phy1 ifname=5g_lag
Fri Jan 12 22:10:16 2024 daemon.notice netifd: Wireless device 'radio0' is now up
Fri Jan 12 22:10:16 2024 daemon.notice netifd: Wireless device 'radio1' is now up
Fri Jan 12 22:10:16 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Fri Jan 12 22:10:16 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 4 names
Fri Jan 12 22:10:16 2024 daemon.info dnsmasq[1]: read /tmp/hosts/odhcpd - 2 names
Fri Jan 12 22:10:16 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Fri Jan 12 22:10:17 2024 daemon.warn odhcpd[1845]: No default route present, overriding ra_lifetime!
Fri Jan 12 22:10:33 2024 daemon.notice netifd: wan (3039): udhcpc: sending renew to server 192.168.50.1
Fri Jan 12 22:10:33 2024 daemon.notice netifd: wan (3039): udhcpc: lease of 192.168.50.156 obtained from 192.168.50.1, lease time 300
Fri Jan 12 22:12:05 2024 authpriv.info dropbear[5963]: Child connection from 192.168.1.100:55394
Fri Jan 12 22:12:08 2024 authpriv.notice dropbear[5963]: Password auth succeeded for 'root' from 192.168.1.100:55394
root@OpenWrt:~# cat /var/run/hostapd-*.conf
driver=nl80211
logger_syslog=127
logger_syslog_level=2
logger_stdout=127
logger_stdout_level=2
country_code=AR
ieee80211d=1
hw_mode=g
supported_rates=60 90 120 180 240 360 480 540
basic_rates=60 120 240
beacon_int=100
channel=11
chanlist=11



#num_global_macaddr=1
ieee80211n=1
ht_coex=0
ht_capab=[LDPC][SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][MAX-AMSDU-7935]
ieee80211ax=1
he_su_beamformer=1
he_su_beamformee=1
he_mu_beamformer=1
he_bss_color=128
he_spr_sr_control=3
he_default_pe_duration=4
he_rts_threshold=1023
he_mu_edca_qos_info_param_count=0
he_mu_edca_qos_info_q_ack=0
he_mu_edca_qos_info_queue_request=0
he_mu_edca_qos_info_txop_request=0
he_mu_edca_ac_be_aifsn=8
he_mu_edca_ac_be_aci=0
he_mu_edca_ac_be_ecwmin=9
he_mu_edca_ac_be_ecwmax=10
he_mu_edca_ac_be_timer=255
he_mu_edca_ac_bk_aifsn=15
he_mu_edca_ac_bk_aci=1
he_mu_edca_ac_bk_ecwmin=9
he_mu_edca_ac_bk_ecwmax=10
he_mu_edca_ac_bk_timer=255
he_mu_edca_ac_vi_ecwmin=5
he_mu_edca_ac_vi_ecwmax=7
he_mu_edca_ac_vi_aifsn=5
he_mu_edca_ac_vi_aci=2
he_mu_edca_ac_vi_timer=255
he_mu_edca_ac_vo_aifsn=5
he_mu_edca_ac_vo_aci=3
he_mu_edca_ac_vo_ecwmin=5
he_mu_edca_ac_vo_ecwmax=7
he_mu_edca_ac_vo_timer=255

interface=2g_lag
ctrl_interface=/var/run/hostapd
ap_isolate=1
bss_load_update_period=60
chan_util_avg_period=600
disassoc_low_ack=1
skip_inactivity_poll=0
preamble=1
wmm_enabled=1
ignore_broadcast_ssid=0
uapsd_advertisement_enabled=1
utf8_ssid=1
multi_ap=0
wpa_passphrase=pass
wpa_psk_file=/var/run/hostapd-2g_lag.psk
auth_algs=1
wpa=2
wpa_pairwise=CCMP
ssid=LAG
bridge=br-lan
wds_bridge=
snoop_iface=br-lan
wpa_disable_eapol_key_retries=0
wpa_key_mgmt=WPA-PSK
okc=0
disable_pmksa_caching=1
dynamic_vlan=0
vlan_naming=1
vlan_no_bridge=1
vlan_file=/var/run/hostapd-2g_lag.vlan
qos_map_set=0,0,2,16,1,1,255,255,18,22,24,38,40,40,44,46,48,56
bssid=00:eb:d8:bc:33:2b
#default_macaddr


driver=nl80211
logger_syslog=127
logger_syslog_level=2
logger_stdout=127
logger_stdout_level=2
country_code=AR
ieee80211d=1
ieee80211h=1
hw_mode=a
beacon_int=100
channel=36
chanlist=36

tx_queue_data2_burst=2.0

#num_global_macaddr=1
ieee80211n=1
ht_coex=0
ht_capab=[HT40+][LDPC][SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][MAX-AMSDU-7935]
ieee80211ac=1
vht_oper_chwidth=1
vht_oper_centr_freq_seg0_idx=42
vht_capab=[RXLDPC][SHORT-GI-80][TX-STBC-2BY1][SU-BEAMFORMER][SU-BEAMFORMEE][MU-BEAMFORMER][MU-BEAMFORMEE][RX-ANTENNA-PATTERN][TX-ANTENNA-PATTERN][RX-STBC-1][SOUNDING-DIMENSION-2][BF-ANTENNA-2][MAX-MPDU-7991][MAX-A-MPDU-LEN-EXP7]
ieee80211ax=1
he_oper_chwidth=1
he_oper_centr_freq_seg0_idx=42
he_su_beamformer=1
he_su_beamformee=1
he_mu_beamformer=1
he_bss_color=128
he_spr_sr_control=3
he_default_pe_duration=4
he_rts_threshold=1023
he_mu_edca_qos_info_param_count=0
he_mu_edca_qos_info_q_ack=0
he_mu_edca_qos_info_queue_request=0
he_mu_edca_qos_info_txop_request=0
he_mu_edca_ac_be_aifsn=8
he_mu_edca_ac_be_aci=0
he_mu_edca_ac_be_ecwmin=9
he_mu_edca_ac_be_ecwmax=10
he_mu_edca_ac_be_timer=255
he_mu_edca_ac_bk_aifsn=15
he_mu_edca_ac_bk_aci=1
he_mu_edca_ac_bk_ecwmin=9
he_mu_edca_ac_bk_ecwmax=10
he_mu_edca_ac_bk_timer=255
he_mu_edca_ac_vi_ecwmin=5
he_mu_edca_ac_vi_ecwmax=7
he_mu_edca_ac_vi_aifsn=5
he_mu_edca_ac_vi_aci=2
he_mu_edca_ac_vi_timer=255
he_mu_edca_ac_vo_aifsn=5
he_mu_edca_ac_vo_aci=3
he_mu_edca_ac_vo_ecwmin=5
he_mu_edca_ac_vo_ecwmax=7
he_mu_edca_ac_vo_timer=255

interface=5g_lag
ctrl_interface=/var/run/hostapd
ap_isolate=1
bss_load_update_period=60
chan_util_avg_period=600
disassoc_low_ack=1
skip_inactivity_poll=0
preamble=1
wmm_enabled=1
ignore_broadcast_ssid=0
uapsd_advertisement_enabled=1
utf8_ssid=1
multi_ap=0
wpa_passphrase=pass
wpa_psk_file=/var/run/hostapd-5g_lag.psk
auth_algs=1
wpa=2
wpa_pairwise=CCMP
ssid=LAG
bridge=br-lan
wds_bridge=
snoop_iface=br-lan
wpa_disable_eapol_key_retries=0
wpa_key_mgmt=WPA-PSK
okc=0
disable_pmksa_caching=1
dynamic_vlan=0
vlan_naming=1
vlan_no_bridge=1
vlan_file=/var/run/hostapd-5g_lag.vlan
qos_map_set=0,0,2,16,1,1,255,255,18,22,24,38,40,40,44,46,48,56
bssid=00:eb:d8:bc:33:2a
#default_macaddr

@JuliusBairaktaris
Copy link

@JuliusBairaktaris JuliusBairaktaris commented on b7f9742 Jan 13, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Experiencing the same problem as @castillofrancodamian with my Xiaomi AX3600 (qualcommax). Found that turning off encryption for the WiFi network resolves the issue. Hoping this insight assists @nbd168 in identifying the root cause of the error.

@nbd168
Copy link
Member Author

@nbd168 nbd168 commented on b7f9742 Jan 13, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for reporting back. I've reverted this commit for now and will add it back once I've had the time to figure out and fix the cause of these issues.

Please sign in to comment.