thats because it was confusing itself about the locally connected network 192.168.2.0/24 and was probably sending the data out on eth0, when the network was actually physically connected to eth1
ifconfig eth0 down - to bring an interface down for future reference
ip ad del 192.168.2.2/24 dev eth0 - to temporarily remove an ip address from an interface, where the ip address is 192.168.2.2 and the interface is eth0
ifconfig eth0 down - to bring an interface down for future reference
ip ad del 192.168.2.2/24 dev eth0 - to temporarily remove an ip address from an interface, where the ip address is 192.168.2.2 and the interface is eth0
Last edited: