[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: compaq armada con targeta pcmcia y debian



> ****Salida de /etc/network/interfaces*******
> auto lo eth0
> 
> iface lo inet loopback
> #name Interfaz de bucle local
> 
> iface eth0 inet dhcp
		  ^^^^
Esta línea indica que vas a obtener la IP de un servidor dhcp

> 
> *******Salida ifconfig -a****
> eth0      Link encap:Ethernet  HWaddr 00:E0:98:AA:BB:D6
>           UP BROADCAST RUNNING MULTICAST  MTU:1500 
>  Metric:1 RX packets:5373 errors:0 dropped:0 overruns:0
>  frame:0
>           TX packets:0 errors:0 dropped:0 overruns:0
> carrier:0
>           collisions:0 txqueuelen:100
>           RX bytes:323616 (316.0 KiB)  TX bytes:0 (0.0 b)
>           Interrupt:11 Base address:0x4400
> 
> lo        Link encap:Local Loopback
>           inet addr:127.0.0.1  Mask:255.0.0.0
	    ^^^^^^^^^^^^^^^^^^^
...por otro lado, esta línea indica que no has configurado correctamente
el interfaz de red, ya que tiene la IP del loopback (lo siento, no sé
cómo traducir esto). Yo diría que el dhcp no está bien configurado. ¿has
probado a poner una IP a pelo y hacer un ping al eth0?

ifconfig eth0 192.168.1.1 up 
ping 192.168.1.1

Si no te funciona, pues no sé qué puede ser, dime qué errores te dá. Si
esto te funciona, entonces tu problema es que la tarjeta no está bien
configurada, no en los drivers. Si obtienes la IP de un cliente DHCP,
revisa la configuración. Si no obtienes la dirección de un cliente dhcp,
mira el fichero /etc/network/interface y cambialo por esto

-------------empieza aquí-----------
auto lo
iface lo inet loopback
                                                                                
# This entry was created during the Debian installation
# (network, broadcast and gateway are optional)
auto eth0
iface eth0 inet static
        address 192.168.1.1
        netmask 255.255.255.0
        network 192.168.1.0
        broadcast 192.168.1.255
        gateway  XXXXXXXXXXXX
-------------termina aquí-----------
Los parámetros gateway, address y network se los tendrás que preguntar
al administrador de red.

haz un /etc/init.d/network restart y debería funcionar

Espero haber ayudado.



Reply to: