Vereis, quiero hacer una red entre una maquina con Debian y una con Red Hat. Lo que he hecho ha sido pinchar las tarjetas de red, configurarlas con ifconfig eth0 192.168.0.1 netmask 255.255.255.0 en un pc (el de red hat), y con ifconfig eth0 192.168.0.2 netmask 255.255.255.0 en el debian, con el hub bien connectado y todo el meollo. Pero mirad lo que me pasa en red hat :
[root@localhost /]# ping 192.168.0.2 -w 3
PING 192.168.0.2 (192.168.0.2) 56(84) bytes of data.
From 192.168.0.1 icmp_seq=1 Destination Host Unreachable
From 192.168.0.1 icmp_seq=2 Destination Host Unreachable
From 192.168.0.1 icmp_seq=3 Destination Host Unreachable
--- 192.168.0.2 ping statistics ---
3 packets transmitted, 0 received, +3 errors, 100% packet loss, time 2013ms
, pipe 3
Y en la m?quina con debian lo mismo .... ?Se os ocurre lo que pudiera ser? He desactivado el firewall y he hecho iptables -F INPUT, iptables -F OUTPUT, y nada .... estoy perdido ....
[root@localhost /]# ./sbin/iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
[root@localhost /]#
Mi ifconfig es el siguiente :
[root@localhost /]# ./sbin/ifconfig
eth0 Link encap:Ethernet HWaddr 00:30:DA:1A:CB:EF
inet addr:192.168.0.1 Bcast:192.168.0.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:8614 errors:0 dropped:0 overruns:0 frame:0
TX packets:8664 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:100
RX bytes:1337070 (1.2 Mb) TX bytes:723875 (706.9 Kb)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:39 errors:0 dropped:0 overruns:0 frame:0
TX packets:39 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:3948 (3.8 Kb) TX bytes:3948 (3.8 Kb)
ppp0 Link encap:Point-to-Point Protocol
inet addr:xxx.xxx.xxx.xxx P-t-P:xxx.xxx.xxx.xxx Mask:255.255.255.255
UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1492 Metric:1
RX packets:8448 errors:0 dropped:0 overruns:0 frame:0
TX packets:8462 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:3
RX bytes:1143395 (1.0 Mb) TX bytes:531051 (518.6 Kb)
[root@localhost /]#
?Alguna sugerencia?
??Saludos!!