1830044 Members
9444 Online
109998 Solutions
New Discussion

Re: DHCP WIDE and ISC

 
Jeroen Peereboom
Honored Contributor

DHCP WIDE and ISC

L.S.

WIDE DHCP has a thing called CLID. The client does not send a mac address but another identifier (clid="98:.....".
In the (WIDE DHCP) config file:
1000: :ipad=10.205.100.47:hstn="abc-1":tblc=subnet1:clid="98:0x0000029C":file="Delft-1.scr":

Can I do this with an ISC DHCPD server?
Can I specify this custom ID as identifier i.s.o. mac address?
Any suggestions?

JP
2 REPLIES 2
Ivan Ferreira
Honored Contributor

Re: DHCP WIDE and ISC

A custom id I don't know, maybe you should join to the mailing list of ISC DHCPD server. This is a hard one question.

You can specify the mac address, sorry, i don't know what is i.s.o. so I don't know if you already know this, but the configuration should be like this:

host hostname {
option host-name "hostname.example.com";
hardware ethernet 00:A0:78:8E:9E:AA;
fixed-address 192.168.1.4;
}
Por que hacerlo dificil si es posible hacerlo facil? - Why do it the hard way, when you can do it the easy way?
Jeroen Peereboom
Honored Contributor

Re: DHCP WIDE and ISC

Ivan,
i.s.o = in stead of
I already searched the internet, but could not find an answer.
I also searched teh ISC mailing list archive.

JP.