Re: Not able to ping two ethernet interfaces connected using cross cable in same PC.

2008-11-26 Thread Vimal
2008/11/25 Bhavesh Kamani [EMAIL PROTECTED]: #ifconfig eth0 192.168.0.1 netmask 255.255.255.0 #ifconfig eth1 192.168.0.5 netmask 255.255.255.0 As Dinesh pointed out, netmask should be 255.255.255.254 #route add -net 192.168.0.5 netmask 255.255.255.0 gw 192.168.0.5 dev eth0 but those

Re: Not able to ping two ethernet interfaces connected using cross cable in same PC.

2008-11-25 Thread Anuz Pratap Singh Tomar
I guess after -net option you should specify network address something like -net 192.168.0.0 and if you want to further divide this network something like 192.168.0.x and 192.168.0.y, you need to change the netmask 255.255.255.x, depending upon how you divide your network. By the way, when both

Re: Not able to ping two ethernet interfaces connected using cross cable in same PC.

2008-11-25 Thread dinesh bansal
On Tue, Nov 25, 2008 at 3:19 PM, Bhavesh Kamani [EMAIL PROTECTED]wrote: Hi Team, I want to test ethernet driver for NIC, I have only one PC with two different NICs(for both drivers are different), So I disabled loopback and connected both the NICs using cross cable. Output of ifconfig is

RE: Not able to ping two ethernet interfaces connected using cross cable in same PC.

2008-11-25 Thread Madhukar.Mythri
On Tue, Nov 25, 2008 at 3:19 PM, Bhavesh Kamani [EMAIL PROTECTED] wrote: Hi Team, I want to test ethernet driver for NIC, I have only one PC with two different NICs(for both drivers are different), So I disabled loopback and connected both the NICs using cross cable.