Friday, April 26, 2024
 Popular · Latest · Hot · Upcoming
7
rated 0 times [  7] [ 0]  / answers: 1 / hits: 30289  / 3 Years ago, wed, august 18, 2021, 8:27:29

Cisco phones use the proprietary option 150 to tell the phone what server to contact for configuration information.



How can I provide this option using the ISC DHCP server on Ubuntu?


More From » dhcp

 Answers
0

In order to provide option 150 (or other custom options) two configuration entries are required, first, in the top level of the configuration file located at /etc/dhcp/dhcpd.conf you need to define your custom option:



option voip-tftp-server code 150 = { ip-address };


Then, in the subnet stanza for where you need to provide the information you'll configure the option with the appropriate value.



subnet 192.168.0.0 netmask 255.255.255.0 {
[...]
option voip-tftp-server 10.101.0.10;
}


If you place the option definition in the subnet stanza then dhcpd will not work.


[#32209] Thursday, August 19, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
eeperant

Total Points: 39
Total Questions: 106
Total Answers: 117

Location: Finland
Member since Sat, Dec 5, 2020
3 Years ago
;