没有 eth* 接口

没有 eth* 接口

我没有 eth0 接口(或 eth1)。

ifconfig -a
lo        Link encap:Local Loopback  
      inet addr:127.0.0.1  Mask:255.0.0.0
      inet6 addr: ::1/128 Scope:Host
      UP LOOPBACK RUNNING  MTU:16436  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:0 
      RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

tunl0     Link encap:UNSPEC  HWaddr 00-00-00-00-31-00-00-00-00-00-00-00-00-00-00-00  
      NOARP  MTU:1480  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:0 
      RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

我的/etc/network/interfaces

# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)

# The loopback interface
auto lo
iface lo inet loopback

# Wireless interfaces
iface wlan0 inet dhcp
    wireless_mode managed
    wireless_essid any
    wpa-driver wext
    wpa-conf /etc/wpa_supplicant.conf

iface atml0 inet dhcp

# Wired or wireless interfaces
auto eth0
iface eth0 inet dhcp
iface eth1 inet dhcp

# Ethernet/RNDIS gadget (g_ether)
#... or on host side, usbnet and random hwaddr
iface usb0 inet static
    address 192.168.7.2
    netmask 255.255.255.0
    network 192.168.7.0
    gateway 192.168.7.1

Bluetooth networking
iface bnep0 inet dhcp

当我尝试ifup eth0(eth1 同上):

ifconfig: SIOCGIFFLAGS: no shuch device 

我唯一的 udev 规则是在 中/etc/udev/rules.d/local.rules,而我对 eth* 一无所知。由于我不知道 MAC 地址,所以我无法添加它。

答案1

问题最有可能是(在虚拟机的情况下)您没有指定网络接口,或者(更有可能 - 在物理机的情况下)Linux 不知道您的网卡,即它没有网卡,或者驱动程序未加载。

调试问题的适当信息是“dmesg”和“lspci -v”的输出,它将告诉机器正在看到什么 - 但最重要的是你需要确保你的卡有一个 Linux 驱动程序并且正在加载 - 这将(取决于你的发行版)导致“eth0”接口在 dmesg 和 ifconfig 等中可见。

由于您似乎没有相关的设备,lspci -v 可能有助于追踪该设备的实际内容。

相关内容