unknown dhcp option 0x7d

Status
Not open for further replies.
B

badbrain

Guest
VirtualBox bridged interface. The adapter is my usb dongle wlan0. Host is MX Linux. Previous time I didn't notice it on dmesg since the system boot up very fast. This time due to the error "Unqualified hostname" FreeBSD refused to boot so I could see it. What is it? Does it have any effect on the system?
 
Does anyone know what "unknown dhcp option 0x7d" means? I believed dhclient generate this warning.
 
Your upstream DHCP server is sending a DHCP option that your DHCP client does not understand or support.
If you use net/dhcpdump you can see all the options that the DHCP server is trying to negotiate with the client.
Here is an example of dnsmasq dhcp options. They use a number for the option.
Your error message is using hex code.
Converted this is dhcp option 125. I used this >> https://www.rapidtables.com/convert/number/hex-to-decimal.html?x=0x7d
So you DHCP server is trying to negotiate option 125 with the FreeBSD client and the client does not understand option 125.
If everything is working fine you can probably ignore this.
Windows DHCP servers use options not present on Unix system clients. Same with some other DHCP servers.
They have added custom options not defined in RFC2132.
 
Checking my dnsmasq server produced this for your option:
125 vendor-id-encap
So they are trying to encapsulate the VendorID of the dhcp server into the dhcp packet header and FreeBSD says bad option.

My guess is that your host MXLinux DHCP server is using option 125, as it provides networking services to Virtualbox correct?.
 
My guess is that your host MXLinux DHCP server is using option 125, as it provides networking services to Virtualbox correct?.
I don't think so. This unknown option error only appears when I use bridged interface of VirtualBox. With NAT it didn't show up. The weired thing is only FreeBSD dhclient throws this warning, DFBSD doesn't.
 
Status
Not open for further replies.
Back
Top