cranberryporcupine
New Around Here
I have a web server on my network that is available to the public.
I want to put this web server in the DMZ to separate it from the rest of my devices on my LAN.
I have been reading that I can do this with VLAN using Merlin on my DSL-AC68u.
I am trying to understand my current modem configuration to know what I need to change.
I found this diagram which is what I think my hardware is BCM470x
I know br0 is my main bridge and the interfaces are as follows
vlan1 is my lan
vlan2 would be the DSL but it is not in use
vlan4 is connected to my WAN.
What is vlan56 to vlan62? Should I delete these?
This is what I have so far.
Is this correct?
I want to put this web server in the DMZ to separate it from the rest of my devices on my LAN.
I have been reading that I can do this with VLAN using Merlin on my DSL-AC68u.
I am trying to understand my current modem configuration to know what I need to change.
I found this diagram which is what I think my hardware is BCM470x
Create a guest network on DD-WRT for Asus RT-AC68 - Coert Vonk
Shows how you can use a $75 router and DD-WRT to support 2 networks. Use it to create a guest network on DD-WRT for Asus RT-AC68.
coertvonk.com
Code:
brctl show
bridge name bridge id STP enabled interfaces
br101 8000.000000000000 no
br0 8000.ac9e176b1b99 yes vlan1
eth1
eth2
Code:
VLANs: BCM5301x enabled mac_check mac_hash
1: vlan1: 1 2 3 5t
2: vlan2: 0 5t
4: vlan4: 4 5t
56: vlan56: 0t 1 4t
57: vlan57: 2t 3t 4t 5t 7t 8t
58: vlan58: 0 3 5
59: vlan59: 0 1t 2t 3t 8t
60: vlan60: 0 1t 2 7 8t
61: vlan61: 0 1 3t 5 7t 8t
62: vlan62: 0t 4t 7 8t
I know br0 is my main bridge and the interfaces are as follows
- vlan1 (Ethernet ports 1, 2 and 3)
- eth1 - 2.4Ghz wireless
- eth2 - 5Ghz wireless
vlan1 is my lan
vlan2 would be the DSL but it is not in use
vlan4 is connected to my WAN.
What is vlan56 to vlan62? Should I delete these?
Code:
#!/bin/sh
# force LAN port 3 to another VLAN
robocfg vlan 1 ports "1 2 5t"
robocfg vlan 10 ports "3 5t"
vconfig add eth0 10
ifconfig vlan10 up
brctl addif br0 vlan10
brctl addbr br1
brctl addif br1 vlan10
ifconfig br1 192.168.10.1 netmask 255.255.255.0
ifconfig br1 up
nvram set lan_ifnames="vlan1 eth1 eth2"
nvram set lan_ifname="br0"
nvram set lan1_ifnames="vlan10"
nvram set lan1_ifname="br1"
killall eapd
eapd
This is what I have so far.
Is this correct?