eth0 NO-CARRIER, ifconfig não mostra endereço IP

6

Eu saí do Ubuntu e voltei depois de um tempo, então não me lembro muito. Agora estou tentando obter meu endereço IP. Tudo o que estou recebendo da execução de ifconfig é

eth0      Link encap:Ethernet  HWaddr 3c:97:0e:11:22:0d  
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
          Interrupt:20 Memory:f2500000-f2520000 

(BTW, eu realmente não entendo o que UP BROADCAST MULTICAST significa.)

 $ sudo ifdown eth0 
 ifdown: interface eth0 not configured 

Então

$ sudo ifup eth0
Ignoring unknown interface eth0=eth0

E finalmente 2:

$ ip addr show eth0
eth0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state DOWN   
group default qlen 1000 link/ether 3c:97:0e:11:22:0d brd ff:ff:ff:ff:ff:ff
    
por MasterPorky 15.07.2014 / 01:45

2 respostas

0

Tente:

ifdown eth0
ifup eth0
ip addr show eth0


**UP BROADCAST MULTICAST**

UP  device is functioning

BROADCAST   device can send traffic to all hosts on the link

MULTICAST   device can perform and receive multicast packets

Mais sobre o mulicast, visite Site

    
por nux 15.07.2014 / 03:34
0

Você pode tentar configurar seu endereço IP para algo na sua sub-rede. Supondo que você esteja em uma rede 192.168.1.255, tente isto:

ifconfig address 192.168.1.50 netmask 255.255.255.0 gateway 192.168.1.1

Substitua 192.168.1.50 pelo IP que você deseja obter e substitua 192.168.1.1 pelo endereço IP do seu roteador / gateway.

Eu tive um problema semelhante, e isso resolveu para mim.

    
por Daniel 23.09.2015 / 18:25

Tags