On Wed, 06 Oct 2004 20:25:51 GMT, patrick carosso wrote:
> Hello,
>
> while tcpdump on PC_1 says:
>
> 22:08:03.078106 arp who-has 192.168.0.1 tell 192.168.0.2
> 22:08:03.078138 arp reply 192.168.0.1 is-at 0:d:87:6:64:a7
Well now you know your hardware is talking between boxes.
Humor me, on pc 2
edit this file with /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
ONBOOT=yes
BOOTPROTO=static
IPADDR=192.168.0.2
NETMASK=255.255.255.0
and in /etc/sysconfig/network
NETWORKING=yes
GATEWAY=192.168.0.1
Now, do a
service network restart
ping -c 1 -1 192.168.0.1
I assume firewalls are disabled on both boxes.
|