ZBT WG1608 keeps restarting every 1-2 minutes

Hi.

I am very new to openwrt.
I have the ZBT wg1608 router with the quectel rm502q-ae 5g modem installed in the m.2 slot of the router. I was running the stock firmware which is the old lede 17.01. I installed the latest nightly openwrt using the GUI. I didn’t choose the option to keep settings. Everything seemed to install fine but while configuring the newly installed openwrt, the router keeps on restarting every a minute or two. I searched online and found that it is perhaps because the router has a hardware watchdog. I don’t know if this is the real reason or not. Is there a solution to disable this watchdog in the firmware so that I could setup the router without constantly being interrupted by the reboots? Thanks!

Why did you go with a Snapshot build instead of the stable 22.03 release? Did you try 22.03 at all?

Hi. Thanks for the help. I tried this build tonight but I got the same result. Thanks!

The WG1608 has a hardware watchdog and the router DTS file has nothing in to handle that. This will cause a reboot after about a minute. Whoever added support must have had an older version that had this disabled.

GPIO 3 needs to be pulsed regularly to reset the watchdog. This can be added to the DTS file (see the WG1602 DTS for how this is done) or by a script that starts when the router boots up.

2 Likes

Thank you so much for the explanation and the hints but I am afraid I won’t be able to do this on my own as it is beyond my skill level. If someone could please share the script or how to edit the DTS file and make an image would be much appreciated. Thanks!

This only works if you are building your firmware with an OpenWrt build system. From the sounds of it you aren't.

To use this you need to know how to access the router's file system via SSH and edit one file and add another. A program like WinSCP works very well for this.

Otherwise the fix can't be done.

Hi. I can ssh into the router and edit files this is easy as linux fedora is my main OS. I never tried to build an openwrt firmware but I could read how to.

The script that pulses GPIO 3 on and off would go something like this:

#!/bin/sh

echo 3 > /sys/class/gpio/export
echo "out" > /sys/class/gpio/gpio3/direction

while 1:
echo 1 > /sys/class/gpio/gpio3/value
sleep 20
echo 0 > /sys/class/gpio/gpio3/value
sleep 20
wend
1 Like

Thank you for the script. Is this just an example or is it correct the gpio should be 3? Thanks!

It is a working script with the correct GPIO.

You need to start this in it's own thread as it never exits so edit /etc/rc.local or use System->Startup and Local Startup to add this.

/etc/watchdog.sh &

assuming that you put the above script in /etc/watchdog.sh. The watchdog script needs to have permissions set to execute as well.

You need to be fast when copying the watchdog file over and adding to rc.local as you only have about a minute before it reboots.

1 Like

I have just had the opportunity to try it and unfortunately it did not work.

Here is what I did: 1- make a file watchdog.sh in /etc/ and fill it with the above script. Made this file executable by running chmod 755 /etc/watchdog.sh and chmod +x /etc/watchdog.sh I then went to luci... System.. startup and local startup and entered /etc/watchdog.sh &

It still reboots every 1-2 minutes. I copied the system log and kernel log

[    0.000000] Linux version 5.10.161 (builder@buildhost) (mipsel-openwrt-linux-musl-gcc (OpenWrt GCC 11.2.0 r20028-43d71ad93e) 11.2.0, GNU ld (GNU Binutils) 2.37) #0 SMP Tue Jan 3 00:24:21 2023
[    0.000000] SoC Type: MediaTek MT7621 ver:1 eco:3
[    0.000000] printk: bootconsole [early0] enabled
[    0.000000] CPU0 revision is: 0001992f (MIPS 1004Kc)
[    0.000000] MIPS: machine is Zbtlink ZBT-WG1608 (16M)
[    0.000000] Initrd not found or empty - disabling initrd
[    0.000000] VPE topology {2,2} total 4
[    0.000000] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes.
[    0.000000] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes
[    0.000000] MIPS secondary cache 256kB, 8-way, linesize 32 bytes.
[    0.000000] Zone ranges:
[    0.000000]   Normal   [mem 0x0000000000000000-0x000000000fffffff]
[    0.000000]   HighMem  empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000000000-0x000000000fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x000000000fffffff]
[    0.000000] On node 0 totalpages: 65536
[    0.000000]   Normal zone: 576 pages used for memmap
[    0.000000]   Normal zone: 0 pages reserved
[    0.000000]   Normal zone: 65536 pages, LIFO batch:15
[    0.000000] percpu: Embedded 15 pages/cpu s30480 r8192 d22768 u61440
[    0.000000] pcpu-alloc: s30480 r8192 d22768 u61440 alloc=15*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 64960
[    0.000000] Kernel command line: console=ttyS0,115200 rootfstype=squashfs,jffs2
[    0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes, linear)
[    0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes, linear)
[    0.000000] Writing ErrCtl register=0001a831
[    0.000000] Readback ErrCtl register=0001a831
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] Memory: 249296K/262144K available (7039K kernel code, 630K rwdata, 832K rodata, 1276K init, 243K bss, 12848K reserved, 0K cma-reserved, 0K highmem)
[    0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] rcu: Hierarchical RCU implementation.
[    0.000000] 	Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.000000] NR_IRQS: 256
[    0.000000] CPU Clock: 880MHz
[    0.000000] clocksource: GIC: mask: 0xffffffffffffffff max_cycles: 0xcaf478abb4, max_idle_ns: 440795247997 ns
[    0.000014] sched_clock: 64 bits at 880MHz, resolution 1ns, wraps every 4398046511103ns
[    0.007947] clocksource: MIPS: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 4343773742 ns
[    0.017019] Calibrating delay loop... 586.13 BogoMIPS (lpj=2930688)
[    0.083174] pid_max: default: 32768 minimum: 301
[    0.087948] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.095151] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.105890] rcu: Hierarchical SRCU implementation.
[    0.110939] dyndbg: Ignore empty _ddebug table in a CONFIG_DYNAMIC_DEBUG_CORE build
[    0.119069] smp: Bringing up secondary CPUs ...
[    0.124366] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes.
[    0.124376] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes
[    0.124390] MIPS secondary cache 256kB, 8-way, linesize 32 bytes.
[    0.124470] CPU1 revision is: 0001992f (MIPS 1004Kc)
[    0.178835] Synchronize counters for CPU 1: done.
[    0.211151] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes.
[    0.211160] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes
[    0.211169] MIPS secondary cache 256kB, 8-way, linesize 32 bytes.
[    0.211217] CPU2 revision is: 0001992f (MIPS 1004Kc)
[    0.270212] Synchronize counters for CPU 2: done.
[    0.300834] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes.
[    0.300843] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes
[    0.300852] MIPS secondary cache 256kB, 8-way, linesize 32 bytes.
[    0.300905] CPU3 revision is: 0001992f (MIPS 1004Kc)
[    0.355401] Synchronize counters for CPU 3: done.
[    0.385275] smp: Brought up 1 node, 4 CPUs
[    0.393906] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.403744] futex hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    0.410795] pinctrl core: initialized pinctrl subsystem
[    0.418661] NET: Registered protocol family 16
[    0.424408] thermal_sys: Registered thermal governor 'step_wise'
[    0.425302] cpuidle: using governor teo
[    0.448464] FPU Affinity set after 11720 emulations
[    0.477464] clocksource: Switched to clocksource GIC
[    0.484423] NET: Registered protocol family 2
[    0.489178] IP idents hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    0.497845] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes, linear)
[    0.506164] TCP established hash table entries: 2048 (order: 1, 8192 bytes, linear)
[    0.513831] TCP bind hash table entries: 2048 (order: 2, 16384 bytes, linear)
[    0.520919] TCP: Hash tables configured (established 2048 bind 2048)
[    0.527350] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
[    0.533834] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
[    0.541070] NET: Registered protocol family 1
[    0.545368] PCI: CLS 0 bytes, default 32
[    0.551503] workingset: timestamp_bits=14 max_order=16 bucket_order=2
[    0.562469] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.568267] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc.
[    0.579050] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    0.588527] mt7621_gpio 1e000600.gpio: registering 32 gpios
[    0.594353] mt7621_gpio 1e000600.gpio: registering 32 gpios
[    0.600243] mt7621_gpio 1e000600.gpio: registering 32 gpios
[    0.606835] Serial: 8250/16550 driver, 16 ports, IRQ sharing enabled
[    0.617967] printk: console [ttyS0] disabled
[    0.622283] 1e000c00.uartlite: ttyS0 at MMIO 0x1e000c00 (irq = 19, base_baud = 3125000) is a 16550A
[    0.631295] printk: console [ttyS0] enabled
[    0.639558] printk: bootconsole [early0] disabled
[    0.652802] spi-mt7621 1e000b00.spi: sys_freq: 220000000
[    0.659794] spi-nor spi0.0: w25q128 (16384 Kbytes)
[    0.664648] 4 fixed-partitions partitions found on MTD device spi0.0
[    0.671089] OF: Bad cell count for /palmbus@1e000000/spi@b00/flash@0/partitions
[    0.678427] OF: Bad cell count for /palmbus@1e000000/spi@b00/flash@0/partitions
[    0.686664] OF: Bad cell count for /palmbus@1e000000/spi@b00/flash@0/partitions
[    0.694032] OF: Bad cell count for /palmbus@1e000000/spi@b00/flash@0/partitions
[    0.701623] Creating 4 MTD partitions on "spi0.0":
[    0.706423] 0x000000000000-0x000000030000 : "u-boot"
[    0.712530] 0x000000030000-0x000000040000 : "u-boot-env"
[    0.719030] 0x000000040000-0x000000050000 : "factory"
[    0.725239] 0x000000050000-0x000001000000 : "firmware"
[    0.731724] 2 uimage-fw partitions found on MTD device firmware
[    0.737695] Creating 2 MTD partitions on "firmware":
[    0.742649] 0x000000000000-0x00000029229c : "kernel"
[    0.747611] mtd: partition "kernel" doesn't end on an erase/write block -- force read-only
[    0.756982] 0x00000029229c-0x000000fb0000 : "rootfs"
[    0.761990] mtd: partition "rootfs" doesn't start on an erase/write block boundary -- force read-only
[    0.772144] mtd: setting mtd5 (rootfs) as root device
[    0.777332] 1 squashfs-split partitions found on MTD device rootfs
[    0.783557] 0x0000006c0000-0x000000fb0000 : "rootfs_data"
[    0.839251] mt7530 mdio-bus:1f: MT7530 adapts as multi-chip module
[    0.849371] mtk_soc_eth 1e100000.ethernet eth0: mediatek frame engine at 0xbe100000, irq 22
[    0.858900] i2c /dev entries driver
[    0.865335] mt7621-pci 1e140000.pcie: host bridge /pcie@1e140000 ranges:
[    0.872124] mt7621-pci 1e140000.pcie:   No bus range found for /pcie@1e140000, using [bus 00-ff]
[    0.880937] mt7621-pci 1e140000.pcie:      MEM 0x0060000000..0x006fffffff -> 0x0000000000
[    0.889119] mt7621-pci 1e140000.pcie:       IO 0x001e160000..0x001e16ffff -> 0x0000000000
[    0.897420] mt7621-pci 1e140000.pcie: Parsing DT failed
[    0.905217] NET: Registered protocol family 10
[    0.911482] Segment Routing with IPv6
[    0.915237] NET: Registered protocol family 17
[    0.919893] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[    0.933259] 8021q: 802.1Q VLAN Support v1.8
[    0.941008] mt7530 mdio-bus:1f: MT7530 adapts as multi-chip module
[    0.973493] mt7530 mdio-bus:1f lan1 (uninitialized): PHY [mt7530-0:00] driver [MediaTek MT7530 PHY] (irq=27)
[    0.986046] mt7530 mdio-bus:1f lan2 (uninitialized): PHY [mt7530-0:01] driver [MediaTek MT7530 PHY] (irq=28)
[    0.998516] mt7530 mdio-bus:1f lan3 (uninitialized): PHY [mt7530-0:02] driver [MediaTek MT7530 PHY] (irq=29)
[    1.010956] mt7530 mdio-bus:1f lan4 (uninitialized): PHY [mt7530-0:03] driver [MediaTek MT7530 PHY] (irq=30)
[    1.023511] mt7530 mdio-bus:1f wan (uninitialized): PHY [mt7530-0:04] driver [MediaTek MT7530 PHY] (irq=31)
[    1.036153] mt7530 mdio-bus:1f: configuring for fixed/rgmii link mode
[    1.046609] DSA: tree 0 setup
[    1.050171] rt2880-pinmux pinctrl: pcie is already enabled
[    1.055743] mt7621-pci 1e140000.pcie: host bridge /pcie@1e140000 ranges:
[    1.062474] mt7621-pci 1e140000.pcie:   No bus range found for /pcie@1e140000, using [bus 00-ff]
[    1.071273] mt7621-pci 1e140000.pcie:      MEM 0x0060000000..0x006fffffff -> 0x0000000000
[    1.079444] mt7621-pci 1e140000.pcie:       IO 0x001e160000..0x001e16ffff -> 0x0000000000
[    1.087712] mt7621-pci-phy 1e149000.pcie-phy: PHY for 0xbe149000 (dual port = 1)
[    1.095545] mt7621-pci-phy 1e14a000.pcie-phy: PHY for 0xbe14a000 (dual port = 0)
[    1.103254] mt7621-pci 1e140000.pcie: failed to parse bus ranges property: -22
[    1.210641] mt7621-pci-phy 1e149000.pcie-phy: Xtal is 40MHz
[    1.216211] mt7621-pci-phy 1e14a000.pcie-phy: Xtal is 40MHz
[    1.321887] mt7621-pci 1e140000.pcie: pcie2 no card, disable it (RST & CLK)
[    1.328843] mt7621-pci 1e140000.pcie: PCIE0 enabled
[    1.333697] mt7621-pci 1e140000.pcie: PCIE1 enabled
[    1.338574] mt7621-pci 1e140000.pcie: PCI coherence region base: 0x60000000, mask/settings: 0xf0000002
[    1.348058] mt7621-pci 1e140000.pcie: PCI host bridge to bus 0000:00
[    1.354421] pci_bus 0000:00: root bus resource [io  0x1e160000-0x1e16ffff]
[    1.361296] pci_bus 0000:00: root bus resource [mem 0x60000000-0x6fffffff]
[    1.368171] pci_bus 0000:00: root bus resource [bus 00-ff]
[    1.373637] pci_bus 0000:00: root bus resource [mem 0x60000000-0x6fffffff] (bus address [0x00000000-0x0fffffff])
[    1.383839] pci 0000:00:00.0: [0e8d:0801] type 01 class 0x060400
[    1.389857] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x7fffffff]
[    1.396099] pci 0000:00:00.0: reg 0x14: initial BAR value 0x00000000 invalid
[    1.403130] pci 0000:00:00.0: reg 0x14: [mem size 0x00010000]
[    1.408945] pci 0000:00:00.0: supports D1
[    1.412937] pci 0000:00:00.0: PME# supported from D0 D1 D3hot
[    1.419195] pci 0000:00:01.0: [0e8d:0801] type 01 class 0x060400
[    1.425215] pci 0000:00:01.0: reg 0x10: [mem 0x00000000-0x7fffffff]
[    1.431495] pci 0000:00:01.0: reg 0x14: initial BAR value 0x00000000 invalid
[    1.438530] pci 0000:00:01.0: reg 0x14: [mem size 0x00010000]
[    1.444321] pci 0000:00:01.0: supports D1
[    1.448331] pci 0000:00:01.0: PME# supported from D0 D1 D3hot
[    1.455567] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    1.463583] pci 0000:00:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    1.471846] pci 0000:01:00.0: [14c3:7603] type 00 class 0x028000
[    1.477899] pci 0000:01:00.0: reg 0x10: initial BAR value 0x00000000 invalid
[    1.484925] pci 0000:01:00.0: reg 0x10: [mem size 0x00100000]
[    1.490832] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    1.498445] pci 0000:00:00.0: PCI bridge to [bus 01-ff]
[    1.503671] pci 0000:00:00.0:   bridge window [io  0x0000-0x0fff]
[    1.509759] pci 0000:00:00.0:   bridge window [mem 0x60000000-0x600fffff]
[    1.516519] pci 0000:00:00.0:   bridge window [mem 0x60000000-0x600fffff pref]
[    1.523738] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[    1.530629] pci 0000:02:00.0: [14c3:7663] type 00 class 0x000280
[    1.536672] pci 0000:02:00.0: reg 0x10: initial BAR value 0x00000000 invalid
[    1.543717] pci 0000:02:00.0: reg 0x10: [mem size 0x00100000 64bit pref]
[    1.550431] pci 0000:02:00.0: reg 0x18: initial BAR value 0x00000000 invalid
[    1.557465] pci 0000:02:00.0: reg 0x18: [mem size 0x00004000 64bit pref]
[    1.564150] pci 0000:02:00.0: reg 0x20: initial BAR value 0x00000000 invalid
[    1.571186] pci 0000:02:00.0: reg 0x20: [mem size 0x00001000 64bit pref]
[    1.577997] pci 0000:02:00.0: supports D1 D2
[    1.582250] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.588892] 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)
[    1.605188] pci 0000:00:01.0: PCI bridge to [bus 02-ff]
[    1.610446] pci 0000:00:01.0:   bridge window [io  0x0000-0x0fff]
[    1.616514] pci 0000:00:01.0:   bridge window [mem 0x60000000-0x600fffff]
[    1.623290] pci 0000:00:01.0:   bridge window [mem 0x60000000-0x600fffff pref]
[    1.630513] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 02
[    1.637156] pci 0000:00:00.0: BAR 0: no space for [mem size 0x80000000]
[    1.643757] pci 0000:00:00.0: BAR 0: failed to assign [mem size 0x80000000]
[    1.650704] pci 0000:00:01.0: BAR 0: no space for [mem size 0x80000000]
[    1.657287] pci 0000:00:01.0: BAR 0: failed to assign [mem size 0x80000000]
[    1.664236] pci 0000:00:00.0: BAR 8: assigned [mem 0x60000000-0x600fffff]
[    1.671022] pci 0000:00:00.0: BAR 9: assigned [mem 0x60100000-0x601fffff pref]
[    1.678233] pci 0000:00:01.0: BAR 8: assigned [mem 0x60200000-0x602fffff]
[    1.684993] pci 0000:00:01.0: BAR 9: assigned [mem 0x60300000-0x604fffff pref]
[    1.692205] pci 0000:00:00.0: BAR 1: assigned [mem 0x60500000-0x6050ffff]
[    1.698989] pci 0000:00:01.0: BAR 1: assigned [mem 0x60510000-0x6051ffff]
[    1.705750] pci 0000:00:00.0: BAR 7: assigned [io  0x1e160000-0x1e160fff]
[    1.712526] pci 0000:00:01.0: BAR 7: assigned [io  0x1e161000-0x1e161fff]
[    1.719311] pci 0000:01:00.0: BAR 0: assigned [mem 0x60000000-0x600fffff]
[    1.726073] pci 0000:00:00.0: PCI bridge to [bus 01]
[    1.731039] pci 0000:00:00.0:   bridge window [io  0x1e160000-0x1e160fff]
[    1.737823] pci 0000:00:00.0:   bridge window [mem 0x60000000-0x600fffff]
[    1.744581] pci 0000:00:00.0:   bridge window [mem 0x60100000-0x601fffff pref]
[    1.751797] pci 0000:02:00.0: BAR 0: assigned [mem 0x60300000-0x603fffff 64bit pref]
[    1.759538] pci 0000:02:00.0: BAR 2: assigned [mem 0x60400000-0x60403fff 64bit pref]
[    1.767259] pci 0000:02:00.0: BAR 4: assigned [mem 0x60404000-0x60404fff 64bit pref]
[    1.774994] pci 0000:00:01.0: PCI bridge to [bus 02]
[    1.779954] pci 0000:00:01.0:   bridge window [io  0x1e161000-0x1e161fff]
[    1.786713] pci 0000:00:01.0:   bridge window [mem 0x60200000-0x602fffff]
[    1.793492] pci 0000:00:01.0:   bridge window [mem 0x60300000-0x604fffff pref]
[    1.806303] mt7530 mdio-bus:1f: Link is Up - 1Gbps/Full - flow control rx/tx
[    1.816967] VFS: Mounted root (squashfs filesystem) readonly on device 31:5.
[    1.828962] Freeing unused kernel memory: 1276K
[    1.833499] This architecture does not have kernel memory protection.
[    1.839965] Run /sbin/init as init process
[    1.844040]   with arguments:
[    1.844045]     /sbin/init
[    1.844050]   with environment:
[    1.844055]     HOME=/
[    1.844060]     TERM=linux
[    2.392601] init: Console is alive
[    2.396374] init: - watchdog -
[    3.299732] kmodloader: loading kernel modules from /etc/modules-boot.d/*
[    3.426093] usbcore: registered new interface driver usbfs
[    3.431775] usbcore: registered new interface driver hub
[    3.437245] usbcore: registered new device driver usb
[    3.453749] xhci-mtk 1e1c0000.xhci: supply vbus not found, using dummy regulator
[    3.461462] xhci-mtk 1e1c0000.xhci: supply vusb33 not found, using dummy regulator
[    3.469293] xhci-mtk 1e1c0000.xhci: xHCI Host Controller
[    3.474628] xhci-mtk 1e1c0000.xhci: new USB bus registered, assigned bus number 1
[    3.487660] xhci-mtk 1e1c0000.xhci: hcc params 0x01401198 hci version 0x96 quirks 0x0000000000290010
[    3.496841] xhci-mtk 1e1c0000.xhci: irq 21, io mem 0x1e1c0000
[    3.504004] hub 1-0:1.0: USB hub found
[    3.507970] hub 1-0:1.0: 2 ports detected
[    3.512716] xhci-mtk 1e1c0000.xhci: xHCI Host Controller
[    3.518118] xhci-mtk 1e1c0000.xhci: new USB bus registered, assigned bus number 2
[    3.525596] xhci-mtk 1e1c0000.xhci: Host supports USB 3.0 SuperSpeed
[    3.532182] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    3.541278] hub 2-0:1.0: USB hub found
[    3.545189] hub 2-0:1.0: 1 port detected
[    3.611999] kmodloader: done loading kernel modules from /etc/modules-boot.d/*
[    3.637887] init: - preinit -
[    3.957715] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-mtk
[    4.000169] hub 2-1:1.0: USB hub found
[    4.004879] hub 2-1:1.0: 4 ports detected
[    4.098805] random: procd: uninitialized urandom read (4 bytes read)
[    4.167515] usb 1-1: new high-speed USB device number 2 using xhci-mtk
[    4.352255] hub 1-1:1.0: USB hub found
[    4.356657] hub 1-1:1.0: 4 ports detected
[    4.452535] random: jshn: uninitialized urandom read (4 bytes read)
[    4.533141] random: jshn: uninitialized urandom read (4 bytes read)
[    4.942882] mtk_soc_eth 1e100000.ethernet eth0: configuring for fixed/rgmii link mode
[    4.951275] mtk_soc_eth 1e100000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
[    4.957973] mt7530 mdio-bus:1f lan1: configuring for phy/gmii link mode
[    4.966657] 8021q: adding VLAN 0 to HW filter on device lan1
[    4.974996] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[    9.221752] jffs2: notice: (615) jffs2_build_xattr_subsystem: complete building xattr subsystem, 68 of xdatum (17 unchecked, 48 orphan) and 76 of xref (29 dead, 22 orphan) found.
[    9.240202] mount_root: switching to jffs2 overlay
[    9.250748] overlayfs: upper fs does not support tmpfile.
[    9.286165] urandom-seed: Seeding with /etc/urandom.seed
[    9.413518] procd: - early -
[    9.416657] procd: - watchdog -
[   10.067674] procd: - watchdog -
[   10.072004] procd: - ubus -
[   10.210579] random: ubusd: uninitialized urandom read (4 bytes read)
[   10.228428] random: ubusd: uninitialized urandom read (4 bytes read)
[   10.240019] random: ubusd: uninitialized urandom read (4 bytes read)
[   10.254996] procd: - init -
[   10.377603] random: crng init done
[   10.381044] random: 23 urandom warning(s) missed due to ratelimiting
[   11.123884] kmodloader: loading kernel modules from /etc/modules.d/*
[   11.221174] urngd: v1.0.2 started.
[   11.430345] Loading modules backported from Linux version v5.15.81-0-ge4a7232c917c
[   11.437951] Backport generated by backports.git v5.15.81-1-0-ge1867d55
[   11.670124] mt7621-pci 1e140000.pcie: bus=1 slot=0 irq=23
[   11.675602] pci 0000:00:00.0: enabling device (0004 -> 0007)
[   11.681300] mt7603e 0000:01:00.0: enabling device (0000 -> 0002)
[   11.687512] mt7603e 0000:01:00.0: ASIC revision: 76030010
[   12.718874] mt7603e 0000:01:00.0: Firmware Version: ap_pcie
[   12.724457] mt7603e 0000:01:00.0: Build Time: 20160107100755
[   12.767458] mt7603e 0000:01:00.0: firmware init done
[   12.934952] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[   12.947238] mt7621-pci 1e140000.pcie: bus=2 slot=1 irq=24
[   12.952765] pci 0000:00:01.0: enabling device (0004 -> 0007)
[   12.958524] mt7615e 0000:02:00.0: enabling device (0000 -> 0002)
[   12.976752] ieee80211 phy1: Selected rate control algorithm 'minstrel_ht'
[   12.976840] ieee80211 phy1: copying sband (band 1) due to VHT EXT NSS BW flag
[   13.033764] PPP generic driver version 2.4.2
[   13.040040] NET: Registered protocol family 24
[   13.054051] kmodloader: done loading kernel modules from /etc/modules.d/*
[   14.699058] mt7615e 0000:02:00.0: mediatek/mt7663pr2h.bin not found, switching to mediatek/mt7663pr2h_rebb.bin
[   14.821312] mt7615e 0000:02:00.0: HW/SW Version: 0x65322d31, Build Time: 2009041715da1a1
[   14.821312] 
[   15.029527] mt7615e 0000:02:00.0: N9 Firmware Version: 7663mp1827, Build Time: 20200904171623
[   15.038156] mt7615e 0000:02:00.0: Region number: 0x3
[   15.043101] mt7615e 0000:02:00.0: Parsing tailer Region: 0
[   15.051969] mt7615e 0000:02:00.0: Region 0, override_addr = 0x00112c00
[   15.058799] mt7615e 0000:02:00.0: Parsing tailer Region: 1
[   15.065264] mt7615e 0000:02:00.0: Parsing tailer Region: 2
[   15.071458] mt7615e 0000:02:00.0: override_addr = 0x00112c00, option = 3
[   21.247530] export_store: invalid GPIO 3
[   21.796535] mtk_soc_eth 1e100000.ethernet eth0: Link is Down
[   21.813017] mtk_soc_eth 1e100000.ethernet eth0: configuring for fixed/rgmii link mode
[   21.821223] mtk_soc_eth 1e100000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
[   21.824829] mt7530 mdio-bus:1f lan1: configuring for phy/gmii link mode
[   21.836891] 8021q: adding VLAN 0 to HW filter on device lan1
[   21.845668] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   21.853155] br-lan: port 1(lan1) entered blocking state
[   21.858538] br-lan: port 1(lan1) entered disabled state
[   21.864944] device lan1 entered promiscuous mode
[   21.869906] device eth0 entered promiscuous mode
[   21.903554] mt7530 mdio-bus:1f lan2: configuring for phy/gmii link mode
[   21.910920] 8021q: adding VLAN 0 to HW filter on device lan2
[   21.920472] br-lan: port 2(lan2) entered blocking state
[   21.925765] br-lan: port 2(lan2) entered disabled state
[   21.933101] device lan2 entered promiscuous mode
[   21.951143] mt7530 mdio-bus:1f lan3: configuring for phy/gmii link mode
[   21.958501] 8021q: adding VLAN 0 to HW filter on device lan3
[   21.968380] br-lan: port 3(lan3) entered blocking state
[   21.973680] br-lan: port 3(lan3) entered disabled state
[   21.980686] device lan3 entered promiscuous mode
[   22.000303] mt7530 mdio-bus:1f lan4: configuring for phy/gmii link mode
[   22.007847] 8021q: adding VLAN 0 to HW filter on device lan4
[   22.017158] br-lan: port 4(lan4) entered blocking state
[   22.022764] br-lan: port 4(lan4) entered disabled state
[   22.029756] device lan4 entered promiscuous mode
[   22.052124] mt7530 mdio-bus:1f wan: configuring for phy/gmii link mode
[   22.059477] 8021q: adding VLAN 0 to HW filter on device wan
[   23.345497] br-lan: port 5(wlan0) entered blocking state
[   23.351044] br-lan: port 5(wlan0) entered disabled state
[   23.357054] device wlan0 entered promiscuous mode
[   23.378211] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   23.385121] br-lan: port 5(wlan0) entered blocking state
[   23.390581] br-lan: port 5(wlan0) entered forwarding state
[   23.403716] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready
[   25.868760] mt7530 mdio-bus:1f wan: Link is Up - 1Gbps/Full - flow control rx/tx
[   25.876201] IPv6: ADDRCONF(NETDEV_CHANGE): wan: link becomes ready

Thanks for any help!

Kernel log:

Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.490832] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.498445] pci 0000:00:00.0: PCI bridge to [bus 01-ff]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.503671] pci 0000:00:00.0:   bridge window [io  0x0000-0x0fff]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.509759] pci 0000:00:00.0:   bridge window [mem 0x60000000-0x600fffff]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.516519] pci 0000:00:00.0:   bridge window [mem 0x60000000-0x600fffff pref]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.523738] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.530629] pci 0000:02:00.0: [14c3:7663] type 00 class 0x000280
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.536672] pci 0000:02:00.0: reg 0x10: initial BAR value 0x00000000 invalid
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.543717] pci 0000:02:00.0: reg 0x10: [mem size 0x00100000 64bit pref]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.550431] pci 0000:02:00.0: reg 0x18: initial BAR value 0x00000000 invalid
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.557465] pci 0000:02:00.0: reg 0x18: [mem size 0x00004000 64bit pref]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.564150] pci 0000:02:00.0: reg 0x20: initial BAR value 0x00000000 invalid
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.571186] pci 0000:02:00.0: reg 0x20: [mem size 0x00001000 64bit pref]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.577997] pci 0000:02:00.0: supports D1 D2
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.582250] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.588892] 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)
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.605188] pci 0000:00:01.0: PCI bridge to [bus 02-ff]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.610446] pci 0000:00:01.0:   bridge window [io  0x0000-0x0fff]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.616514] pci 0000:00:01.0:   bridge window [mem 0x60000000-0x600fffff]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.623290] pci 0000:00:01.0:   bridge window [mem 0x60000000-0x600fffff pref]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.630513] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 02
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.637156] pci 0000:00:00.0: BAR 0: no space for [mem size 0x80000000]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.643757] pci 0000:00:00.0: BAR 0: failed to assign [mem size 0x80000000]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.650704] pci 0000:00:01.0: BAR 0: no space for [mem size 0x80000000]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.657287] pci 0000:00:01.0: BAR 0: failed to assign [mem size 0x80000000]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.664236] pci 0000:00:00.0: BAR 8: assigned [mem 0x60000000-0x600fffff]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.671022] pci 0000:00:00.0: BAR 9: assigned [mem 0x60100000-0x601fffff pref]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.678233] pci 0000:00:01.0: BAR 8: assigned [mem 0x60200000-0x602fffff]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.684993] pci 0000:00:01.0: BAR 9: assigned [mem 0x60300000-0x604fffff pref]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.692205] pci 0000:00:00.0: BAR 1: assigned [mem 0x60500000-0x6050ffff]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.698989] pci 0000:00:01.0: BAR 1: assigned [mem 0x60510000-0x6051ffff]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.705750] pci 0000:00:00.0: BAR 7: assigned [io  0x1e160000-0x1e160fff]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.712526] pci 0000:00:01.0: BAR 7: assigned [io  0x1e161000-0x1e161fff]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.719311] pci 0000:01:00.0: BAR 0: assigned [mem 0x60000000-0x600fffff]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.726073] pci 0000:00:00.0: PCI bridge to [bus 01]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.731039] pci 0000:00:00.0:   bridge window [io  0x1e160000-0x1e160fff]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.737823] pci 0000:00:00.0:   bridge window [mem 0x60000000-0x600fffff]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.744581] pci 0000:00:00.0:   bridge window [mem 0x60100000-0x601fffff pref]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.751797] pci 0000:02:00.0: BAR 0: assigned [mem 0x60300000-0x603fffff 64bit pref]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.759538] pci 0000:02:00.0: BAR 2: assigned [mem 0x60400000-0x60403fff 64bit pref]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.767259] pci 0000:02:00.0: BAR 4: assigned [mem 0x60404000-0x60404fff 64bit pref]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.774994] pci 0000:00:01.0: PCI bridge to [bus 02]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.779954] pci 0000:00:01.0:   bridge window [io  0x1e161000-0x1e161fff]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.786713] pci 0000:00:01.0:   bridge window [mem 0x60200000-0x602fffff]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.793492] pci 0000:00:01.0:   bridge window [mem 0x60300000-0x604fffff pref]
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.806303] mt7530 mdio-bus:1f: Link is Up - 1Gbps/Full - flow control rx/tx
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.816967] VFS: Mounted root (squashfs filesystem) readonly on device 31:5.
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.828962] Freeing unused kernel memory: 1276K
Sat Mar 11 14:51:01 2023 kern.warn kernel: [    1.833499] This architecture does not have kernel memory protection.
Sat Mar 11 14:51:01 2023 kern.info kernel: [    1.839965] Run /sbin/init as init process
Sat Mar 11 14:51:01 2023 kern.debug kernel: [    1.844040]   with arguments:
Sat Mar 11 14:51:01 2023 kern.debug kernel: [    1.844045]     /sbin/init
Sat Mar 11 14:51:01 2023 kern.debug kernel: [    1.844050]   with environment:
Sat Mar 11 14:51:01 2023 kern.debug kernel: [    1.844055]     HOME=/
Sat Mar 11 14:51:01 2023 kern.debug kernel: [    1.844060]     TERM=linux
Sat Mar 11 14:51:01 2023 user.info kernel: [    2.392601] init: Console is alive
Sat Mar 11 14:51:01 2023 user.info kernel: [    2.396374] init: - watchdog -
Sat Mar 11 14:51:01 2023 user.info kernel: [    3.299732] kmodloader: loading kernel modules from /etc/modules-boot.d/*
Sat Mar 11 14:51:01 2023 kern.info kernel: [    3.426093] usbcore: registered new interface driver usbfs
Sat Mar 11 14:51:01 2023 kern.info kernel: [    3.431775] usbcore: registered new interface driver hub
Sat Mar 11 14:51:01 2023 kern.info kernel: [    3.437245] usbcore: registered new device driver usb
Sat Mar 11 14:51:01 2023 kern.warn kernel: [    3.453749] xhci-mtk 1e1c0000.xhci: supply vbus not found, using dummy regulator
Sat Mar 11 14:51:01 2023 kern.warn kernel: [    3.461462] xhci-mtk 1e1c0000.xhci: supply vusb33 not found, using dummy regulator
Sat Mar 11 14:51:01 2023 kern.info kernel: [    3.469293] xhci-mtk 1e1c0000.xhci: xHCI Host Controller
Sat Mar 11 14:51:01 2023 kern.info kernel: [    3.474628] xhci-mtk 1e1c0000.xhci: new USB bus registered, assigned bus number 1
Sat Mar 11 14:51:01 2023 kern.info kernel: [    3.487660] xhci-mtk 1e1c0000.xhci: hcc params 0x01401198 hci version 0x96 quirks 0x0000000000290010
Sat Mar 11 14:51:01 2023 kern.info kernel: [    3.496841] xhci-mtk 1e1c0000.xhci: irq 21, io mem 0x1e1c0000
Sat Mar 11 14:51:01 2023 kern.info kernel: [    3.504004] hub 1-0:1.0: USB hub found
Sat Mar 11 14:51:01 2023 kern.info kernel: [    3.507970] hub 1-0:1.0: 2 ports detected
Sat Mar 11 14:51:01 2023 kern.info kernel: [    3.512716] xhci-mtk 1e1c0000.xhci: xHCI Host Controller
Sat Mar 11 14:51:01 2023 kern.info kernel: [    3.518118] xhci-mtk 1e1c0000.xhci: new USB bus registered, assigned bus number 2
Sat Mar 11 14:51:01 2023 kern.info kernel: [    3.525596] xhci-mtk 1e1c0000.xhci: Host supports USB 3.0 SuperSpeed
Sat Mar 11 14:51:01 2023 kern.info kernel: [    3.532182] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
Sat Mar 11 14:51:01 2023 kern.info kernel: [    3.541278] hub 2-0:1.0: USB hub found
Sat Mar 11 14:51:01 2023 kern.info kernel: [    3.545189] hub 2-0:1.0: 1 port detected
Sat Mar 11 14:51:01 2023 user.info kernel: [    3.611999] kmodloader: done loading kernel modules from /etc/modules-boot.d/*
Sat Mar 11 14:51:01 2023 user.info kernel: [    3.637887] init: - preinit -
Sat Mar 11 14:51:01 2023 kern.info kernel: [    3.957715] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-mtk
Sat Mar 11 14:51:01 2023 kern.info kernel: [    4.000169] hub 2-1:1.0: USB hub found
Sat Mar 11 14:51:01 2023 kern.info kernel: [    4.004879] hub 2-1:1.0: 4 ports detected
Sat Mar 11 14:51:01 2023 kern.notice kernel: [    4.098805] random: procd: uninitialized urandom read (4 bytes read)
Sat Mar 11 14:51:01 2023 kern.info kernel: [    4.167515] usb 1-1: new high-speed USB device number 2 using xhci-mtk
Sat Mar 11 14:51:01 2023 kern.info kernel: [    4.352255] hub 1-1:1.0: USB hub found
Sat Mar 11 14:51:01 2023 kern.info kernel: [    4.356657] hub 1-1:1.0: 4 ports detected
Sat Mar 11 14:51:01 2023 kern.notice kernel: [    4.452535] random: jshn: uninitialized urandom read (4 bytes read)
Sat Mar 11 14:51:01 2023 kern.notice kernel: [    4.533141] random: jshn: uninitialized urandom read (4 bytes read)
Sat Mar 11 14:51:01 2023 kern.info kernel: [    4.942882] mtk_soc_eth 1e100000.ethernet eth0: configuring for fixed/rgmii link mode
Sat Mar 11 14:51:01 2023 kern.info kernel: [    4.951275] mtk_soc_eth 1e100000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
Sat Mar 11 14:51:01 2023 kern.info kernel: [    4.957973] mt7530 mdio-bus:1f lan1: configuring for phy/gmii link mode
Sat Mar 11 14:51:01 2023 kern.info kernel: [    4.966657] 8021q: adding VLAN 0 to HW filter on device lan1
Sat Mar 11 14:51:01 2023 kern.info kernel: [    4.974996] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Sat Mar 11 14:51:01 2023 kern.notice kernel: [    9.221752] jffs2: notice: (615) jffs2_build_xattr_subsystem: complete building xattr subsystem, 68 of xdatum (17 unchecked, 48 orphan) and 76 of xref (29 dead, 22 orphan) found.
Sat Mar 11 14:51:01 2023 user.info kernel: [    9.240202] mount_root: switching to jffs2 overlay
Sat Mar 11 14:51:01 2023 kern.warn kernel: [    9.250748] overlayfs: upper fs does not support tmpfile.
Sat Mar 11 14:51:01 2023 user.warn kernel: [    9.286165] urandom-seed: Seeding with /etc/urandom.seed
Sat Mar 11 14:51:01 2023 user.info kernel: [    9.413518] procd: - early -
Sat Mar 11 14:51:01 2023 user.info kernel: [    9.416657] procd: - watchdog -
Sat Mar 11 14:51:01 2023 user.info kernel: [   10.067674] procd: - watchdog -
Sat Mar 11 14:51:01 2023 user.info kernel: [   10.072004] procd: - ubus -
Sat Mar 11 14:51:01 2023 kern.notice kernel: [   10.210579] random: ubusd: uninitialized urandom read (4 bytes read)
Sat Mar 11 14:51:01 2023 kern.notice kernel: [   10.228428] random: ubusd: uninitialized urandom read (4 bytes read)
Sat Mar 11 14:51:01 2023 kern.notice kernel: [   10.240019] random: ubusd: uninitialized urandom read (4 bytes read)
Sat Mar 11 14:51:01 2023 user.info kernel: [   10.254996] procd: - init -
Sat Mar 11 14:51:01 2023 kern.notice kernel: [   10.377603] random: crng init done
Sat Mar 11 14:51:01 2023 kern.notice kernel: [   10.381044] random: 23 urandom warning(s) missed due to ratelimiting
Sat Mar 11 14:51:01 2023 user.info kernel: [   11.123884] kmodloader: loading kernel modules from /etc/modules.d/*
Sat Mar 11 14:51:01 2023 user.info kernel: [   11.221174] urngd: v1.0.2 started.
Sat Mar 11 14:51:01 2023 kern.info kernel: [   11.430345] Loading modules backported from Linux version v5.15.81-0-ge4a7232c917c
Sat Mar 11 14:51:01 2023 kern.info kernel: [   11.437951] Backport generated by backports.git v5.15.81-1-0-ge1867d55
Sat Mar 11 14:51:01 2023 kern.info kernel: [   11.670124] mt7621-pci 1e140000.pcie: bus=1 slot=0 irq=23
Sat Mar 11 14:51:01 2023 kern.info kernel: [   11.675602] pci 0000:00:00.0: enabling device (0004 -> 0007)
Sat Mar 11 14:51:01 2023 kern.info kernel: [   11.681300] mt7603e 0000:01:00.0: enabling device (0000 -> 0002)
Sat Mar 11 14:51:01 2023 kern.info kernel: [   11.687512] mt7603e 0000:01:00.0: ASIC revision: 76030010
Sat Mar 11 14:51:01 2023 kern.info kernel: [   12.718874] mt7603e 0000:01:00.0: Firmware Version: ap_pcie
Sat Mar 11 14:51:01 2023 kern.info kernel: [   12.724457] mt7603e 0000:01:00.0: Build Time: 20160107100755
Sat Mar 11 14:51:01 2023 kern.info kernel: [   12.767458] mt7603e 0000:01:00.0: firmware init done
Sat Mar 11 14:51:01 2023 kern.debug kernel: [   12.934952] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
Sat Mar 11 14:51:01 2023 kern.info kernel: [   12.947238] mt7621-pci 1e140000.pcie: bus=2 slot=1 irq=24
Sat Mar 11 14:51:01 2023 kern.info kernel: [   12.952765] pci 0000:00:01.0: enabling device (0004 -> 0007)
Sat Mar 11 14:51:01 2023 kern.info kernel: [   12.958524] mt7615e 0000:02:00.0: enabling device (0000 -> 0002)
Sat Mar 11 14:51:01 2023 kern.debug kernel: [   12.976752] ieee80211 phy1: Selected rate control algorithm 'minstrel_ht'
Sat Mar 11 14:51:01 2023 kern.debug kernel: [   12.976840] ieee80211 phy1: copying sband (band 1) due to VHT EXT NSS BW flag
Sat Mar 11 14:51:01 2023 kern.info kernel: [   13.033764] PPP generic driver version 2.4.2
Sat Mar 11 14:51:01 2023 kern.info kernel: [   13.040040] NET: Registered protocol family 24
Sat Mar 11 14:51:01 2023 user.info kernel: [   13.054051] kmodloader: done loading kernel modules from /etc/modules.d/*
Sat Mar 11 14:51:02 2023 daemon.err procd: Could not find firmware /lib/firmware/mediatek/mt7663pr2h.bin: No such file or directory
Sat Mar 11 14:51:02 2023 kern.info kernel: [   14.699058] mt7615e 0000:02:00.0: mediatek/mt7663pr2h.bin not found, switching to mediatek/mt7663pr2h_rebb.bin
Sat Mar 11 14:51:02 2023 kern.info kernel: [   14.821312] mt7615e 0000:02:00.0: HW/SW Version: 0x65322d31, Build Time: 2009041715da1a1
Sat Mar 11 14:51:02 2023 kern.info kernel: [   14.821312]
Sat Mar 11 14:51:02 2023 kern.info kernel: [   15.029527] mt7615e 0000:02:00.0: N9 Firmware Version: 7663mp1827, Build Time: 20200904171623
Sat Mar 11 14:51:02 2023 kern.info kernel: [   15.038156] mt7615e 0000:02:00.0: Region number: 0x3
Sat Mar 11 14:51:02 2023 kern.info kernel: [   15.043101] mt7615e 0000:02:00.0: Parsing tailer Region: 0
Sat Mar 11 14:51:02 2023 kern.info kernel: [   15.051969] mt7615e 0000:02:00.0: Region 0, override_addr = 0x00112c00
Sat Mar 11 14:51:02 2023 kern.info kernel: [   15.058799] mt7615e 0000:02:00.0: Parsing tailer Region: 1
Sat Mar 11 14:51:02 2023 kern.info kernel: [   15.065264] mt7615e 0000:02:00.0: Parsing tailer Region: 2
Sat Mar 11 14:51:02 2023 kern.info kernel: [   15.071458] mt7615e 0000:02:00.0: override_addr = 0x00112c00, option = 3
Sat Mar 11 14:51:02 2023 user.notice dnsmasq: DNS rebinding protection is active, will discard upstream RFC1918 responses!
Sat Mar 11 14:51:02 2023 user.notice dnsmasq: Allowing 127.0.0.0/8 responses
Sat Mar 11 14:51:03 2023 daemon.info dnsmasq[1]: started, version 2.86 cachesize 150
Sat Mar 11 14:51:03 2023 daemon.info dnsmasq[1]: DNS service limited to local subnets
Sat Mar 11 14:51:03 2023 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-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile
Sat Mar 11 14:51:03 2023 daemon.info dnsmasq[1]: UBus support enabled: connected to system bus
Sat Mar 11 14:51:03 2023 daemon.info dnsmasq[1]: using only locally-known addresses for test
Sat Mar 11 14:51:03 2023 daemon.info dnsmasq[1]: using only locally-known addresses for onion
Sat Mar 11 14:51:03 2023 daemon.info dnsmasq[1]: using only locally-known addresses for localhost
Sat Mar 11 14:51:03 2023 daemon.info dnsmasq[1]: using only locally-known addresses for local
Sat Mar 11 14:51:03 2023 daemon.info dnsmasq[1]: using only locally-known addresses for invalid
Sat Mar 11 14:51:03 2023 daemon.info dnsmasq[1]: using only locally-known addresses for bind
Sat Mar 11 14:51:03 2023 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Sat Mar 11 14:51:03 2023 daemon.warn dnsmasq[1]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Sat Mar 11 14:51:03 2023 daemon.info dnsmasq[1]: read /etc/hosts - 4 addresses
Sat Mar 11 14:51:03 2023 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 0 addresses
Sat Mar 11 14:51:03 2023 authpriv.info dropbear[1434]: Not backgrounding
Sat Mar 11 14:51:06 2023 daemon.notice wpa_supplicant[1542]: Successfully initialized wpa_supplicant
Sat Mar 11 14:51:06 2023 user.notice : Added device handler type: bonding
Sat Mar 11 14:51:06 2023 user.notice : Added device handler type: 8021ad
Sat Mar 11 14:51:06 2023 user.notice : Added device handler type: 8021q
Sat Mar 11 14:51:06 2023 user.notice : Added device handler type: macvlan
Sat Mar 11 14:51:06 2023 user.notice : Added device handler type: veth
Sat Mar 11 14:51:06 2023 user.notice : Added device handler type: bridge
Sat Mar 11 14:51:06 2023 user.notice : Added device handler type: Network device
Sat Mar 11 14:51:06 2023 user.notice : Added device handler type: tunnel
Sat Mar 11 14:51:07 2023 user.notice ucitrack: Setting up /etc/config/dhcp reload dependency on /etc/config/network
Sat Mar 11 14:51:07 2023 user.notice ucitrack: Setting up /etc/config/network reload dependency on /etc/config/wireless
Sat Mar 11 14:51:07 2023 user.notice ucitrack: Setting up /etc/config/luci-splash reload dependency on /etc/config/firewall
Sat Mar 11 14:51:07 2023 user.notice ucitrack: Setting up /etc/config/qos reload dependency on /etc/config/firewall
Sat Mar 11 14:51:07 2023 user.notice ucitrack: Setting up /etc/config/miniupnpd reload dependency on /etc/config/firewall
Sat Mar 11 14:51:07 2023 user.notice ucitrack: Setting up /etc/config/odhcpd reload dependency on /etc/config/dhcp
Sat Mar 11 14:51:07 2023 user.notice ucitrack: Setting up non-init /etc/config/fstab reload handler: /sbin/block mount
Sat Mar 11 14:51:08 2023 user.notice ucitrack: Setting up /etc/config/system reload trigger for non-procd /etc/init.d/led
Sat Mar 11 14:51:08 2023 user.notice ucitrack: Setting up /etc/config/luci_statistics reload dependency on /etc/config/system
Sat Mar 11 14:51:08 2023 user.notice ucitrack: Setting up /etc/config/dhcp reload dependency on /etc/config/system
Sat Mar 11 14:51:08 2023 daemon.notice procd: /etc/rc.d/S95done: sh: write error: Invalid argument
Sat Mar 11 14:51:08 2023 daemon.notice procd: /etc/rc.d/S95done: /etc/watchdog.sh: line 4: can't create /sys/class/gpio/gpio3/direction: nonexistent directory
Sat Mar 11 14:51:08 2023 daemon.notice procd: /etc/rc.d/S95done: /etc/watchdog.sh: line 13: syntax error: unexpected end of file (expecting "do")
Sat Mar 11 14:51:08 2023 kern.warn kernel: [   21.247530] export_store: invalid GPIO 3
Sat Mar 11 14:51:08 2023 daemon.notice procd: /etc/rc.d/S96led: setting up led LAN1
Sat Mar 11 14:51:08 2023 daemon.notice procd: /etc/rc.d/S96led: setting up led LAN2
Sat Mar 11 14:51:08 2023 daemon.notice procd: /etc/rc.d/S96led: setting up led LAN3
Sat Mar 11 14:51:08 2023 daemon.notice procd: /etc/rc.d/S96led: setting up led LAN4
Sat Mar 11 14:51:08 2023 daemon.notice procd: /etc/rc.d/S96led: setting up led WAN
Sat Mar 11 14:51:09 2023 kern.info kernel: [   21.796535] mtk_soc_eth 1e100000.ethernet eth0: Link is Down
Sat Mar 11 14:51:09 2023 kern.info kernel: [   21.813017] mtk_soc_eth 1e100000.ethernet eth0: configuring for fixed/rgmii link mode
Sat Mar 11 14:51:09 2023 kern.info kernel: [   21.821223] mtk_soc_eth 1e100000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
Sat Mar 11 14:51:09 2023 kern.info kernel: [   21.824829] mt7530 mdio-bus:1f lan1: configuring for phy/gmii link mode
Sat Mar 11 14:51:09 2023 kern.info kernel: [   21.836891] 8021q: adding VLAN 0 to HW filter on device lan1
Sat Mar 11 14:51:09 2023 kern.info kernel: [   21.845668] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Sat Mar 11 14:51:09 2023 kern.info kernel: [   21.853155] br-lan: port 1(lan1) entered blocking state
Sat Mar 11 14:51:09 2023 kern.info kernel: [   21.858538] br-lan: port 1(lan1) entered disabled state
Sat Mar 11 14:51:09 2023 kern.info kernel: [   21.864944] device lan1 entered promiscuous mode
Sat Mar 11 14:51:09 2023 kern.info kernel: [   21.869906] device eth0 entered promiscuous mode
Sat Mar 11 14:51:09 2023 daemon.notice netifd: Interface 'lan' is enabled
Sat Mar 11 14:51:09 2023 daemon.notice netifd: Interface 'lan' is setting up now
Sat Mar 11 14:51:09 2023 daemon.notice netifd: Interface 'lan' is now up
Sat Mar 11 14:51:09 2023 kern.info kernel: [   21.903554] mt7530 mdio-bus:1f lan2: configuring for phy/gmii link mode
Sat Mar 11 14:51:09 2023 kern.info kernel: [   21.910920] 8021q: adding VLAN 0 to HW filter on device lan2
Sat Mar 11 14:51:09 2023 kern.info kernel: [   21.920472] br-lan: port 2(lan2) entered blocking state
Sat Mar 11 14:51:09 2023 kern.info kernel: [   21.925765] br-lan: port 2(lan2) entered disabled state
Sat Mar 11 14:51:09 2023 kern.info kernel: [   21.933101] device lan2 entered promiscuous mode
Sat Mar 11 14:51:09 2023 kern.info kernel: [   21.951143] mt7530 mdio-bus:1f lan3: configuring for phy/gmii link mode
Sat Mar 11 14:51:09 2023 kern.info kernel: [   21.958501] 8021q: adding VLAN 0 to HW filter on device lan3
Sat Mar 11 14:51:09 2023 kern.info kernel: [   21.968380] br-lan: port 3(lan3) entered blocking state
Sat Mar 11 14:51:09 2023 kern.info kernel: [   21.973680] br-lan: port 3(lan3) entered disabled state
Sat Mar 11 14:51:09 2023 kern.info kernel: [   21.980686] device lan3 entered promiscuous mode
Sat Mar 11 14:51:09 2023 kern.info kernel: [   22.000303] mt7530 mdio-bus:1f lan4: configuring for phy/gmii link mode
Sat Mar 11 14:51:09 2023 kern.info kernel: [   22.007847] 8021q: adding VLAN 0 to HW filter on device lan4
Sat Mar 11 14:51:09 2023 kern.info kernel: [   22.017158] br-lan: port 4(lan4) entered blocking state
Sat Mar 11 14:51:09 2023 kern.info kernel: [   22.022764] br-lan: port 4(lan4) entered disabled state
Sat Mar 11 14:51:09 2023 kern.info kernel: [   22.029756] device lan4 entered promiscuous mode
Sat Mar 11 14:51:09 2023 daemon.notice netifd: Interface 'loopback' is enabled
Sat Mar 11 14:51:09 2023 daemon.notice netifd: Interface 'loopback' is setting up now
Sat Mar 11 14:51:09 2023 daemon.notice netifd: Interface 'loopback' is now up
Sat Mar 11 14:51:09 2023 kern.info kernel: [   22.052124] mt7530 mdio-bus:1f wan: configuring for phy/gmii link mode
Sat Mar 11 14:51:09 2023 kern.info kernel: [   22.059477] 8021q: adding VLAN 0 to HW filter on device wan
Sat Mar 11 14:51:09 2023 daemon.notice netifd: Interface 'wan' is enabled
Sat Mar 11 14:51:09 2023 daemon.notice netifd: Interface 'wan6' is enabled
Sat Mar 11 14:51:09 2023 daemon.notice netifd: Network device 'eth0' link is up
Sat Mar 11 14:51:09 2023 daemon.notice netifd: Network device 'lo' link is up
Sat Mar 11 14:51:09 2023 daemon.notice netifd: Interface 'loopback' has link connectivity
Sat Mar 11 14:51:09 2023 user.notice firewall: Reloading firewall due to ifup of lan (br-lan)
Sat Mar 11 14:51:10 2023 daemon.info procd: - init complete -
Sat Mar 11 14:51:10 2023 daemon.err odhcpd[1658]: Failed to send to ff02::1%lan@br-lan (Address not available)
Sat Mar 11 14:51:10 2023 daemon.notice hostapd: Configuration file: /var/run/hostapd-phy0.conf (phy wlan0) --> new PHY
Sat Mar 11 14:51:10 2023 kern.info kernel: [   23.345497] br-lan: port 5(wlan0) entered blocking state
Sat Mar 11 14:51:10 2023 kern.info kernel: [   23.351044] br-lan: port 5(wlan0) entered disabled state
Sat Mar 11 14:51:10 2023 kern.info kernel: [   23.357054] device wlan0 entered promiscuous mode
Sat Mar 11 14:51:10 2023 kern.info kernel: [   23.378211] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
Sat Mar 11 14:51:10 2023 kern.info kernel: [   23.385121] br-lan: port 5(wlan0) entered blocking state
Sat Mar 11 14:51:10 2023 kern.info kernel: [   23.390581] br-lan: port 5(wlan0) entered forwarding state
Sat Mar 11 14:51:10 2023 daemon.notice netifd: bridge 'br-lan' link is up
Sat Mar 11 14:51:10 2023 daemon.notice netifd: Interface 'lan' has link connectivity
Sat Mar 11 14:51:10 2023 daemon.notice hostapd: wlan0: interface state UNINITIALIZED->ENABLED
Sat Mar 11 14:51:10 2023 daemon.notice hostapd: wlan0: AP-ENABLED
Sat Mar 11 14:51:10 2023 kern.info kernel: [   23.403716] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready
Sat Mar 11 14:51:11 2023 daemon.err odhcpd[1658]: Failed to send to ff02::1%lan@br-lan (Address not available)
Sat Mar 11 14:51:11 2023 daemon.notice netifd: Wireless device 'radio0' is now up
Sat Mar 11 14:51:11 2023 daemon.notice netifd: Network device 'wlan0' link is up
Sat Mar 11 14:51:13 2023 kern.info kernel: [   25.868760] mt7530 mdio-bus:1f wan: Link is Up - 1Gbps/Full - flow control rx/tx
Sat Mar 11 14:51:13 2023 kern.info kernel: [   25.876201] IPv6: ADDRCONF(NETDEV_CHANGE): wan: link becomes ready
Sat Mar 11 14:51:13 2023 daemon.notice netifd: Network device 'wan' link is up
Sat Mar 11 14:51:13 2023 daemon.notice netifd: Interface 'wan' has link connectivity
Sat Mar 11 14:51:13 2023 daemon.notice netifd: Interface 'wan' is setting up now
Sat Mar 11 14:51:13 2023 daemon.notice netifd: Interface 'wan6' has link connectivity
Sat Mar 11 14:51:13 2023 daemon.notice netifd: Interface 'wan6' is setting up now
Sat Mar 11 14:51:13 2023 daemon.notice netifd: wan (2660): udhcpc: started, v1.35.0
Sat Mar 11 14:51:13 2023 daemon.err odhcp6c[2661]: Failed to send RS (Address not available)
Sat Mar 11 14:51:13 2023 daemon.err odhcp6c[2661]: Failed to send SOLICIT message to ff02::1:2 (Address not available)
Sat Mar 11 14:51:13 2023 daemon.notice netifd: wan (2660): udhcpc: broadcasting discover
Sat Mar 11 14:51:14 2023 daemon.err odhcp6c[2661]: Failed to send SOLICIT message to ff02::1:2 (Address not available)
Sat Mar 11 14:51:15 2023 daemon.info dnsmasq[1]: exiting on receipt of SIGTERM
Sat Mar 11 14:51:15 2023 daemon.info dnsmasq[1]: started, version 2.86 cachesize 150
Sat Mar 11 14:51:15 2023 daemon.info dnsmasq[1]: DNS service limited to local subnets
Sat Mar 11 14:51:15 2023 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-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile
Sat Mar 11 14:51:15 2023 daemon.info dnsmasq[1]: UBus support enabled: connected to system bus
Sat Mar 11 14:51:15 2023 daemon.info dnsmasq-dhcp[1]: DHCP, IP range 192.168.1.100 -- 192.168.1.249, lease time 12h
Sat Mar 11 14:51:15 2023 daemon.info dnsmasq[1]: using only locally-known addresses for test
Sat Mar 11 14:51:15 2023 daemon.info dnsmasq[1]: using only locally-known addresses for onion
Sat Mar 11 14:51:15 2023 daemon.info dnsmasq[1]: using only locally-known addresses for localhost
Sat Mar 11 14:51:15 2023 daemon.info dnsmasq[1]: using only locally-known addresses for local
Sat Mar 11 14:51:15 2023 daemon.info dnsmasq[1]: using only locally-known addresses for invalid
Sat Mar 11 14:51:15 2023 daemon.info dnsmasq[1]: using only locally-known addresses for bind
Sat Mar 11 14:51:15 2023 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Sat Mar 11 14:51:15 2023 daemon.warn dnsmasq[1]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Sat Mar 11 14:51:15 2023 daemon.info dnsmasq[1]: read /etc/hosts - 4 addresses
Sat Mar 11 14:51:15 2023 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 2 addresses
Sat Mar 11 14:51:15 2023 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Sat Mar 11 14:51:16 2023 daemon.info dnsmasq[1]: read /etc/hosts - 4 addresses
Sat Mar 11 14:51:16 2023 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 2 addresses
Sat Mar 11 14:51:16 2023 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Sat Mar 11 14:51:17 2023 daemon.notice netifd: wan (2660): udhcpc: broadcasting discover
Sat Mar 11 14:51:17 2023 daemon.notice netifd: wan (2660): udhcpc: broadcasting select for 192.168.3.226, server 192.168.3.1
Sat Mar 11 14:51:17 2023 daemon.notice netifd: wan (2660): udhcpc: lease of 192.168.3.226 obtained from 192.168.3.1, lease time 86400
Sat Mar 11 14:51:17 2023 daemon.notice netifd: Interface 'wan' is now up
Sat Mar 11 14:51:17 2023 daemon.info dnsmasq[1]: reading /tmp/resolv.conf.d/resolv.conf.auto
Sat Mar 11 14:51:17 2023 daemon.info dnsmasq[1]: using nameserver 192.168.3.1#53
Sat Mar 11 14:51:17 2023 daemon.info dnsmasq[1]: using only locally-known addresses for test
Sat Mar 11 14:51:17 2023 daemon.info dnsmasq[1]: using only locally-known addresses for onion
Sat Mar 11 14:51:17 2023 daemon.info dnsmasq[1]: using only locally-known addresses for localhost
Sat Mar 11 14:51:17 2023 daemon.info dnsmasq[1]: using only locally-known addresses for local
Sat Mar 11 14:51:17 2023 daemon.info dnsmasq[1]: using only locally-known addresses for invalid
Sat Mar 11 14:51:17 2023 daemon.info dnsmasq[1]: using only locally-known addresses for bind
Sat Mar 11 14:51:17 2023 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Sat Mar 11 14:51:17 2023 user.notice firewall: Reloading firewall due to ifup of wan (wan)
Sat Mar 11 14:51:18 2023 daemon.info hostapd: wlan0: STA 00:11:7f:44:41:f0 IEEE 802.11: authenticated
Sat Mar 11 14:51:18 2023 daemon.info hostapd: wlan0: STA 00:11:7f:44:41:f0 IEEE 802.11: associated (aid 1)
Sat Mar 11 14:51:18 2023 daemon.notice hostapd: wlan0: AP-STA-CONNECTED 00:11:7f:44:41:f0
Sat Mar 11 14:51:18 2023 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.159 00:11:7f:44:41:f0
Sat Mar 11 14:51:18 2023 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.159 00:11:7f:44:41:f0 SAMI85W10
Sat Mar 11 14:54:37 2023 daemon.info dnsmasq[1]: read /etc/hosts - 4 addresses
Sat Mar 11 14:54:37 2023 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 2 addresses
Sat Mar 11 14:54:37 2023 daemon.info dnsmasq[1]: read /tmp/hosts/odhcpd - 0 addresses
Sat Mar 11 14:54:37 2023 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Sat Mar 11 14:54:38 2023 daemon.info dnsmasq[1]: read /etc/hosts - 4 addresses
Sat Mar 11 14:54:38 2023 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 2 addresses
Sat Mar 11 14:54:38 2023 daemon.info dnsmasq[1]: read /tmp/hosts/odhcpd - 1 addresses
Sat Mar 11 14:54:38 2023 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Sat Mar 11 14:54:39 2023 user.info : luci: accepted login on /admin/status/overview for root from 192.168.1.159

The GPIO is wrong in the watchdog script. For 21.02 and up it should be 483 and not 3.

You are getting an error about a nonexistent GPIO

Also the syntax is wrong in the script.

echo 483 > /sys/class/gpio/export
echo "out" > /sys/class/gpio/gpio483/direction

while [ 1 ]; do
echo 1 > /sys/class/gpio/gpio483/value
sleep 20
echo 0 > /sys/class/gpio/gpio483/value
sleep 20
done
1 Like

Thank you very much Dairyman! I can confirm now that the rebootings have stopped with your script!

Best regards,
semsem

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.