Estoy “intentando” montarme mi propio servidor. He instalado Ubuntu Hoary, en la opción “server” y hasta aquí todo correcto. ¿Cuál es el problema? Pues que no consigo que funcione la red. He probado y buscado pero no doy con la solución. El servidor se conecta a un router (al igual que otro equipo), por el interfaz eth0.
Si hago ping al propio equipo, todo es correcto, pero si lo hago al router, al otro pc obtengo el error “Destination Host Unreachable”. Si hago ping a una url simplemente no responde.
A continuación os pongo el contenido de los siguientes ficheros y comandos:
# ifconfig
eth0 Link encap:Ethernet HWaddr 00:08:A1:28:4D:7B
inet addr:192.168.1.35 Bcast:192.168.1.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:13 errors:0 dropped:0 overruns:0 frame:0
TX packets:36 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:1035 (1.0 KiB) TX bytes:1512 (1.4 KiB)
Interrupt:11 Base address:0x6000
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:12 errors:0 dropped:0 overruns:0 frame:0
TX packets:12 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:1116 (1.0 KiB) TX bytes:1116 (1.0 KiB)
------------------------------------------
/etc/network/interfaces
auto lo
iface lo inet loopback
mapping hotplug
script grep
map eth0
# The primary network interface
iface eth0 inet static
address 192.168.1.35
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 80.58.61.250 80.58.61.254
------------------------------------------
# route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
localnet * 255.255.255.0 U 0 0 0 eth0
default 192.168.1.1 0.0.0.0 UG 0 0 0 eth0
------------------------------------------
/etc/hosts
127.0.0.1 localhost.localdomain localhost
192.168.1.35 nserver
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
------------------------------------------
# ping 192.168.1.1
PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data.
From 192.168.1.35 icmp_seq=2 Destination Host Unreachable
From 192.168.1.35 icmp_seq=3 Destination Host Unreachable
From 192.168.1.35 icmp_seq=4 Destination Host Unreachable
--- 192.168.1.1 ping statistics ---
5 packets transmitted, 0 received, +3 errors, 100% packet loss, time 4000ms
, pipe 3
------------------------------------------
# ping 192.168.1.35
PING 192.168.1.35 (192.168.1.35) 56(84) bytes of data.
64 bytes from 192.168.1.35: icmp_seq=1 ttl=64 time=0.278 ms
64 bytes from 192.168.1.35: icmp_seq=2 ttl=64 time=0.128 ms
64 bytes from 192.168.1.35: icmp_seq=3 ttl=64 time=0.152 ms
64 bytes from 192.168.1.35: icmp_seq=4 ttl=64 time=0.118 ms
--- 192.168.1.35 ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3000ms
rtt min/avg/max/mdev = 0.118/0.169/0.278/0.064 ms
------------------------------------------
¿Sabéis donde puede estar el fallo? Yo he probado a modificar la tabla de enrutado, pero nada. Pienso, que puede ser de algun tipo de configuración del iptables, pero de esto último no se nada.
Gracias