Hello,
We are setting up a new system. We are having a couple of issues which involve us not being able to run the DHCP server off of a windows machine. Currently, we're running it off of a linux box using ISC DHCP Server V3.1.1.
The machine is only doing DHCP for the network with the phones (which is completely separate from our data network at this time).
I've found some searches to be useful, but they are mostly in regards to the option 156. We have mostely 230's, but we have a 115, and a couple of other phones.. so we use the 156 and 155 options. The problem that I'm having is getting the time-server and ntp-server to work.
Reviewing the phone's config, it picks up the ip address in the SNTP Server, but it never sets the time. You may see in the config below, where I've tried using shoretel-options which works on the 155/156 settings, but I don't seem to get much from the time-server, ntp-server, and router settings.
For reference, 10.20.50.1 is the windows shortel box, 10.20.50.15 is the linux box. Any help or guidelines on this would be greatly appreciated.
We are setting up a new system. We are having a couple of issues which involve us not being able to run the DHCP server off of a windows machine. Currently, we're running it off of a linux box using ISC DHCP Server V3.1.1.
The machine is only doing DHCP for the network with the phones (which is completely separate from our data network at this time).
I've found some searches to be useful, but they are mostly in regards to the option 156. We have mostely 230's, but we have a 115, and a couple of other phones.. so we use the 156 and 155 options. The problem that I'm having is getting the time-server and ntp-server to work.
Reviewing the phone's config, it picks up the ip address in the SNTP Server, but it never sets the time. You may see in the config below, where I've tried using shoretel-options which works on the 155/156 settings, but I don't seem to get much from the time-server, ntp-server, and router settings.
For reference, 10.20.50.1 is the windows shortel box, 10.20.50.15 is the linux box. Any help or guidelines on this would be greatly appreciated.
Code:
default-lease-time 43200; max-lease-time 86400; ddns-update-style none; log-facility local7; option routers 10.20.50.1; option ntp-servers 10.20.50.1; option time-servers 10.20.50.1; #option shoretel-server code 003 = string; #option shoretel-server "routers=10.20.50.1"; #option shoretel-server code 004 = string; #option shoretel-server "time-servers=10.20.50.1"; #option shoretel-server code 006 = string; #option shoretel-server "dns-servers=10.20.50.1"; #option shoretel-server code 042 = string; #option shoretel-server "ntp-servers=10.20.50.15"; option shoretel-server code 155 = string; option shoretel-server "ftpservers=10.20.50.1, country=1, language=1, layer2tagging=0, vlanid=0"; option shoretel-server code 156 = string; option shoretel-server "ftpservers=10.20.50.1, country=1, language=1, layer2tagging=0, vlanid=0"; subnet 10.20.50.0 netmask 255.255.255.0 { range 10.20.50.30 10.20.50.255; }
Comment