Re: Open BSD- DHCP with option82
Ian Darwin <[email protected]>
| Newsgroups | gmane.os.openbsd.www |
|---|---|
| Message-ID | <[email protected]> |
John LR Dovale wrote:
> I have a couple of boxes running OpenBSD 4.0 kernel and a specific gui
> interface.
>
> I need to get these boxes doing DHCP (which they do) but with support for
> option-82 tagging
>
> What needs to be done to do this?
Do you mean send option-82 to a given device or group? Just RTFM
(man 5 dhcp-options). Assuming you mean hex 82, that's decimal 130, so
host foo {
hardware ethernet 00:0a:e4:xx:xx:xx;
option option-130 "vendor-specific stuff here";
fixed-address black0;
}
There are many known options documented in the man page, of course.