
caesar at starkreality
Nov 6, 2009, 1:20 PM
Post #5 of 5
(7854 views)
Permalink
|
Oof, ok. We've got some vlans that aren't contiguous, so it'll be a long "int range ..." line. But oh well. Thanks, -----Original Message----- From: Marcus Stoegbauer [mailto:marcus [at] grmpf] Sent: Friday, November 06, 2009 11:43 AM To: force10-nsp [at] puck Cc: William S. Duncanson Subject: Re: [F10-nsp] Quick question from a F10 newb... William S. Duncanson wrote: > What's the FTOS equivalent to Cisco's: > Switchport trunk encapsulation dot1q > Switchport mode trunk > ? You can't simply put a port into trunk mode as you do in IOS, you have to define all the VLANs that you want to carry on that port. For an access port you do: int g0/6 switchport int vlan 123 untagged g0/6 For a trunk port you go: int g0/6 switchport int vlan 123 tagged g0/6 int vlan 124 tagged g0/6 and so on. You can also use "int range vlan" to cover many VLANs in one command. (untagged and tagged relate to the way the ethernet frames are coming into the switch) Marcus _______________________________________________ force10-nsp mailing list force10-nsp [at] puck https://puck.nether.net/mailman/listinfo/force10-nsp
|