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

DHCP and config files

Status
Not open for further replies.

TeleLion

Technical User
Jan 4, 2006
326
US
Am trying to setup diffrent config files for diffrent locations, i tried using teh subnet mask method its, not working, IP range start is xx.30.40.101 subnet mask is 255.255.255.0, i set my config file under root under /xx.30.40.101-24/dbc42x02/d42x02-config.txt, its not working am using windows 2003 ISS 6, can any one help me or explain to me how this works, tried to read Alex, but i can not get it to work.

To MD or not to MD that is the question
 
Looking at the directory paths you are doing this correctly. I know however this feature was implemented in a particular firmware release so you may need to upgrade to a later version of the IP Phone Boot, Firmware & Language files.

I have just checked some Ethereal traces and the directory structure you list is correct:

Code:
GET /172.28.37.0-25/dbc42x02/d42x02-config.txt HTTP/1.0\r\n

The phones also have a priority list as well regarding what file is requested. They will attempt 1st the Domain Name method (DNS suffix first and then the TDN if received in Option 43), 2nd is the Subnet Method and 3rd is the root.

So for example if the IP Phone receives DNS Suffix 'company.com', a TDN of 'region1.company.com' and an IP address of 192.168.10.1/24, then it will try:

Code:
http://[sw-server]/company.com/dbc42x02/d42x02-config.txt

If there is no file found (404), then it will try:

Code:
http://[sw-server]/region1.company.com/dbc42x02/d42x02-config.txt

If that fails then it will try:

Code:
http://[sw-server]/192.168.10.0-24/dbc42x02/d42x02-config.txt

And if that fails it will finally try:

Code:
http://[sw-server]/dbc42x02/d42x02-config.txt

You do have Version 2 IP Phones don't you? If they are older version 1 phones the file is 'd4-config.txt' and they use a different folder name and firmware etc.

HTH

Andy
 
you need to add a MIME type for .DAT extension in your IIS server, otherwise phones won't be able to download the firmware. the first test you must do is to browse yourself to the path the phone would do (like ADB100 explained)...

-----------------------------------------------------
What You See Is What You Get
Never underestimate tha powah of tha google!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top