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
Hi,
My machine has two IPs, one on loopback interface and another on an ethernet interface.
I hope client can use loopback address as tftp server address.
My IP is:
lo: 192.0.2.255/32
xgbe0: 192.0.2.1/31
tftpd is listened on 0.0.0.0 using s.ListenAndServe(":69")
If client request 192.0.2.255, server will got following err
Hi,
My machine has two IPs, one on loopback interface and another on an ethernet interface.
I hope client can use loopback address as tftp server address.
My IP is:
tftpd is listened on 0.0.0.0 using
s.ListenAndServe(":69")
If client request 192.0.2.255, server will got following err
Please notes source of response packet use
xgbe0
's IP as source.If client request 192.0.2.1, it's ok.
If listened on loopback, using
s.ListenAndServe("192.0.2.255:69")
, and client request 192.0.2.255. It still usexgbe0
's ip to response.The text was updated successfully, but these errors were encountered: