ZyXEL GS1900-8HP

The GS1900-8HP is an 8-port Gigabit L2 switch with a 70W of PoE power budget.

ZyXEL GS1900-8HP angled view

None at this time.

FIXME Find out flash layout, then add the flash layout table here (copy, paste, modify the example).

Please check out the article Flash layout. It contains examples and explanations that describe how to document the flash layout.

This section deals with

  • How you install OpenWrt from a device freshly opened
  • The steps required such as reset to factory defaults if the device has already been configured

Two step flashing process

Note: Reset router to factory defaults if it has been previously configured.

  • Log in to OEM management web interface. It should be at http://192.168.1.1
  • Navigate to Maintenance > Firmware > Management
  • If “Active Image” has the first option selected, OpenWrt will need to be flashed to the “Active” partition. If the second option is selected, OpenWrt will need to be flashed to the “Backup” partition.
  • Navigate to Maintenance > Firmware > Upload
  • Upload the initramfs-kernel.bin file by your preferred method to the previously determined partition. When prompted, select to boot from the newly flashed image, and reboot the switch.
  • Once OpenWrt has booted, scp the sysupgrade.bin image to /tmp and flash it thought SSH.
    • Note that on older OpenWRT versions by default the device is only reachable from port 1 using VLAN 100. With OpenWRT 21.02 and newer, this VLAN is no longer necessary, also any switch port can be used to access the web interface.
    • It may be the case, that using `scp` is not possible, as the openssh-sftp-server package is not installed by default. You may configure one switch port to a new created interface which uses DHCP and connect it to a network. Then install the package it by using opkg update && opkg install openssh-sftp-server.
sysupgrade -n /tmp/<sysupgrade file name>
  • It may be necessary to restart the network (/etc/init.d/network restart) on the running initramfs image.

In case you flashed the initramfs-kernel image to the wrong partition

The device appears to reset itself on each boot. This is because it's booting the wrong partition, namely the one that contains the initramfs image. There's no overlay filesystem. To fix this:

  • SSH into the switch (still using port 1 and VLAN 100 on older OpenWRT Versions).
  • Modify your /etc/fw_env.config to look like this:
/dev/mtd2 0x0 0x1000 0x10000 
  • Run fw_printenv just to see that it works.
  • Assuming it did, run the following command:
fw_setenv bootpartition 0
  • Reboot.
  • OpenWRT should now be properly installed.

Specific values needed for tftp

Bootloader tftp server IPv4 address 192.168.1.1
Bootloader MAC address (special) N/A
Firmware tftp image Ramdisk image from latest OpenWrt release (NOTE: Name must contain “initramfs”)
TFTP transfer window FILL-IN seconds
TFTP window start approximately FILL-IN seconds after power on
TFTP client required IP address 192.168.1.111

Instructions are identical to those for the GS1900-10HP and apply both to the GS1900-8HP v1 and v2 as well.

  • Configure your client with a static 192.168.1.x IP (e.g. 192.168.1.10).
  • Set up a TFTP server on your client and make it serve the initramfs image.
  • Connect serial, power up the switch, interrupt U-boot by hitting the space bar, and enable the network:
U-Boot Version: 2.0.0.60266 (Jul 17 2015 - 12:29:50)

CPU:   500MHz
DRAM:  128 MB
FLASH: 16 MB
Model: ZyXEL_GS1900_8HP
SN:    S192L03003567
MAC:   BC:CF:4F:41:CF:48 - BC:CF:4F:41:CF:50

Press SPACE to abort boot script:  0 
## Booting image from partition ... 0
   Version:   V2.40.0
   Created:   2017-11-14  12:00:43 UTC
   Size:      6321727 Bytes = 6 MB
   Verifying Checksum ... OK
   Uncompressing Image ... OK

Starting ...

rtk network on
  
  • Since the GS1900-10HP is a dual-partition device, you want to keep the OEM firmware on the backup partition for the time being. OpenWrt can only boot off the first partition anyway (hardcoded in the DTS). To make sure we are manipulating the first partition, issue the following commands:
  setsys bootpartition 0
  savesys
  
  • Download the image onto the device and boot from it:
  tftpboot 0x84f00000 192.168.1.10:openwrt-realtek-generic-zyxel_gs1900-8hp-v{1,2}-initramfs-kernel.bin
  bootm
  
  • Once OpenWrt has booted, scp the sysupgrade image to /tmp and flash it. I:
  sysupgrade /tmp//tmp/openwrt-realtek-generic-zyxel_gs1900-8hp-v{1,2}-squashfs-sysupgrade.bin
  

generic.sysupgrade

FIXME These are generic instructions. Update with your router's specifics.

  • Browse to http://192.168.1.1/cgi-bin/luci/mini/system/upgrade/ LuCI Upgrade URL
  • Upload image file for sysupgrade to LuCI
  • Wait for reboot

If you don't have a GUI (LuCI) available, you can alternatively upgrade via the command line. There are two command line methods for upgrading:

  • sysupgrade
  • mtd

Note: It is important that you put the firmware image into the ramdisk (/tmp) before you start flashing.

sysupgrade

  • Login as root via SSH on 192.168.1.1, then enter the following commands:
cd /tmp
wget http://downloads.openwrt.org/snapshots/trunk/XXX/xxx.abc
sysupgrade /tmp/xxx.abc

mtd

If sysupgrade does not support this router, use mtd.

  • Login as root via SSH on 192.168.1.1, then enter the following commands:
cd /tmp
wget http://downloads.openwrt.org/snapshots/trunk/XXX/xxx.abc
mtd write /tmp/xxx.abc linux && reboot

Basic configuration After flashing, proceed with this.
Set up your Internet connection, configure wireless, configure USB port, etc.

FIXME Please fill in real values for this device, then remove the EXAMPLEs

The default network configuration is:

Interface Name Description Default configuration
br-lan EXAMPLE LAN & WiFi EXAMPLE 192.168.1.1/24
vlan0 (eth0.0) EXAMPLE LAN ports (1 to 4) EXAMPLE None
vlan1 (eth0.1) EXAMPLE WAN port EXAMPLE DHCP
wl0 EXAMPLE WiFi EXAMPLE Disabled

FIXME Please fill in real values for this device, then remove the EXAMPLEs

Numbers 0-3 are Ports 1-4 as labeled on the unit, number 4 is the Internet (WAN) on the unit, 5 is the internal connection to the router itself. Don't be fooled: Port 1 on the unit is number 3 when configuring VLANs. vlan0 = eth0.0, vlan1 = eth0.1 and so on.

Port Switch port
Internet (WAN) EXAMPLE 4
LAN 1 EXAMPLE 3
LAN 2 EXAMPLE 2
LAN 3 EXAMPLE 1
LAN 4 EXAMPLE 0

hardware.button on howto use and configure the hardware button(s). Here, we merely name the buttons, so we can use them in the above Howto.

The ZyXEL GS1900-8HP has the following buttons:

BUTTON Event
CPU Reset reset
Soft Reset user

Front:
Insert photo of front of the casing

Back:
Insert photo of back of the casing

Backside label:
Insert photo of backside label

Note: This will void your warranty!

Remove the 3 Phillips screws on the rear of the switch using a PH1 bit, then slide the top cover away from the front panel NOTE: this step is not necessary to remove the cover to gain access to the serial pins on v2 hardware. On v1 hardware, the ventilation slits are angled, and no cutout has been made to access the serial pins, unlike on the v2.

Main PCB:
Insert photo of PCB

port.serial general information about the serial port, serial port cable, etc.

How to connect to the Serial Port of this specific device:
PCB with all 4 serial pins on the left bottom side, already usable directly (shipped from factory)

FIXME Replace EXAMPLE by real values.

Serial connection parameters
for ZyXEL GS1900-8HP 1
EXAMPLE 115200, 8N1

The serial header is exposed via the right-hand side of the switch, through the small opening The four pins exposed are:-

 VCC
 SOUT
 SIN
 GND

port.jtag general information about the JTAG port, JTAG cable, etc.

How to connect to the JTAG Port of this specific device:
Insert photo of PCB with markings for JTAG port

None so far.

II: Copied Preloader data from 0x9fc00000(15356B) to 0x9f000000. II: Cleared Preloader BSS section at 0x9f003bfc(0B). ^MII: PLL... ^MII: PLL is set by SW... OK Setting DTR INFO: Applying ZQ result directly by plat_memctl_ZQ_force_config() II: DRAM is set by software calibration... Start claibation test...PASSED MCR (0xb8001000):0x100421e0, 0x20320000, 0x54422830, 0x0404030f DTR2 (0xb8001010):0x0630d000 DIDER(0xb8001050):0x80000000 DCDR (0xb8001060):0x9b540000 ZQPCR(0xb8001090):0x1f000000, 0x00000000, 0x00000000 PHY Registers(0xb8001500): 0xb8001500:0x80000010, 0x0000007f, 0x00000000, 0x00000000 0xb8001510:0x0a1e0f00, 0x0a1e0f00, 0x0a1e0f00, 0x0a1e0f00 0xb8001520:0x0a1e0f00, 0x0a1e0f00, 0x0a1e0f00, 0x0a1e0f00 0xb8001530:0x1e000000, 0x1e000000, 0x1e000000, 0x1e000000 0xb8001540:0x1e000000, 0x1e000000, 0x1e000000, 0x1e000000 0xb8001550:0x001e0f00, 0x001e0f00, 0x001e0f00, 0x001e0f00 0xb8001560:0x001e0f00, 0x001e0f00, 0x001e0f00, 0x001e0f00 0xb8001570:0x00000000, 0x00000000, 0x00000000, 0x00000000 0xb8001580:0x00000000, 0x00000000, 0x00000000, 0x00000000 0xb8001590:0x08000000, 0x66996699, 0x00000000, 0xaa55aa55 0xb80015a0:0x00000000, 0x00000000, 0x00000000, 0x00000000 II: Selected DRAM model #0. II: Copying U-Boot from 0x9fc03bfc(237328B) to 0x83f00000... OK II: NOR SPI Flash... searching flash parameters... supported flash ID: [c22018][c22019][c22019]... detected flash ID: [c22018]... OK U-Boot 2011.12.39239-svn41394 (Jul 24 2013 - 09:34:28) Board: RTL838x CPU:500MHz LXB:200MHz MEM:300MHz DRAM: 128 MB SPI-F: 1x16 MB Loading 1024B env. variables from offset 0x40000 Switch Model: ZyXEL_GS1900_8HP (Port Count: 8) Switch Chip: RTL8382M ************************************************** #### RTL8218B config - MAC ID = 8 #### Now Internal PHY REG32(0xbb00a17c) is 0 PHY[0]: disable EEE on port [0x0000ff00] Net: Net Initialization Skipped rtl8380#0 Hit any key to stop autoboot: 0 ## Booting image from partition ... 0 ## Booting kernel from Legacy Image at b4260000 ... Image Name: Created: 2014-10-20 18:59:18 UTC Image Type: MIPS Linux Kernel Image (gzip compressed) Data Size: 5994950 Bytes = 5.7 MB Load Address: 80000000 Entry Point: 8026b000 Verifying Checksum ... OK Uncompressing Kernel Image ... OK Starting kernel ... Linux version 2.6.19 (jiucai2012_wang@realsil-9be1f83.realsil.com.cn) (gcc version 3.4.4 mipssde-6.03.00-20051020) #4 PREEMPT Mon Oct 20 18:59:01 CST 2014 CPU revision is: 00019070 Determined physical RAM map: memory: 04000000 @ 00000000 (usable) User-defined physical RAM map: memory: 04000000 @ 00000000 (usable) Built 1 zonelists. Total pages: 16256 Kernel command line: console=ttyS0,115200 mem=64M Primary instruction cache 16kB, physically tagged, 4-way, linesize 16 bytes. Primary data cache 16kB, 2-way, linesize 16 bytes. Synthesized TLB refill handler (20 instructions). Synthesized TLB load handler fastpath (32 instructions). Synthesized TLB store handler fastpath (32 instructions). Synthesized TLB modify handler fastpath (31 instructions). PID hash table entries: 256 (order: 8, 1024 bytes) Dentry cache hash table entries: 8192 (order: 3, 32768 bytes) Inode-cache hash table entries: 4096 (order: 2, 16384 bytes) Memory: 57416k/65536k available (2055k kernel code, 8056k reserved, 416k data, 4936k init, 0k highmem) Mount-cache hash table entries: 512 Checking for 'wait' instruction... available. NET: Registered protocol family 16 NET: Registered protocol family 2 IP route cache hash table entries: 512 (order: -1, 2048 bytes) TCP established hash table entries: 2048 (order: 1, 8192 bytes) TCP bind hash table entries: 1024 (order: 0, 4096 bytes) TCP: Hash tables configured (established 2048 bind 1024) TCP reno registered squashfs: version 3.3 (2007/10/31) Phillip Lougher squashfs: LZMA suppport for slax.org by jro JFFS2 version 2.2. (NAND) (C) 2001-2006 Red Hat, Inc. io scheduler noop registered io scheduler anticipatory registered io scheduler deadline registered io scheduler cfq registered (default) Serial: 8250/16550 driver $Revision: 1.90 $ 1 ports, IRQ sharing disabled serial8250: ttyS0 at MMIO 0x0 (irq = 31) is a 16550A loop: loaded (max 8 devices) Probe: SPI CS1 Flash Type MX25L12845E Creating 7 MTD partitions on "Total SPI FLASH": 0x00000000-0x00040000 : "LOADER" 0x00040000-0x00050000 : "BDINFO" 0x00050000-0x00060000 : "SYSINFO" 0x00060000-0x00160000 : "JFFS2 CFG" 0x00160000-0x00260000 : "JFFS2 LOG" 0x00260000-0x00930000 : "RUNTIME" 0x00930000-0x01000000 : "RUNTIME2" TCP cubic registered NET: Registered protocol family 1 NET: Registered protocol family 10 IPv6 over IPv4 tunneling driver NET: Registered protocol family 17 Freeing unused kernel memory: 4936k freed Mount DEV File System....OK Mount PROC File System....OK Mount Main SQFS File System....OK Mount Module SQFS File System....OK Mount CFG JFFS2 File System....OK Mount LOG JFFS2 File System....OK Init RTCORE Driver Module....OK Init RTK Driver Module....OK eth: module license 'unspecified' taints kernel. Init SYS NIC Driver Module....OK Init RTDRV Driver Module....OK Init Board Configuration Module....OK Init KSI Core Driver Module....OK Init SKI Core Driver Module....OK Init VLAN Aware Module....OK Init Board Core Module....OK Init Board PoE Module....OK Init Switch STP Module....OK Init Switch LACP Module....OK Init Switch IGMP Snooping Module....OK Init Switch 802.1X Module....OK Init Switch Voice VLAN Module....OK Init Switch LLDP Module....OK Init Custom Module....OK ====== Defaults Initial [Start] ====== Init Switch Factory Default....OK Init VLAN Factory Default....OK Init Mirror Factory Default....OK Init L2 Factory Default....OK Init Trunk Factory Default....OK Init Rate Factory Default....OK Init QoS Factory Default....OK Init LACP Factory Default....OK Init EEE Factory Default....OK Init 802.1x Factory Default....OK Init DoS Factory Default....OK Init IGMP Factory Default....OK Init STP Factory Default....OK Init System Factory Default....OK Init LLDP Factory Default....OK Init SNMP Factory Default....OK Init Port Factory Default....OK Init Syslog Factory Default....OK Init AAA Factory Default....OK Init Radius Factory Default....OK Init Custom Factory Default....OK Init MGMT ACL Factory Default....OK Init PoE Factory Default....OK ====== Defaults Initial [Done] ====== ====== Initial from startup-config [Start] ====== ====== Initial from startup-config [Done] ====== ====== Post Initial [Start] ====== System Post Initial....OK Port Post Initial....OK ====== Post Initial [Done] ====== ESC[HESC[J Switch Command Line Interface Press any key to continue Username:


II: Copied Preloader data from 0x9fc00000(15356B) to 0x9f000000. II: Cleared Preloader BSS section at 0x9f003bfc(0B). II: PLL... II: PLL is set by SW... OK Setting DTR INFO: Applying ZQ result directly by plat_memctl_ZQ_force_config() II: DRAM is set by software calibration... Start claibation test...PASSED MCR (0xb8001000):0x100421e0, 0x20320000, 0x54422830, 0x0404030f DTR2 (0xb8001010):0x0630d000 DIDER(0xb8001050):0x80000000 DCDR (0xb8001060):0x9b540000 ZQPCR(0xb8001090):0x1f000000, 0x00000000, 0x00000000 PHY Registers(0xb8001500): 0xb8001500:0x80000010, 0x0000007f, 0x00000000, 0x00000000 0xb8001510:0x0a1e0f00, 0x0a1e0f00, 0x0a1e0f00, 0x0a1e0f00 0xb8001520:0x0a1e0f00, 0x0a1e0f00, 0x0a1e0f00, 0x0a1e0f00 0xb8001530:0x1e000000, 0x1e000000, 0x1e000000, 0x1e000000 0xb8001540:0x1e000000, 0x1e000000, 0x1e000000, 0x1e000000 0xb8001550:0x001e0f00, 0x001e0f00, 0x001e0f00, 0x001e0f00 0xb8001560:0x001e0f00, 0x001e0f00, 0x001e0f00, 0x001e0f00 0xb8001570:0x00000000, 0x00000000, 0x00000000, 0x00000000 0xb8001580:0x00000000, 0x00000000, 0x00000000, 0x00000000 0xb8001590:0x08000000, 0x66996699, 0x00000000, 0xaa55aa55 0xb80015a0:0x00000000, 0x00000000, 0x00000000, 0x00000000 II: Selected DRAM model #0. II: Copying U-Boot from 0x9fc03bfc(237328B) to 0x83f00000... OK II: NOR SPI Flash... searching flash parameters... supported flash ID: [c22018][c22019][c22019]... detected flash ID: [c22018]... OK U-Boot 2011.12.39239-svn41394 (Jul 24 2013 - 09:34:28) Board: RTL838x CPU:500MHz LXB:200MHz MEM:300MHz DRAM: 128 MB SPI-F: 1×16 MB Loading 1024B env. variables from offset 0x40000 Switch Model: ZyXEL_GS1900_8HP (Port Count: 8) Switch Chip: RTL8382M ** #### RTL8218B config - MAC ID = 8 #### Now Internal PHY REG32(0xbb00a17c) is 0 PHY[0]: disable EEE on port [0x0000ff00] Net: Net Initialization Skipped rtl8380#0 Hit any key to stop autoboot: 1 ## Booting image from partition ... 0 ## Booting kernel from Legacy Image at b4260000 ...

 Image Name:   MIPS OpenWrt Linux-5.4.124
 Created:      2021-06-13  22:02:19 UTC
 Image Type:   MIPS Linux Kernel Image (gzip compressed)
 Data Size:    2814396 Bytes = 2.7 MB
 Load Address: 80000000
 Entry Point:  80000400
 Verifying Checksum ... OK
 Uncompressing Kernel Image ... OK

Starting kernel ... [ 0.000000] Linux version 5.4.124 (builder@buildhost) (gcc version 8.4.0 (OpenWrt GCC 8.4.0 r16172-2aba3e9784)) #0 Sun Jun 13 22:02:19 2021 [ 0.000000] RTL838X model is 83806800 [ 0.000000] SoC Type: RTL8380 [ 0.000000] Kernel command line: [ 0.000000] printk: bootconsole [early0] enabled [ 0.000000] CPU0 revision is: 00019070 (MIPS 4KEc) [ 0.000000] MIPS: machine is ZyXEL GS1900-8HP v1 Switch [ 0.000000] Registering _machine_restart [ 0.000000] Initrd not found or empty - disabling initrd [ 0.000000] Using appended Device Tree. [ 0.000000] Primary instruction cache 16kB, VIPT, 4-way, linesize 16 bytes. [ 0.000000] Primary data cache 16kB, 2-way, VIPT, cache aliases, linesize 16 bytes [ 0.000000] Zone ranges: [ 0.000000] Normal [mem 0x0000000000000000-0x0000000007ffffff] [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000007ffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000007ffffff] [ 0.000000] On node 0 totalpages: 32768 [ 0.000000] Normal zone: 288 pages used for memmap [ 0.000000] Normal zone: 0 pages reserved [ 0.000000] Normal zone: 32768 pages, LIFO batch:7 [ 0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768 [ 0.000000] pcpu-alloc: [0] 0 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 32480 [ 0.000000] Kernel command line: console=ttyS0,115200 [ 0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes, linear) [ 0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] Memory: 122448K/131072K available (5087K kernel code, 172K rwdata, 636K rodata, 1200K init, 207K bss, 8624K reserved, 0K cma-reserved) [ 0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 [ 0.000000] NR_IRQS: 32 [ 0.000000] random: get_random_bytes called from 0x805c4a28 with crng_init=0 [ 0.000000] timer_probe: no matching timers found [ 0.000000] CPU frequency from device tree: 500MHz [ 0.000000] clocksource: MIPS: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041786 ns [ 0.000015] sched_clock: 32 bits at 250MHz, resolution 4ns, wraps every 8589934590ns [ 0.008693] Calibrating delay loop... 497.66 BogoMIPS (lpj=995328) [ 0.047574] pid_max: default: 32768 minimum: 301 [ 0.053167] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.061299] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.080949] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.091775] futex hash table entries: 256 (order: -1, 3072 bytes, linear) [ 0.099532] pinctrl core: initialized pinctrl subsystem [ 0.108937] NET: Registered protocol family 16 [ 0.186854] workqueue: max_active 576 requested for napi_workq is out of range, clamping between 1 and 512 [ 0.209367] clocksource: Switched to clocksource MIPS [ 0.217906] NET: Registered protocol family 2 [ 0.223178] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 0.232716] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes, linear) [ 0.242077] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.250605] TCP bind hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.258430] TCP: Hash tables configured (established 1024 bind 1024) [ 0.266018] UDP hash table entries: 256 (order: 0, 4096 bytes, linear) [ 0.273339] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes, linear) [ 0.281846] NET: Registered protocol family 1 [ 0.300063] workingset: timestamp_bits=14 max_order=15 bucket_order=1 [ 0.326840] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.333312] jffs2: version 2.2 (NAND) (SUMMARY) (ZLIB) (LZMA) (RTIME) (CMODE_PRIORITY) © 2001-2006 Red Hat, Inc. [ 0.396924] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252) [ 0.411714] pinctrl-single bb001000.pinmux: 32 pins, size 4 [ 0.418591] Probing RTL8231 GPIOs [ 0.422297] rtl8231_init called, MDIO bus ID: 0 [ 0.427476] GPIO line 173 (poe_enable) hogged as output/high [ 0.435047] Probing RTL838X GPIOs [ 0.546845] Serial: 8250/16550 driver, 16 ports, IRQ sharing enabled [ 0.560995] printk: console [ttyS0] disabled [ 0.565865] b8002000.uart: ttyS0 at MMIO 0xb8002000 (irq = 31, base_baud = 12500000) is a 16550A [ 0.575628] printk: console [ttyS0] enabled [ 0.575628] printk: console [ttyS0] enabled [ 0.584940] printk: bootconsole [early0] disabled [ 0.584940] printk: bootconsole [early0] disabled [ 0.596954] b8002100.uart: ttyS1 at MMIO 0xb8002100 (irq = 30, base_baud = 12500000) is a 16550A [ 1.023023] brd: module loaded [ 1.027409] Initializing rtl838x_nor_driver [ 1.032281] SPI resource base is b8001200 [ 1.036857] Address mode is 3 bytes [ 1.040818] rtl838x_nor_init called [ 1.047595] rtl838x-nor b8001200.spi: mx25l12805d (16384 Kbytes) [ 1.054543] 7 fixed-partitions partitions found on MTD device rtl838x_nor [ 1.062223] Creating 7 MTD partitions on “rtl838x_nor”: [ 1.068164] 0x000000000000-0x000000040000 : “u-boot” [ 1.076220] 0x000000040000-0x000000050000 : “u-boot-env” [ 1.084802] 0x000000050000-0x000000060000 : “u-boot-env2” [ 1.093314] 0x000000060000-0x000000160000 : “jffs” [ 1.101254] 0x000000160000-0x000000260000 : “jffs2” [ 1.109301] 0x000000260000-0x000000930000 : “firmware” [ 1.137632] 2 uimage-fw partitions found on MTD device firmware [ 1.144375] Creating 2 MTD partitions on “firmware”: [ 1.150039] 0x000000000000-0x0000002b0000 : “kernel” [ 1.158167] 0x0000002b0000-0x0000006d0000 : “rootfs” [ 1.166262] mtd: device 7 (rootfs) set to be root filesystem [ 1.172763] 1 squashfs-split partitions found on MTD device rootfs [ 1.179794] 0x000000520000-0x0000006d0000 : “rootfs_data” [ 1.188349] 0x000000930000-0x000001000000 : “runtime2” [ 1.198158] libphy: Fixed MDIO Bus: probed [ 1.202831] random: fast init done [ 1.212937] Probing RTL838X eth device pdev: 87c75a00, dev: 87c75a10 [ 1.235964] Found SoC ID: 8380: RTL8380, family 8380 [ 1.241605] rtl8380_init_mac [ 1.244865] Using MAC 0000107befe2ff04 [ 1.249562] libphy: rtl838x-eth-mdio: probed [ 1.307893] Realtek RTL8218B (internal) mdio-bus:08: Detected internal RTL8218B [ 1.316154] Firmware loaded. Size 1184, magic: 83808380 [ 3.849966] NET: Registered protocol family 10 [ 3.869859] Segment Routing with IPv6 [ 3.874255] NET: Registered protocol family 17 [ 3.879492] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. [ 3.894794] 8021q: 802.1Q VLAN Support v1.8 [ 3.930611] Realtek RTL8218B (internal) rtl838x slave mii-0:08: Detected internal RTL8218B [ 3.939950] Firmware loaded. Size 1184, magic: 83808380 [ 6.477011] libphy: rtl838x slave mii: probed [ 6.484094] > 1fffffff 1fffffff 1fffffff 1fffffff 1fffffff 1fffffff 1fffffff 1fffffff [ 6.492972] > 10000100 10000200 10000400 10000800 10001000 10002000 10004000 10008000 [ 6.501797] > 1fffffff 1fffffff 1fffffff 1fffffff 1fffffff 1fffffff 1fffffff 1fffffff [ 6.510609] > 1fffffff 1fffffff 1fffffff 1fffffff 1000ff00 0 0 0 [ 6.519407] CPU_PORT> 1000ff00 [ 8.566780] rtl83xx-switch switch@bb000000 lan1 (uninitialized): PHY [mdio-bus:08] driver [Realtek RTL8218B (internal)] [ 8.592616] rtl83xx-switch switch@bb000000 lan2 (uninitialized): PHY [mdio-bus:09] driver [Realtek RTL8218B (internal)] [ 8.618452] rtl83xx-switch switch@bb000000 lan3 (uninitialized): PHY [mdio-bus:0a] driver [Realtek RTL8218B (internal)] [ 8.643760] rtl83xx-switch switch@bb000000 lan4 (uninitialized): PHY [mdio-bus:0b] driver [Realtek RTL8218B (internal)] [ 8.669597] rtl83xx-switch switch@bb000000 lan5 (uninitialized): PHY [mdio-bus:0c] driver [Realtek RTL8218B (internal)] [ 8.695429] rtl83xx-switch switch@bb000000 lan6 (uninitialized): PHY [mdio-bus:0d] driver [Realtek RTL8218B (internal)] [ 8.721259] rtl83xx-switch switch@bb000000 lan7 (uninitialized): PHY [mdio-bus:0e] driver [Realtek RTL8218B (internal)] [ 8.747093] rtl83xx-switch switch@bb000000 lan8 (uninitialized): PHY [mdio-bus:0f] driver [Realtek RTL8218B (internal)] [ 8.761245] rtl83xx-switch switch@bb000000: configuring for fixed/internal link mode [ 8.770299] DSA: tree 0 setup [ 8.773765] LINK state irq: 20 [ 8.777235] In rtl83xx_setup_qos [ 8.780913] Setting up RTL838X QoS [ 8.784782] RTL838X_PRI_SEL_TBL_CTRL(i): 00033112 [ 8.790104] Current Intprio2queue setting: 00000000 [ 8.795617] QM_PKT2CPU_INTPRI_MAP: 00fac688 [ 8.800374] rtl838x_dbgfs_init called [ 8.820953] rtl83xx-switch switch@bb000000: Link is Up - 1Gbps/Full - flow control off [ 8.834702] VFS: Mounted root (squashfs filesystem) readonly on device 31:7. [ 8.856397] Freeing unused kernel memory: 1200K [ 8.861563] This architecture does not have kernel memory protection. [ 8.868824] Run /sbin/init as init process [ 9.600380] init: Console is alive [ 9.807240] kmodloader: loading kernel modules from /etc/modules-boot.d/* [ 9.972737] kmodloader: done loading kernel modules from /etc/modules-boot.d/* [ 9.980950] RTL8380 Link change: status: 1, ports 200 [ 9.998045] init: - preinit - [ 11.332297] random: jshn: uninitialized urandom read (4 bytes read) [ 11.535379] random: jshn: uninitialized urandom read (4 bytes read) [ 12.219600] random: jshn: uninitialized urandom read (4 bytes read) [ 12.435791] urandom_read: 1 callbacks suppressed [ 12.435806] random: jshn: uninitialized urandom read (4 bytes read) [ 12.565278] random: procd: uninitialized urandom read (4 bytes read) Press the [f] key and hit [enter] to enter failsafe mode Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level [ 15.934772] mount_root: jffs2 not ready yet, using temporary tmpfs overlay [ 15.951681] urandom-seed: Seed file not found (/etc/urandom.seed) [ 16.144879] procd: - early - [ 18.623444] procd: - ubus - [ 18.780876] random: ubusd: uninitialized urandom read (4 bytes read) [ 18.810556] random: ubusd: uninitialized urandom read (4 bytes read) [ 18.818904] random: ubusd: uninitialized urandom read (4 bytes read) [ 18.835358] procd: - init - Please press Enter to activate this console. [ 20.336417] kmodloader: loading kernel modules from /etc/modules.d/* [ 20.658499] urngd: v1.0.2 started. [ 20.700413] xt_time: kernel timezone is -0000 [ 20.790381] kmodloader: done loading kernel modules from /etc/modules.d/* [ 20.916434] random: crng init done [ 20.920381] random: 1 urandom warning(s) missed due to ratelimiting [ 65.287193] Using MAC 0000107befe2ff04 [ 65.305632] RESETTING 8380, CPU_PORT 28 [ 65.509465] rtl838x-eth bb00a300.ethernet eth0: configuring for fixed/internal link mode [ 65.518506] In rtl838x_mac_config, mode 1 [ 65.526267] In rtl838x_mac_config, mode 1 [ 65.530912] rtl838x-eth bb00a300.ethernet eth0: Link is Up - 1Gbps/Full - flow control off [ 65.577610] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 66.071770] device eth0 entered promiscuous mode [ 66.077096] rtl83xx-switch switch@bb000000 lan1: configuring for phy/internal link mode [ 66.086832] 8021q: adding VLAN 0 to HW filter on device lan1 [ 66.093300] rtl83xx_vlan_prepare: port 8 [ 66.097783] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 66.097807] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 66.119797] rtl83xx_vlan_add port 8, vid_end 0, vid_end 0, flags 0 [ 66.126803] rtl83xx_vlan_prepare: port 28 [ 66.131370] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 66.131392] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 66.153388] rtl83xx_vlan_add port 28, vid_end 0, vid_end 0, flags 0 [ 66.285487] switch: port 1(lan1) entered blocking state [ 66.291426] switch: port 1(lan1) entered disabled state [ 66.298290] device lan1 entered promiscuous mode [ 66.303904] rtl83xx_vlan_prepare: port 8 [ 66.308421] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 66.308444] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 66.330447] rtl83xx_vlan_prepare: port 28 [ 66.335018] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 66.335040] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 66.357063] rtl83xx_vlan_add port 8, vid_end 1, vid_end 1, flags 6 [ 66.364088] Untagged ports, VLAN 1: 1fffffff [ 66.368955] Tagged ports, VLAN 1: 1fffffff [ 66.373641] rtl83xx_vlan_add port 28, vid_end 1, vid_end 1, flags 4 [ 66.380731] Untagged ports, VLAN 1: 1fffffff [ 66.385597] Tagged ports, VLAN 1: 1fffffff [ 66.515797] rtl83xx_vlan_prepare: port 8 [ 66.520328] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 66.520350] Tagged ports 1fffffff, untag 1ffffeff, prof 0, MC# 1, UC# 1, FID 0 [ 66.542418] rtl83xx_vlan_prepare: port 28 [ 66.546998] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 66.547020] Tagged ports 1fffffff, untag 1ffffeff, prof 0, MC# 1, UC# 1, FID 0 [ 66.569033] rtl83xx_vlan_add port 8, vid_end 1, vid_end 1, flags 6 [ 66.576045] Untagged ports, VLAN 1: 1fffffff [ 66.580907] Tagged ports, VLAN 1: 1fffffff [ 66.585587] rtl83xx_vlan_add port 28, vid_end 1, vid_end 1, flags 4 [ 66.592678] Untagged ports, VLAN 1: 1fffffff [ 66.597544] Tagged ports, VLAN 1: 1fffffff [ 66.826057] rtl83xx_vlan_prepare: port 8 [ 66.830566] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 66.830589] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 66.852623] rtl83xx_vlan_prepare: port 28 [ 66.857193] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 66.857215] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 66.879223] rtl83xx_vlan_add port 8, vid_end 100, vid_end 100, flags 0 [ 66.886619] Untagged ports, VLAN 100: 0 [ 66.890993] Tagged ports, VLAN 100: 100 [ 66.895378] rtl83xx_vlan_add port 28, vid_end 100, vid_end 100, flags 0 [ 66.902860] Untagged ports, VLAN 100: 0 [ 66.907237] Tagged ports, VLAN 100: 10000100 [ 67.185561] device switch entered promiscuous mode [ 67.410056] rtl83xx-switch switch@bb000000 lan2: configuring for phy/internal link mode [ 67.419793] 8021q: adding VLAN 0 to HW filter on device lan2 [ 67.426276] rtl83xx_vlan_prepare: port 9 [ 67.430758] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 67.430781] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 67.452775] rtl83xx_vlan_add port 9, vid_end 0, vid_end 0, flags 0 [ 67.459793] rtl83xx_vlan_prepare: port 28 [ 67.464371] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 67.464393] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 67.486389] rtl83xx_vlan_add port 28, vid_end 0, vid_end 0, flags 0 [ 67.521088] RTL8380 Link change: status: 1, ports 200 [ 68.019868] switch: port 2(lan2) entered blocking state [ 68.025838] switch: port 2(lan2) entered disabled state [ 68.097552] device lan2 entered promiscuous mode [ 68.103359] rtl83xx_vlan_prepare: port 9 [ 68.107891] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 68.107915] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 68.129939] rtl83xx_vlan_prepare: port 28 [ 68.134514] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 68.134537] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 68.156537] rtl83xx_vlan_add port 9, vid_end 1, vid_end 1, flags 6 [ 68.163544] Untagged ports, VLAN 1: 1fffffff [ 68.168402] Tagged ports, VLAN 1: 1fffffff [ 68.173077] rtl83xx_vlan_add port 28, vid_end 1, vid_end 1, flags 4 [ 68.180172] Untagged ports, VLAN 1: 1fffffff [ 68.185034] Tagged ports, VLAN 1: 1fffffff [ 68.592170] rtl83xx_vlan_prepare: port 9 [ 68.596682] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 68.596705] Tagged ports 1fffffff, untag 1ffffdff, prof 0, MC# 1, UC# 1, FID 0 [ 68.618761] rtl83xx_vlan_prepare: port 28 [ 68.623325] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 68.623347] Tagged ports 1fffffff, untag 1ffffdff, prof 0, MC# 1, UC# 1, FID 0 [ 68.645338] rtl83xx_vlan_add port 9, vid_end 1, vid_end 1, flags 6 [ 68.652364] Untagged ports, VLAN 1: 1fffffff [ 68.657222] Tagged ports, VLAN 1: 1fffffff [ 68.661902] rtl83xx_vlan_add port 28, vid_end 1, vid_end 1, flags 4 [ 68.668993] Untagged ports, VLAN 1: 1fffffff [ 68.673860] Tagged ports, VLAN 1: 1fffffff [ 69.022060] rtl83xx-switch switch@bb000000 lan3: configuring for phy/internal link mode [ 69.031729] 8021q: adding VLAN 0 to HW filter on device lan3 [ 69.038235] rtl83xx_vlan_prepare: port 10 [ 69.042815] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 69.042838] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 69.064832] rtl83xx_vlan_add port 10, vid_end 0, vid_end 0, flags 0 [ 69.071933] rtl83xx_vlan_prepare: port 28 [ 69.076501] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 69.076523] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 69.098539] rtl83xx_vlan_add port 28, vid_end 0, vid_end 0, flags 0 [ 69.322257] switch: port 3(lan3) entered blocking state [ 69.328220] switch: port 3(lan3) entered disabled state [ 69.365536] device lan3 entered promiscuous mode [ 69.371315] rtl83xx_vlan_prepare: port 10 [ 69.375945] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 69.375969] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 69.398005] rtl83xx_vlan_prepare: port 28 [ 69.402576] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 69.402598] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 69.424598] rtl83xx_vlan_add port 10, vid_end 1, vid_end 1, flags 6 [ 69.431721] Untagged ports, VLAN 1: 1fffffff [ 69.436583] Tagged ports, VLAN 1: 1fffffff [ 69.441263] rtl83xx_vlan_add port 28, vid_end 1, vid_end 1, flags 4 [ 69.448376] Untagged ports, VLAN 1: 1fffffff [ 69.453239] Tagged ports, VLAN 1: 1fffffff [ 69.722151] rtl83xx_vlan_prepare: port 10 [ 69.726751] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 69.726774] Tagged ports 1fffffff, untag 1ffffbff, prof 0, MC# 1, UC# 1, FID 0 [ 69.748812] rtl83xx_vlan_prepare: port 28 [ 69.753389] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 69.753412] Tagged ports 1fffffff, untag 1ffffbff, prof 0, MC# 1, UC# 1, FID 0 [ 69.775408] rtl83xx_vlan_add port 10, vid_end 1, vid_end 1, flags 6 [ 69.782513] Untagged ports, VLAN 1: 1fffffff [ 69.787371] Tagged ports, VLAN 1: 1fffffff [ 69.792046] rtl83xx_vlan_add port 28, vid_end 1, vid_end 1, flags 4 [ 69.799141] Untagged ports, VLAN 1: 1fffffff [ 69.803994] Tagged ports, VLAN 1: 1fffffff [ 70.058093] rtl83xx-switch switch@bb000000 lan4: configuring for phy/internal link mode [ 70.067582] 8021q: adding VLAN 0 to HW filter on device lan4 [ 70.074079] rtl83xx_vlan_prepare: port 11 [ 70.078665] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 70.078688] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 70.100690] rtl83xx_vlan_add port 11, vid_end 0, vid_end 0, flags 0 [ 70.107793] rtl83xx_vlan_prepare: port 28 [ 70.112368] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 70.112390] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 70.134400] rtl83xx_vlan_add port 28, vid_end 0, vid_end 0, flags 0 [ 70.368627] switch: port 4(lan4) entered blocking state [ 70.374609] switch: port 4(lan4) entered disabled state [ 70.423687] device lan4 entered promiscuous mode [ 70.429591] rtl83xx_vlan_prepare: port 11 [ 70.434208] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 70.434230] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 70.456247] rtl83xx_vlan_prepare: port 28 [ 70.460824] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 70.460846] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 70.482865] rtl83xx_vlan_add port 11, vid_end 1, vid_end 1, flags 6 [ 70.489964] Untagged ports, VLAN 1: 1fffffff [ 70.494857] Tagged ports, VLAN 1: 1fffffff [ 70.499539] rtl83xx_vlan_add port 28, vid_end 1, vid_end 1, flags 4 [ 70.506636] Untagged ports, VLAN 1: 1fffffff [ 70.511497] Tagged ports, VLAN 1: 1fffffff [ 70.688615] RTL8380 Link change: status: 1, ports 200 [ 70.754085] rtl83xx_vlan_prepare: port 11 [ 70.758715] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 70.758738] Tagged ports 1fffffff, untag 1ffff7ff, prof 0, MC# 1, UC# 1, FID 0 [ 70.780769] rtl83xx_vlan_prepare: port 28 [ 70.785361] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 70.785383] Tagged ports 1fffffff, untag 1ffff7ff, prof 0, MC# 1, UC# 1, FID 0 [ 70.807366] rtl83xx_vlan_add port 11, vid_end 1, vid_end 1, flags 6 [ 70.814474] Untagged ports, VLAN 1: 1fffffff [ 70.819329] Tagged ports, VLAN 1: 1fffffff [ 70.824004] rtl83xx_vlan_add port 28, vid_end 1, vid_end 1, flags 4 [ 70.831099] Untagged ports, VLAN 1: 1fffffff [ 70.835952] Tagged ports, VLAN 1: 1fffffff [ 71.134510] rtl83xx-switch switch@bb000000 lan5: configuring for phy/internal link mode [ 71.144425] 8021q: adding VLAN 0 to HW filter on device lan5 [ 71.150925] rtl83xx_vlan_prepare: port 12 [ 71.155512] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 71.155535] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 71.177536] rtl83xx_vlan_add port 12, vid_end 0, vid_end 0, flags 0 [ 71.184632] rtl83xx_vlan_prepare: port 28 [ 71.189207] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 71.189228] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 71.211244] rtl83xx_vlan_add port 28, vid_end 0, vid_end 0, flags 0 [ 71.450240] switch: port 5(lan5) entered blocking state [ 71.456201] switch: port 5(lan5) entered disabled state [ 71.493536] device lan5 entered promiscuous mode [ 71.499333] rtl83xx_vlan_prepare: port 12 [ 71.503957] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 71.503980] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 71.525989] rtl83xx_vlan_prepare: port 28 [ 71.530556] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 71.530578] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 71.552578] rtl83xx_vlan_add port 12, vid_end 1, vid_end 1, flags 6 [ 71.559693] Untagged ports, VLAN 1: 1fffffff [ 71.564552] Tagged ports, VLAN 1: 1fffffff [ 71.569225] rtl83xx_vlan_add port 28, vid_end 1, vid_end 1, flags 4 [ 71.576318] Untagged ports, VLAN 1: 1fffffff [ 71.581171] Tagged ports, VLAN 1: 1fffffff [ 71.607421] rtl83xx-switch switch@bb000000 lan2: Link is Up - 1Gbps/Full - flow control off [ 71.638372] switch: port 2(lan2) entered blocking state [ 71.644335] switch: port 2(lan2) entered forwarding state [ 71.692726] IPv6: ADDRCONF(NETDEV_CHANGE): switch: link becomes ready [ 71.725592] IPv6: ADDRCONF(NETDEV_CHANGE): switch.1: link becomes ready [ 71.733827] IPv6: ADDRCONF(NETDEV_CHANGE): switch.100: link becomes ready [ 71.812175] rtl83xx_vlan_prepare: port 12 [ 71.816801] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 71.816823] Tagged ports 1fffffff, untag 1fffefff, prof 0, MC# 1, UC# 1, FID 0 [ 71.838845] rtl83xx_vlan_prepare: port 28 [ 71.843412] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 71.843434] Tagged ports 1fffffff, untag 1fffefff, prof 0, MC# 1, UC# 1, FID 0 [ 71.865429] rtl83xx_vlan_add port 12, vid_end 1, vid_end 1, flags 6 [ 71.872526] Untagged ports, VLAN 1: 1fffffff [ 71.877386] Tagged ports, VLAN 1: 1fffffff [ 71.882081] rtl83xx_vlan_add port 28, vid_end 1, vid_end 1, flags 4 [ 71.889176] Untagged ports, VLAN 1: 1fffffff [ 71.894046] Tagged ports, VLAN 1: 1fffffff [ 72.029741] rtl83xx-switch switch@bb000000 lan6: configuring for phy/internal link mode [ 72.039584] 8021q: adding VLAN 0 to HW filter on device lan6 [ 72.046099] rtl83xx_vlan_prepare: port 13 [ 72.050686] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 72.050709] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 72.072707] rtl83xx_vlan_add port 13, vid_end 0, vid_end 0, flags 0 [ 72.079809] rtl83xx_vlan_prepare: port 28 [ 72.084377] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 72.084398] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 72.106428] rtl83xx_vlan_add port 28, vid_end 0, vid_end 0, flags 0 [ 72.234509] switch: port 6(lan6) entered blocking state [ 72.240477] switch: port 6(lan6) entered disabled state [ 72.247168] device lan6 entered promiscuous mode [ 72.252928] rtl83xx_vlan_prepare: port 13 [ 72.257543] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 72.257567] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 72.279769] rtl83xx_vlan_prepare: port 28 [ 72.284362] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 72.284384] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 72.306439] rtl83xx_vlan_add port 13, vid_end 1, vid_end 1, flags 6 [ 72.313563] Untagged ports, VLAN 1: 1fffffff [ 72.318423] Tagged ports, VLAN 1: 1fffffff [ 72.323095] rtl83xx_vlan_add port 28, vid_end 1, vid_end 1, flags 4 [ 72.330188] Untagged ports, VLAN 1: 1fffffff [ 72.335051] Tagged ports, VLAN 1: 1fffffff [ 72.465022] rtl83xx_vlan_prepare: port 13 [ 72.469651] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 72.469674] Tagged ports 1fffffff, untag 1fffdfff, prof 0, MC# 1, UC# 1, FID 0 [ 72.491704] rtl83xx_vlan_prepare: port 28 [ 72.496276] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 72.496298] Tagged ports 1fffffff, untag 1fffdfff, prof 0, MC# 1, UC# 1, FID 0 [ 72.518336] rtl83xx_vlan_add port 13, vid_end 1, vid_end 1, flags 6 [ 72.525439] Untagged ports, VLAN 1: 1fffffff [ 72.530295] Tagged ports, VLAN 1: 1fffffff [ 72.534970] rtl83xx_vlan_add port 28, vid_end 1, vid_end 1, flags 4 [ 72.542066] Untagged ports, VLAN 1: 1fffffff [ 72.546918] Tagged ports, VLAN 1: 1fffffff [ 72.677994] rtl83xx-switch switch@bb000000 lan7: configuring for phy/internal link mode [ 72.687868] 8021q: adding VLAN 0 to HW filter on device lan7 [ 72.694353] rtl83xx_vlan_prepare: port 14 [ 72.698942] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 72.698965] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 72.720974] rtl83xx_vlan_add port 14, vid_end 0, vid_end 0, flags 0 [ 72.728087] rtl83xx_vlan_prepare: port 28 [ 72.732654] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 72.732676] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 72.754675] rtl83xx_vlan_add port 28, vid_end 0, vid_end 0, flags 0 [ 72.882249] switch: port 7(lan7) entered blocking state [ 72.888207] switch: port 7(lan7) entered disabled state [ 72.894894] device lan7 entered promiscuous mode [ 72.900633] rtl83xx_vlan_prepare: port 14 [ 72.905245] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 72.905269] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 72.927287] rtl83xx_vlan_prepare: port 28 [ 72.931866] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 72.931888] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 72.953915] rtl83xx_vlan_add port 14, vid_end 1, vid_end 1, flags 6 [ 72.961016] Untagged ports, VLAN 1: 1fffffff [ 72.965877] Tagged ports, VLAN 1: 1fffffff [ 72.970553] rtl83xx_vlan_add port 28, vid_end 1, vid_end 1, flags 4 [ 72.977649] Untagged ports, VLAN 1: 1fffffff [ 72.982510] Tagged ports, VLAN 1: 1fffffff [ 73.130132] rtl83xx_vlan_prepare: port 14 [ 73.134738] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 73.134761] Tagged ports 1fffffff, untag 1fffbfff, prof 0, MC# 1, UC# 1, FID 0 [ 73.156813] rtl83xx_vlan_prepare: port 28 [ 73.161390] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 73.161413] Tagged ports 1fffffff, untag 1fffbfff, prof 0, MC# 1, UC# 1, FID 0 [ 73.183414] rtl83xx_vlan_add port 14, vid_end 1, vid_end 1, flags 6 [ 73.190517] Untagged ports, VLAN 1: 1fffffff [ 73.195374] Tagged ports, VLAN 1: 1fffffff [ 73.200050] rtl83xx_vlan_add port 28, vid_end 1, vid_end 1, flags 4 [ 73.207155] Untagged ports, VLAN 1: 1fffffff [ 73.212018] Tagged ports, VLAN 1: 1fffffff [ 73.421977] rtl83xx-switch switch@bb000000 lan8: configuring for phy/internal link mode [ 73.431548] 8021q: adding VLAN 0 to HW filter on device lan8 [ 73.438044] rtl83xx_vlan_prepare: port 15 [ 73.442622] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 73.442645] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 73.464635] rtl83xx_vlan_add port 15, vid_end 0, vid_end 0, flags 0 [ 73.471738] rtl83xx_vlan_prepare: port 28 [ 73.476307] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 73.476329] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 73.498708] rtl83xx_vlan_add port 28, vid_end 0, vid_end 0, flags 0 [ 73.689990] switch: port 8(lan8) entered blocking state [ 73.695952] switch: port 8(lan8) entered disabled state [ 73.702645] device lan8 entered promiscuous mode [ 73.708381] rtl83xx_vlan_prepare: port 15 [ 73.712984] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 73.713007] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 73.735003] rtl83xx_vlan_prepare: port 28 [ 73.739577] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 73.739599] Tagged ports 1fffffff, untag 1fffffff, prof 0, MC# 1, UC# 1, FID 0 [ 73.761636] rtl83xx_vlan_add port 15, vid_end 1, vid_end 1, flags 6 [ 73.768733] Untagged ports, VLAN 1: 1fffffff [ 73.773602] Tagged ports, VLAN 1: 1fffffff [ 73.778279] rtl83xx_vlan_add port 28, vid_end 1, vid_end 1, flags 4 [ 73.785375] Untagged ports, VLAN 1: 1fffffff [ 73.790236] Tagged ports, VLAN 1: 1fffffff [ 74.070096] rtl83xx_vlan_prepare: port 15 [ 74.074701] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 74.074724] Tagged ports 1fffffff, untag 1fff7fff, prof 0, MC# 1, UC# 1, FID 0 [ 74.096767] rtl83xx_vlan_prepare: port 28 [ 74.101337] VLAN 1: L2 learning: 1, L2 Unknown MultiCast Field 1ff, IPv4 Unknown MultiCast Field 1ff, IPv6 Unknown MultiCast Field: 1ff [ 74.101399] Tagged ports 1fffffff, untag 1fff7fff, prof 0, MC# 1, UC# 1, FID 0 [ 74.123394] rtl83xx_vlan_add port 15, vid_end 1, vid_end 1, flags 6 [ 74.130499] Untagged ports, VLAN 1: 1fffffff [ 74.135356] Tagged ports, VLAN 1: 1fffffff [ 74.140029] rtl83xx_vlan_add port 28, vid_end 1, vid_end 1, flags 4 [ 74.147125] Untagged ports, VLAN 1: 1fffffff [ 74.151977] Tagged ports, VLAN 1: 1fffffff [ 75.473510] jffs2_scan_eraseblock(): End of filesystem marker found at 0x0 [ 75.629553] jffs2_build_filesystem(): unlocking the mtd device... [ 75.629566] done. [ 75.638741] jffs2_build_filesystem(): erasing all blocks after the end marker... [ 83.439919] done. [ 83.450621] jffs2: notice: (3219) jffs2_build_xattr_subsystem: complete building xattr subsystem, 0 of xdatum (0 unchecked, 0 orphan) and 0 of xref (0 dead, 0 orphan) found. [ 83.849300] overlayfs: upper fs does not support tmpfile. BusyBox v1.33.1 (2021-06-13 22:02:19 UTC) built-in shell (ash)

_______                     ________        __

| |.-----.-----.-----.| | | |.----.| |_ | - || _ | -| || | | || _|| _| |_|| |_||||||| ||

        |__| W I R E L E S S   F R E E D O M

----------------------------------------------------- OpenWrt 21.02.0-rc3, r16172-2aba3e9784


WARNING!

There is no root password defined on this device! Use the “passwd” command to set up a new password in order to prevent unauthorized SSH logins.


root@OpenWrt:/#


Space for additional notes, links to forum threads or other resources.

  • ...

FIXME Add tags below, then remove this fixme.

How to add tags

This website uses cookies. By using the website, you agree with storing cookies on your computer. Also you acknowledge that you have read and understand our Privacy Policy. If you do not agree leave the website.More information about cookies
  • Last modified: 2024/02/13 11:06
  • by borromini