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 line 103/104 it says:
/* Verify protocol address is mine */
if (netaddrequal(&netptr->ip, &dpa))
Problem here:
if i netup the etherloop as 127.0.0.1 with a broadcast of 255.0.0.0 and ping 127.0.0.2, the check fails (127.0.0.1 != 127.0.0.2) and then the system hangs/Timeouts. Shouldnt the check there be over the whole network? (255.0.0.0) ?
Cheers
C.
The text was updated successfully, but these errors were encountered:
Hi,
there seems to be a problem in the network stack in the arp part. To be exactly in this part:
https://github.com/xinu-os/xinu/blob/master/network/arp/arpRecv.c
In line 103/104 it says:
/* Verify protocol address is mine */
if (netaddrequal(&netptr->ip, &dpa))
Problem here:
if i netup the etherloop as 127.0.0.1 with a broadcast of 255.0.0.0 and ping 127.0.0.2, the check fails (127.0.0.1 != 127.0.0.2) and then the system hangs/Timeouts. Shouldnt the check there be over the whole network? (255.0.0.0) ?
Cheers
C.
The text was updated successfully, but these errors were encountered: