• May 21, 2012, 05:42:28 AM
Welcome, Guest. Please login or register. Registration is free.
Did you miss your activation email?

Author Topic: DHCP For Nortel/AVAYA Ip phones on a Cisco Router or L3 swich.  (Read 1309 times)

0 Members and 1 Guest are viewing this topic.

Offline 802532600

  • Rookie
  • **
  • Posts: 1
DHCP For Nortel/AVAYA Ip phones on a Cisco Router or L3 swich.
« on: February 22, 2011, 10:33:07 AM »
Hi Michael,

Not sure which category/vendor to put this with.

However I have labbed a DHCP server oh a Cisco router for use with Nortel Ip phones.
A very similar config was deployed at a customers site.

It may be of use to someone.

!
no aaa new-model
!
ip routing
ip subnet-zero
no ip source-route
no ip finger
no ip domain-lookup
ip cef
!
!
!### 1) SET UP EXCLUSIONS FOR STATIC IP DEVICES ###
!### START ADDRESS (SPACE) END ADDRESS ###
!
!### VLAN2 DATA EXCLUSIONS ###
ip dhcp excluded-address 10.10.10.1 10.10.10.30
ip dhcp excluded-address 10.10.10.200 10.10.10.254
!
!### VLAN701 VOICE EXCLUSIONS ###
ip dhcp excluded-address 192.168.1.1 192.168.1.30
ip dhcp excluded-address 192.168.1.200 192.168.1.254
!
!### VLAN702 VOICE EXCLUSIONS ###
ip dhcp excluded-address 192.168.2.1 192.168.2.30
ip dhcp excluded-address 192.168.2.200 192.168.2.254
!
!
!### 2) SET UP DHCP FOR FOR DATA VLAN/SUBNET ###
!
ip dhcp pool Nortel_Data_VLAN2
   network 10.10.10.0 255.255.255.0
   default-router 10.10.10.1
   option 128 ascii Nortel-i2004-A,192.168.1.21:4100,1,10.
   option 191 ascii VLAN-A:701+702.
!
!
!### 3) SET UP DHCP FOR FOR VOIP-PHONES VLAN/SUBNET ###
!
!
ip dhcp pool Nortel_Voice_VLAN701
   network 192.168.1.0 255.255.255.0
   default-router 192.168.1.1
   option 128 ascii Nortel-i2004-A,192.168.1.21:4100,1,10.
   option 191 ascii VLAN-A:701+702.
!
!
ip dhcp pool Nortel_Voice_VLAN702
   network 192.168.2.0 255.255.255.0
   default-router 192.168.2.1
   option 128 ascii Nortel-i2004-A,192.168.1.21:4100,1,10.
   option 191 ascii VLAN-A:701+702.
!
!
!
!### 4) SET UP INTERFACES ###
!
!
interface fast 0/0
 description ### VLAN TRUNK & ROUTE LINK TO LAN SWITCH ###
 no ip address
 speed 100
 full-duplex
 no shutdown
!
!
int fast 0/0.2
desc ### VLAN 2 DATA SUBNET ###
ip add 10.10.10.1 255.255.255.0
no ip red
no ip dir
no shut
!
int fast 0/0.701
desc ### VLAN 701 VOIP PHONES SUBNET ###
ip add 192.168.1.1 255.255.255.0
no ip red
no ip dir
no shut
!
!
int fast 0/0.702
desc ### VLAN 702 VOIP PHONES SUBNET ###
ip add 192.168.2.1 255.255.255.0
no ip dir
no ip red
no shut
!
ip route 0.0.0.0 0.0.0.0 10.10.10.254 name DEFAULT-ROUTE
!

Cheers
Alex