Cisco 7200 vlan

ciscocisco-7200vlan

I have cisco 7200 with 4 interfaces. Gi0/1 is my WAN where the ISP is sending me untagged and tagged traffic. Gi0/3 is my LAN interface.

Now I have vlan ID 2402. This vlan come from Gi0/1 and I want to resend it to Gi0/3. How can I do this?

interface GigabitEthernet0/1.1
 no shutdown
 encapsulation dot1Q 2402
!  
interface GigabitEthernet0/3.1
 no shutdown
 encapsulation dot1Q 2402
!

How I connect these interfaces ? There is no switchport command….

Best Answer

What you are looking for is best done with a bridge. Add the vlan tagged subinterface and the internal LAN interface to a bridge group, and it should work the way you want. (I've not done this for a long time. You're building an ethernet switch out of routed interfaces. This is the same thing done on a Cat-2948G-L3 -- I've seen CCIE's stumped by it until they get that it's a 48 port router.)

Another path would be policy routing. But I'm assuming the tagged traffic is not something that would be easily routed. (say, multicast IPTV traffic.)

Related Topic