Link to home
Start Free TrialLog in
Avatar of TimDunlap
TimDunlap

asked on

I need to setup a VLAN and route the traffic across my P2P T1 for voice traffic

I have two locations connected by a P2P T1 with two Cisco 1841 routers.  My telco company has informed me that I need to create a VLAN for them to send voice accross the P2P between the locations.  How to go about creating the VLANs on the routers, and how to I bridge them across the WAN connection?
Avatar of bhnmi
bhnmi

Your VLAN cannot traverse the p2p. You need to traffic shape the p2p connection to give you VoIP traffic Priority. To have connectivity on the p2p you need to configure the serial connections on each router.

Router a

interface Serial0/0
 description Point to Point T1
 ip address 10.0.0.1 255.255.255.252
 encapsulation ppp
 no cdp enable

Router b

interface Serial0/0
 description Point to Point T1
 ip address 10.0.0.2 255.255.255.252
 encapsulation ppp
 no cdp enable

Also may need to configure your line encoding on the controller


controller T1 0/1
 framing esf
 clock source internal
 linecode b8zs
 channel-group 0 timeslots 1-24

Need to set the clock source to internal also.
ASKER CERTIFIED SOLUTION
Avatar of Don Johnston
Don Johnston
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I told him above that he cannot have a  VLAN traverse the p2p.