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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Mitel Ip Phone Displays (Add Gateway Error) and Options

Status
Not open for further replies.

Valdez83

Technical User
Apr 19, 2011
10
US
I have a Mitel 500 ICP that I am installing along with 300 phones. I have added the folowing Options top my external DHCP ISC-DHCPd :
#
# Global DHCP options
#
ping-check true;
one-lease-per-client false;

authoritative;

#
# DDNS options
#
ddns-updates false;
ddns-update-style ad-hoc;
ddns-domainname "wgclawfirm.com";
ddns-rev-domainname "in-addr.arpa";
ignore client-updates;



#
# Option definitions
#

option wpad code 252 = string;
option MITEL_43 code 43 = string;
option MITEL_128 code 128 = ip-address;
option MITEL_129 code 129 = ip-address;
option MITEL_130 code 130 = string;
option MITEL_132 code 132 = string;
option MITEL_133 code 133 = string;
option MITEL_134 code 134 = string;


option WyseFTP code 161 = string;
option nortel-callserver code 128 = string;
option nortel-2245 code 151 = ip-address;
#option tftp-server-name "192.168.1.20";
#


#
# Common to all networks/subnets
#
option domain-name "wgclawfirm.com";
option domain-name-servers 10.1.11.17,10.1.11.18,10.1.2.18;
option smtp-server mail.wgclawfirm.com;
option pop-server mail.wgclawfirm.com;
option allow unknown-clients;
deny bootp;


################################################################################
# Single subnets
################################################################################


#
# Subnet: dominion_pbx_vlan
# Description: Dominion PBX VLAN
#
# Warning: no failover serving this subnet
#
subnet 10.150.10.0 netmask 255.255.255.0 {
option subnet-mask 255.255.255.0;
option broadcast-address 10.150.10.255;
option routers 10.150.10.1;
option router-discovery false;
range 10.150.10.64 10.150.10.254;
option domain-name "wgclawfirm.com";
ddns-domainname "wgclawfirm.com";
option domain-name-servers 10.1.11.17,10.1.11.18,10.1.2.18;
option MITEL_43 "id:ipphone.mitel.com;sw_tftp=10.150.10.10;call_srv=10.150.10.10;vlan=111;l2p=6;dscp=46";
option MITEL_128 10.150.10.10;
option MITEL_129 10.150.10.10;
option MITEL_130 "MITEL IP PHONE";
option MITEL_132 111;
option MITEL_133 6;
option MITEL_134 46;
min-lease-time 600;
default-lease-time 7200;
max-lease-time 7200;
}

#
# Subnet: mtsa_corp_vlan
# Description: mtsa Corporate VLAN
#
# Warning: no failover serving this subnet
#
subnet 10.1.6.0 netmask 255.255.255.0 {
option subnet-mask 255.255.255.0;
option broadcast-address 10.1.6.255;
option routers 10.1.6.1;
option router-discovery false;
# unknown clients pool
pool {
allow unknown-clients;
range 10.1.6.51 10.1.6.254;
option domain-name "wgclawfirm.com";
ddns-domainname "wgclawfirm.com";
option domain-name-servers 10.1.6.40,10.1.11.17,10.1.11.18;
}
option MITEL_43 "id:ipphone.mitel.com;sw_tftp=10.150.6.15;call_srv=10.150.6.15;vlan=150;l2p=6;dscp=46";
option MITEL_128 10.150.6.15;
option MITEL_129 10.150.6.15;
option MITEL_130 "MITEL IP PHONE";
option MITEL_132 150;
option MITEL_133 6;
option MITEL_134 46;

option WyseFTP "mtsa-fileserver";
min-lease-time 600;
default-lease-time 7200;
max-lease-time 7200;
}


#
# Subnet: mtsa_pbx_vlan
# Description: mtsa PBX VLAN
#
# Warning: no failover serving this subnet
#
subnet 10.150.6.0 netmask 255.255.255.0 {
option subnet-mask 255.255.255.0;
option broadcast-address 10.150.6.255;
option routers 10.150.6.1;
option router-discovery false;
range 10.150.6.51 10.150.6.254;
option domain-name "wgclawfirm.com";
ddns-domainname "wgclawfirm.com";
option domain-name-servers 10.1.11.17,10.1.11.18,10.1.2.18;
option MITEL_43 "id:ipphone.mitel.com;sw_tftp=10.150.6.15;call_srv=10.150.6.15;vlan=150;l2p=6;dscp=46";
option MITEL_128 10.150.6.15;
option MITEL_129 10.150.6.15;
option MITEL_130 "MITEL IP PHONE";
option MITEL_132 150;
option MITEL_133 6;
option MITEL_134 46;
option nortel-callserver "Nortel-i2004-A,10.150.6.10:4100,1,5;10.150.6.10:4100,1,5.";
option vendor-class-identifier "Nortel-i2004-A";
min-lease-time 600;
default-lease-time 7200;
max-lease-time 7200;
}

...................................
And after all of this some phones come up and the others say (Add gateway error)
 
Check your switch programming as well, what Vlan are your phones supposed to be in 150 or 111?
 
Looks like Dominion PBX is Vlan 111 for Mitel options, are there 2 systems on this network?
What happens if you assign static values in the phone.
 
Yes there are 4 nodes. This dhcp server supports two mitels. If I insert the static values : icp, tftp, and vlan they work, some of them will even work by dhcp, and they come up with add gateway error. I have 300 phones I'm trying to not have insert the values 300 times..
 
I fixed the issue, I disabled all of the options exept option 43 and the phones came right up..
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top