-
Re: Netvanta 3200 Ethernet as a Trunk Port?
jayh Jun 25, 2019 12:47 AM (in response to rookus)The ethernet interface can indeed be configured as a trunk. However, it isn't that easy. What is your goal? Do you want to pass a single VLAN over the T-1 or more than one? The VLAN encapsulation won't natively traverse the T-1. If only a single VLAN is needed you can map that VLAN to the T-1.
You can accomplish something similar to VLANs by using frame-relay encapsulation on the T1 and mapping each VLAN to a frame-relay PVC.
You can also use the device as a router and use VRFs to keep your traffic separate on a layer 3 basis as opposed to layer 2..
-
Re: Netvanta 3200 Ethernet as a Trunk Port?
rookus Jun 26, 2019 2:24 PM (in response to jayh)Jayh,
Thank you for the reply. My goal is to pass two VLAN's over the Adtran Equipment, one for computer and one for voice (VoIP). Will this script work?:
ip routing
!
bridge irb
!
bridge 1 protocol ieee
!
interface eth 0/1
bridge-group 1
bridge-group 1 vlan-transparent
no ip address
no shutdown
!
interface t1 1/1
clock source internal
tdm-group 1 timeslots 1-24 speed 64
no shutdown
!
interface ppp 1
bridge-group 1
bridge-group 1 vlan-transparent
no ip address
ppp bcp tagged-frame
mtu 1524
no shutdown
cross-connect 1 t1 1/1 1 ppp 1
!
interface bvi 1
ip address X.X.X.X Y.Y.Y.Y (If you enter an IP address and subnet mask for management)
no shutdown
This was from ttps://supportforums.adtran.com/message/8106#8106 that was forwarded to me by one of our IT technicians.
What do you think?
-
Re: Netvanta 3200 Ethernet as a Trunk Port?
jayh Jun 26, 2019 4:33 PM (in response to rookus)Yes, this should work. Don't forget to increase the MTU on the PPP interfaces to 1524 as shown to accommodate the VLAN tags.
-
Re: Netvanta 3200 Ethernet as a Trunk Port?
rookus Jun 27, 2019 11:54 AM (in response to jayh)Thank you. I will try it and let you know the result.
I appreciate the help, very much!!
-
-
-