Archer C7 physical LAN ports missing

Hello,

I upgraded the TP-Link Archer C7 v2 to the latest Openwrt v23.
https://openwrt.org/toh/hwdata/tp-link/tp-link_archer_c7_ac1750_v2.0

When I was going to create VLAN, I realized then that the ports are not available.

I downloaded the sysupgrade using the firmware selector and did not add any custom software. Is there something that i need installed?

Thank you

I think your device is using DSA... let's take a look:

Please connect to your OpenWrt device using ssh and copy the output of the following commands and post it here using the "Preformatted text </> " button:
grafik
Remember to redact passwords, MAC addresses and any public IP addresses you may have:

ubus call system board
cat /etc/config/network

Thank you psherman for the guidance

 ubus call system board
{
        "kernel": "5.15.162",
        "hostname": "OpenWrt",
        "system": "Qualcomm Atheros QCA9558 ver 1 rev 0",
        "model": "TP-Link Archer C7 v2",
        "board_name": "tplink,archer-c7-v2",
        "rootfs_type": "squashfs",
        "release": {
                "distribution": "OpenWrt",
                "version": "23.05.4",
                "revision": "r24012-d8dd03c46f",
                "target": "ath79/generic",
                "description": "OpenWrt 23.05.4 r24012-d8dd03c46f"
        }
}


 cat /etc/config/network

config interface 'loopback'
        option device 'lo'
        option proto 'static'
        option ipaddr '127.0.0.1'
        option netmask '255.0.0.0'

config globals 'globals'
        option ula_prefix 'fd88:356a:e788::/48'

config device
        option name 'br-lan'
        option type 'bridge'
        list ports 'eth1.1'

config interface 'lan'
        option device 'br-lan'
        option proto 'static'
        option ipaddr '192.168.1.1'
        option netmask '255.255.255.0'
        option ip6assign '60'

config interface 'wan'
        option device 'eth0.2'
        option proto 'dhcp'

config interface 'wan6'
        option device 'eth0.2'
        option proto 'dhcpv6'

config switch
        option name 'switch0'
        option reset '1'
        option enable_vlan '1'

config switch_vlan
        option device 'switch0'
        option vlan '1'
        option ports '2 3 4 5 0t'

config switch_vlan
        option device 'switch0'
        option vlan '2'
        option ports '1 6t'

config interface 'wwan'
        option proto 'dhcp'

ok... so I was wrong... your device is swconfig (I forgot that it's an ath79 device; that target hasn't migrated to DSA).

You'll find your lan ports (and the wan, too) in LuCI under the Network > Switch section, or here in the config (note that the logical port numbers don't necessarily directly equal the physical port number labeling on the back of the device):

1 Like

I've found the ports! Thank you very much!

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