VLAN trunking - my personal hell-on-earth

Hi,

I tried to configure my 493G for the network shown in the picture below. My main issue here is setting up the VLANs and VLAN-trunks.
In my setup I have four VLANs: Office (ID 111), Management (ID 333), Guest (ID 666) and InternetDMZ (ID 999). Could someone please point me in the right direction on what steps to take to:

  • use ether1 as access port for the ISP modem
  • configure two VLAN-trunks on ether 8 and ether 9 each with all four vlans
  • configure a third VLAN-trunk on ether 7 with only three of the VLANs
  • configure ether2-ether6 as access ports in the office-VLAN

Background:

  • both switches need to have access to all four VLANs
  • the WLAN access point creates a secure office Wireless-LAN on the office-VLAN (111) and another WLAN for guests who will have internet access only
  • computers within the office-VLAN will connect through NAT to the internet

thx, ben

Baby steps my friend… baby steps. Because of the way ROS does it’s network abstractions, the config gets very complex very quick. Quite often, it’s easier to just open it up a bit, then put restrictions when/where necessary.

For your internet, this is pretty basic. Just add the address/route/dns provided by your ISP. Done.

Next, let’s build your basic Office LAN:

  1. Create a bridge (call it ‘Office’)
  2. Add ports ether2-6 to that bridge
  3. Add an IP address and DHCp server to that bridge
  4. Done

Next, we need to trunk multiple VLANs to the AP and some switches… You CAN do what you describe, but it will not hurt anything to pass all 4 VLANs to the AP (it will just ignore one of them).

  1. Create a bridge (call it ‘LAN_Bridge’)
  2. Add ports ether7-9 to that bridge
  3. Add VLAN interfaces ON that bridge
  4. Add the Office VLAN to the Office bridge (Done!)
  5. Add IP addresses and DHCP servers to your other 3 VLAN interfaces
  6. Done!

On the AP, I’m not sure how you’re going to pass 2 SSIDs to 3 VLANs

  1. Create a bridge (call it ‘LAN_Bridge’)
  2. Create 3 VLANs on that bridge
  3. Create 3 more bridges (‘Office’,‘Management’,‘Guest’)
  4. Create 3 VAPs (‘Office’,‘Management’,‘Guest’)
  5. Add each VLAN and VAP to their respective bridges
  6. Done!

Hope this helps!