VLAN configuration via GUI - 2 CPU ports (R7800, EA8500 etc)

Post new topic   This topic is locked: you cannot edit posts or make replies.    DD-WRT Forum Index -> Advanced Networking
Author Message
ho1Aetoo
DD-WRT Guru


Joined: 19 Feb 2019
Posts: 2977
Location: Germany

PostPosted: Thu Apr 06, 2023 6:33    Post subject: VLAN configuration via GUI - 2 CPU ports (R7800, EA8500 etc) Reply with quote
You must be registered in the forum and logged in to see the attachments!

The thread is valid for all newer firmware builds ≥ r52217

At the moment the thread is mainly for Atheros routers with 2 CPU ports like:
NETGEAR R7800, XR500, XR450, R7500, R7500V2, ASROCK G10, LINKSYS EA8500, D-Link DAP-3662, DIR-862L, TP-LINK Archer C7 v1-3, TL-WR1043ND v2, Comfast CF-WR650AC, Buffalo WZR-450HP2 etc...

The settings also work on Marvel routers like: WRT1200AC, WRT1900AC, WRT1900ACV2, WRT1900ACS, WRT3200ACM, WRT32X

If you have old CLI VLAN settings then remove them first or reset the router.

It is advantageous if you have a working WLAN connection when configuring the switch.
If you lock yourself out and the LAN ports no longer work, you can still connect to the router via WiFi.

The screenshots are from my R7800, so the port assignment shown via "swconfig dev switch0 show" may differ on other devices.

The "switch config tab" received a small update and the CPU ports are now configurable.
Finally VLANs can be configured via GUI on routers with multiple CPU ports.

The screenshot shows the "default configuration"


Last edited by ho1Aetoo on Sun Jan 07, 2024 12:50; edited 15 times in total
Sponsor
ho1Aetoo
DD-WRT Guru


Joined: 19 Feb 2019
Posts: 2977
Location: Germany

PostPosted: Thu Apr 06, 2023 6:33    Post subject: Reply with quote
Simple VLAN 7 tagging on the WAN port.
No other settings are necessary.

(change the 7 to the desired VLAN ID)


Last edited by ho1Aetoo on Sun Jan 07, 2024 12:51; edited 4 times in total
ho1Aetoo
DD-WRT Guru


Joined: 19 Feb 2019
Posts: 2977
Location: Germany

PostPosted: Thu Apr 06, 2023 6:34    Post subject: Reply with quote
"assign WAN port to switch"

If you have configured the router as WAP and don't need a WAN port you can assign the WAN port to the LAN.


Last edited by ho1Aetoo on Sun Jan 07, 2024 12:53; edited 4 times in total
ho1Aetoo
DD-WRT Guru


Joined: 19 Feb 2019
Posts: 2977
Location: Germany

PostPosted: Thu Apr 06, 2023 6:35    Post subject: Reply with quote
two connected WAN ports
works like a 2 port switch in front of the router

(no it is not a "dual-WAN")


Last edited by ho1Aetoo on Sun Jan 07, 2024 14:02; edited 5 times in total
ho1Aetoo
DD-WRT Guru


Joined: 19 Feb 2019
Posts: 2977
Location: Germany

PostPosted: Thu Apr 06, 2023 6:36    Post subject: Reply with quote
Simple LAN side port VLAN
Port 1-3 are in VLAN1
Port 4 is in VLAN3

By default all interfaces are bridged with br0
But you can assign e.g. VLAN3 to br1 and bridge it with a guest WLAN etc.

(small hint: if the CPU ports are tagged then VLAN interfaces are created automatically)


Last edited by ho1Aetoo on Sun Jan 07, 2024 13:43; edited 4 times in total
ho1Aetoo
DD-WRT Guru


Joined: 19 Feb 2019
Posts: 2977
Location: Germany

PostPosted: Thu Apr 06, 2023 6:36    Post subject: Reply with quote
a second variant to tag the WAN port
In this example it is not done by the switch but by the processor.

This variant requires a bit more resources but has the advantage that the switch allows non-tagged traffic to pass through and you can access e.g. the WebIF of the modem.

I use VLAN7 again as an example


Last edited by ho1Aetoo on Wed Apr 12, 2023 7:05; edited 4 times in total
ho1Aetoo
DD-WRT Guru


Joined: 19 Feb 2019
Posts: 2977
Location: Germany

PostPosted: Thu Apr 06, 2023 6:58    Post subject: Reply with quote
Trunk-Port Link between Main-Router and Wireless-Access-Point (WAP).

The regular LAN and the guest network are transported via the Trunk-Port.
The DHCP Server and DNS Server are located on the Main-Router

Main-Router:

WAN-Port = WAN
Port 1-3 = LAN
Port 4 = Trunk

Wireless-Access-Point:

WAN-Port = LAN
Port 1-3 = LAN
Port 4 = Trunk


Last edited by ho1Aetoo on Wed Apr 10, 2024 9:48; edited 6 times in total
ho1Aetoo
DD-WRT Guru


Joined: 19 Feb 2019
Posts: 2977
Location: Germany

PostPosted: Thu Apr 06, 2023 6:59    Post subject: Reply with quote
Net Isolation

The settings shown in the screenshots are sufficient.

The GUI setting "Net Isolation" isolates interfaces from br0
This means that no connection between br0 <-> br1 is possible.

However, if you have created several new bridges and want a more finely controlled isolation, manual firewall settings are necessary.

As already mentioned, "Net Isolation" only isolates against br0, which means that br1 and br2 are not isolated from each other, for example

Manual firewall rules for isolation.
Insert the firewall rules in the "Diagnostics.asp" tab. (for a trunk port setup with a WAP, the rules are placed on the main router!).

Full isolation - short version

Code:
## isolate bridges from the router itself (prevents WebIF/GUI access)
iptables -I INPUT -i br1 -m state --state NEW -j REJECT
iptables -I INPUT -i br1 -p udp --dport 67 -j ACCEPT
iptables -I INPUT -i br1 -p udp --dport 53 -j ACCEPT
iptables -I INPUT -i br1 -p tcp --dport 53 -j ACCEPT
iptables -I INPUT -i br2 -m state --state NEW -j REJECT
iptables -I INPUT -i br2 -p udp --dport 67 -j ACCEPT
iptables -I INPUT -i br2 -p udp --dport 53 -j ACCEPT
iptables -I INPUT -i br2 -p tcp --dport 53 -j ACCEPT

## isolate all bridges from each other
iptables -I FORWARD -i br+ -o br+ -m state --state NEW -j REJECT



allow management access from br0 to br1+br2 - long version

Code:
## isolate bridges from the router itself (prevents WebIF/GUI access)
iptables -I INPUT -i br1 -m state --state NEW -j REJECT
iptables -I INPUT -i br1 -p udp --dport 67 -j ACCEPT
iptables -I INPUT -i br1 -p udp --dport 53 -j ACCEPT
iptables -I INPUT -i br1 -p tcp --dport 53 -j ACCEPT
iptables -I INPUT -i br2 -m state --state NEW -j REJECT
iptables -I INPUT -i br2 -p udp --dport 67 -j ACCEPT
iptables -I INPUT -i br2 -p udp --dport 53 -j ACCEPT
iptables -I INPUT -i br2 -p tcp --dport 53 -j ACCEPT

## block connections from br1 to br0
## connection from br0 to br1 possible
iptables -I FORWARD -i br1 -o br0 -m state --state NEW -j REJECT

## block connections from br2 to br0
## connection from br0 to br2 possible
iptables -I FORWARD -i br2 -o br0 -m state --state NEW -j REJECT

## block connections from br1 to br2
iptables -I FORWARD -i br1 -o br2 -m state --state NEW -j REJECT
## block connections from br2 to br1
iptables -I FORWARD -i br2 -o br1 -m state --state NEW -j REJECT


Last edited by ho1Aetoo on Wed Dec 20, 2023 12:48; edited 2 times in total
ho1Aetoo
DD-WRT Guru


Joined: 19 Feb 2019
Posts: 2977
Location: Germany

PostPosted: Sun May 14, 2023 8:44    Post subject: Reply with quote
reserved for further examples
ho1Aetoo
DD-WRT Guru


Joined: 19 Feb 2019
Posts: 2977
Location: Germany

PostPosted: Sun Jan 07, 2024 13:49    Post subject: Reply with quote
reserved for further examples
Display posts from previous:    Page 1 of 1
Post new topic   This topic is locked: you cannot edit posts or make replies.    DD-WRT Forum Index -> Advanced Networking All times are GMT

Navigation

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum