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
In #3289 we've made it possible to enable DHCP server on FreeBSD. However, "Check for DHCP server" button still fails with an error:
receiving packet: invalid argument
A cursory investigation revealed that the error occurs in the tryConn4 function. The error itself is returned from ReadFrom method of the net.PacketConn which has the type of *nclient4.BroadcastRawUDPConn, so, here are some possible reasons to inspect:
nclient4.NewRawUDPConn configures the connection for FreeBSD sockets incorrectly;
nclient4.BroadcastRawUDPConn's ReadFrom implementation is not valid for FreeBSD.
The text was updated successfully, but these errors were encountered:
In #3289 we've made it possible to enable DHCP server on FreeBSD. However, "Check for DHCP server" button still fails with an error:
A cursory investigation revealed that the error occurs in the
tryConn4
function. The error itself is returned fromReadFrom
method of thenet.PacketConn
which has the type of*nclient4.BroadcastRawUDPConn
, so, here are some possible reasons to inspect:nclient4.NewRawUDPConn
configures the connection for FreeBSD sockets incorrectly;nclient4.BroadcastRawUDPConn
'sReadFrom
implementation is not valid for FreeBSD.The text was updated successfully, but these errors were encountered: