wifiwizard wrote:So I can ping out from the Netonix just fine. I've changed the NTP server to a new server just in case (time.google.com). Still no time on the switch. Any other ideas?
Also the switch is in DHCP mode so I cannot set DNS manually. So I guess somehow the switch isn't getting DNS so it cannot resolve the hostname? Is there a way to manually set the DNS servers?
Yes, adjust your dhcpd.conf on your DNS server.
However I cannot think of a good reason to let a switch, router, etc use a DHCP acquired address. Bad practice IMHO as it could change...
- Code: Select all
deny unknown-clients;
always-reply-rfc1048 true;
authoritative;
option routers 192.168.0.1;
option domain-name-servers 208.67.222.222, 208.67.220.220, 8.8.8.8, 8.8.4.4;
option ntp-servers 192.168.0.19, 192.168.0.42;
next-server 192.168.0.19;
subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.240 192.168.0.241;
}