You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The DHCP crashes when a DCHP-request is sent with options in the 224-254 range.
According to iana, this space is reserved for private use. Microsoft happens to use this range (249 for classless static route), which makes the DHCP-server incompatible with my OS, Windows 10.
I have fixed this by editing line 206 in dhcp.js: this.emit('error', 'Unknown option ' + req);
The DHCP crashes when a DCHP-request is sent with options in the 224-254 range.
According to iana, this space is reserved for private use. Microsoft happens to use this range (249 for classless static route), which makes the DHCP-server incompatible with my OS, Windows 10.
I have fixed this by editing line 206 in dhcp.js:
this.emit('error', 'Unknown option ' + req);
becomes
I don't know if this is the correct/best solution, but it works for me.
The text was updated successfully, but these errors were encountered: