Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Nortel Router & Switches for VoIP

Nortel Router & Switches VoIP

Nortel Router & Switches for VoIP

by  jeter  Posted    (Edited  )

Programming Nortel Ethernet Routing Switches
for VoIP, and PC connectivity to Phone

1) Provision switch with IP information

2) Set VLAN configuration control to Flexible

3) Build voice VLAN

4) Add ports to voice VLAN (all ports with a phone and/or data connection must be members of voice and data VLANs.)

5) Add ports to native VLAN (all ports with a phone and/or data connection must be members of voice and data VLANs.)

6) Set default VLAN on ports (all ports with a phone and/or data connection and uplink ports should have a default VLAN of the native VLAN 1, ports connected directly connected to the phone system should have a default VLAN of the Voice VLAN)

7) Set VLAN tagging on ports (all ports with a phone and/or data connection should be set to untag the default VLAN, all uplink ports should be set to tag all VLANs and ports directly connected to the phone system should be set to untag the Voice VLAN)

Sample configuration steps

Assume that the router is already programmed for dot1q encapsulation; with vlan 1 as the data vlan and an ip address of 172.30.30.1/24, as well as vlan 100 as the voice vlan and an ip address of 10.30.30.1/24. Also assume that ports 1-22 on a 24 port switch will be used for voice and data connectivity, while port 23 will be used for connectivity to the phone system and port 24 will be the trunk/uplink port to the router.

enable
config terminal

1a) ip default-gateway [default-gateway]
ip default-gateway 172.30.30.1
1b) ip address [ip address] [subnet mask]
ip address 172.30.30.2 255.255.255.0

2) vlan configcontrol [control type]
vlan configcontrol flexible

3) vlan create [vlan] name [ônameö] type [type]
vlan create 100 name ôVoice VLANö type port

4) vlan members add [VLAN number] [switch ports]
vlan members add 100 1-24

5) vlan members add [VLAN number] [switch ports]
vlan members add 1 1-24

6) vlan ports [switch ports] pvid [VLAN number]
vlan ports 1-22, 24 pvid 1
vlan ports 23 pvid 100

7) vlan ports [switch ports] tagging [tagging action]
vlan ports 1-22 tagging untagpvidonly
vlan ports 23 tagging untagall
vlan ports 24 tagging tagall
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top