adding a dhcp option

Post Reply
User avatar
stunshot
Member
Posts: 46
Joined: 18 Mar 2010 06:08
Location: UK

adding a dhcp option

Post by stunshot »

HI all, can anyone advise to how I add a dhcp option to the dhcpd.conf file ?

I want to add option 138 to point to OV server for Stellar, IE

option 138 > x.x.x.x
silvio
Alcatel Unleashed Certified Guru
Alcatel Unleashed Certified Guru
Posts: 1886
Joined: 01 Jul 2008 10:51
Location: Germany

Re: adding a dhcp option

Post by silvio »

here is a working dhcpd.conf.

Code: Select all

server-identifier dhcp.local;
 
subnet 192.168.20.0 netmask 255.255.255.0
{
        dynamic-dhcp range 192.168.20.50 192.168.20.99
        {
                option subnet-mask 255.255.255.0;
                option routers 192.168.20.1;
                option domain-name-servers 192.168.100.108;
                option dhcp-lease-time 30000;
                option 60 HAP.;
                option 138 192.168.20.100;
              }
}
regards
Silvio
User avatar
stunshot
Member
Posts: 46
Joined: 18 Mar 2010 06:08
Location: UK

Re: adding a dhcp option

Post by stunshot »

Cheers Silvio, all working as expected..
Post Reply

Return to “OmniSwitch 6450”