查看Linux下网卡连接/工作状态(up还是down)?

本文介绍了几种在Linux系统中检查网卡是否连接并处于UP状态的方法,包括使用mii-tool、networkstatus命令和服务命令,以及ifconfig命令。这些方法可以帮助远程判断服务器网卡的工作状态。
    第1种方法

    [root@localhost /]# ifconfig -a
    eth0   Link encap:Ethernet HWaddr 00:09:6B:09:08:FC
          inet addr:192.168.10.1 Bcast:192.168.10.255 Mask:255.255.255.0
          inet6 addr: fe80::209:6bff:fe09:8fc/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
          RX packets:106732953 errors:0 dropped:0 overruns:0 frame:0
          TX packets:104379788 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:100
          RX bytes:2351331877 (2.1 GiB) TX bytes:391707945 (373.5 MiB)
          Base address:0x2500 Memory:fbfe0000-fc000000
   eth1    Link encap:Ethernet HWaddr 00:09:6B:09:08:FD
          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)
          Base address:0x2540 Memory:fbfc0000-fbfe0000

 

 

[root@localhost /root]# ifconfig
eth0      Link encap:Ethernet HWaddr 00:19:DB:41:08:1B
          inet addr:211.100.10.235 Bcast:211.100.10.235 Mask:255.255.255.255
          UP BROADCAST RUNNING PROMISC MULTICAST MTU:1500 Metric:1
          RX packets:178812 errors:0 dropped:0 overruns:0 frame:0
          TX packets:153415 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:100
          RX bytes:33094019 (31.5 MiB) TX bytes:71911163 (68.5 MiB)
          Base address:0x8f00 Memory:fd6e0000-fd700000

eth1      Link encap:Ethernet HWaddr 00:19:DB:41:08:1C
          inet addr:192.168.1.115 Bcast:192.168.1.255 Mask:255.255.255.0
          UP BROADCAST MULTICAST MTU:1500 Metric:1
          RX packets:13805 errors:0 dropped:0 overruns:0 frame:0
          TX packets:11356 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:1520439 (1.4 MiB) TX bytes:5406527 (5.1 MiB)
          Base address:0x7f00 Memory:fd2e0000-fd300000

eth2      Link encap:Ethernet HWaddr 00:19:DB:41:08:1D
          inet addr:202.194.99.62 Bcast:202.194.99.62 Mask:255.255.255.255
          UP BROADCAST RUNNING PROMISC MULTICAST MTU:1500 Metric:1
          RX packets:158024 errors:0 dropped:0 overruns:0 frame:0
          TX packets:182280 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:74748049 (71.2 MiB) TX bytes:33535454 (31.9 MiB)
          Base address:0xdf00 Memory:fdee0000-fdf00000

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:99 errors:0 dropped:0 overruns:0 frame:0
          TX packets:99 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:12978 (12.6 kiB) TX bytes:12978 (12.6 kiB)

第二种方法,通过mii-tool指令

       [root@localhost root]# mii-tool
         eth0: negotiated 100baseTx-FD, link ok
        eth1: no link
       或
       [root@localhost root]# mii-tool -v
        eth0: negotiated 100baseTx-FD, link ok
         product info: vendor 00:50:43, model 2 rev 3
          basic mode:   autonegotiation enabled
          basic status: autonegotiation complete, link ok
         capabilities: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
          advertising: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD flow-control
         link partner: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
        eth1: no link
          product info: vendor 00:50:43, model 2 rev 3
          basic mode:   autonegotiation enabled
           basic status: no link
          capabilities: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
          advertising: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD flow-control
       或

      [root@localhost root]# mii-tool -w
       21:20:33 eth0: negotiated 100baseTx-FD, link ok
        21:20:33 eth1: no link

 

第三种方法

ethtool eth0

Settings for eth0:
        Link detected: yes

http://hi.baidu.com/nan5715077/blog/item/4bd02f071b5f01ca7a8947cd.html

 

FAQ:如何查看Linux下网卡是否连接(UP)?

FAQ:如何查看Linux下网卡是否连接(UP)?
来自: 杨志刚 博客 ( http://yangzhigang.cublog.cn)
 
    //如何不到服务器端,通过指令判断Linux的网卡是否已经连接到网络并为UP状态。有的人用ifconfig -a 查网卡已经配置的正确的IP地址,可是就是ping不能网络,到机房一看网线没接,^@^! 网络不通 会有好多原因,但最先查的就是网卡的网络是还已连接并UP。就像办公室的MM喊着说上不了网 ,结果“本地连接”都是“X”的一样的情况。
   本FAQ将帮助您如何不到服务器端,通过指令判断Linux的网卡是否已经连接到网络并为UP状态!
 
ASK:
   1)  通过mii-tool指令
       [root@localhost root]# mii-tool
        eth0: negotiated 100baseTx-FD, link ok
        eth1: no link
       或
       [root@localhost root]# mii-tool -v
        eth0: negotiated 100baseTx-FD, link ok
          product info: vendor 00:50:43, model 2 rev 3
          basic mode:   autonegotiation enabled
          basic status: autonegotiation complete, link ok
          capabilities: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
          advertising:  100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD flow-control
          link partner: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
        eth1: no link
          product info: vendor 00:50:43, model 2 rev 3
          basic mode:   autonegotiation enabled
          basic status: no link
          capabilities: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
          advertising:  100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD flow-control
       或
      [root@localhost root]# mii-tool -w
       21:20:33 eth0: negotiated 100baseTx-FD, link ok
       21:20:33 eth1: no link
 
      //mii-tool主要是用于配置网卡工作模式的指令,同时也可以进行查询、监控等工作!
  
   2)
     [root@localhost /]# /etc/init.d/network status
      Configured devices:
      lo eth0 eth1
       Currently active devices:
      lo eth0
     等同于
     [root@localhost root]# service --status-all
      ............
      ............
      Configured devices:
      lo eth0 eth1
      Currently active devices:
      lo eth0
      ............
      ............
   3) ifconfig -a
    [root@localhost /]# ifconfig -a
    eth0  Link encap:Ethernet  HWaddr 00:09:6B:09:08:FC 
          inet addr:192.168.10.1  Bcast:192.168.10.255  Mask:255.255.255.0
          inet6 addr: fe80::209:6bff:fe09:8fc/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:106732953 errors:0 dropped:0 overruns:0 frame:0
          TX packets:104379788 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:100
          RX bytes:2351331877 (2.1 GiB)  TX bytes:391707945 (373.5 MiB)
          Base address:0x2500 Memory:fbfe0000-fc000000
   eth1   Link encap:Ethernet  HWaddr 00:09:6B:09:08:FD 
          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)
          Base address:0x2540 Memory:fbfc0000-fbfe0000

<think> 我们正在讨论Linux系统中查看网卡状态的方法。根据引用[1]的提示,我们知道查看网卡信息在Linux中非常重要,但用户明确询问的是“查看网卡状态”,这包括网卡连接状态、速度、错误计数等。 在Linux中,常用的命令有`ifconfig`(传统工具)和`ip`(现代工具)以及`ethtool`(用于查看和设置网卡参数)。 然而,用户特别提到的是“状态”,因此我们需要重点展示网卡连接状态是否连接)、活动状态是否在传输数据)、速度等。 步骤: 1. 使用`ip link show`命令查看网卡的基本状态(包括是否UP是否启用)。该命令会显示所有网络接口的状态。 2. 使用`ethtool`命令可以查看更详细的状态,比如连接状态是否连接了网线)、速度、双工模式等。 另外,也可以使用`ifconfig`查看,但注意`ifconfig`在一些新系统中可能没有预装,推荐使用`ip`命令。 具体命令示例: - 查看所有网卡的基本状态:`ip link` - 查看特定网卡的详细状态:`ethtool <网卡名>` (例如:`ethtool eth0`) 注意:需要root权限才能运行`ethtool`(或者普通用户有sudo权限)。 因此,我们可以这样回答: 在Linux系统中查看网卡状态,可以使用以下方法: 1. 使用`ip link show`命令查看网卡的链路状态(可以看到是否UP是否处于运行状态)。 2. 使用`ethtool <interface>`命令查看指定网卡的详细状态(例如连接状态、速度、双工模式等)。 例如,查看网卡eth0的状态: ``` $ ip link show eth0 $ sudo ethtool eth0 ``` 此外,还可以使用`ifconfig <interface>`(如果安装了net-tools)来查看,但该命令输出的信息可能不如`ethtool`详细。 另外,我们还可以通过查看系统日志文件(如`/var/log/syslog`或`dmesg`)来获取网卡状态变化的信息。 生成相关问题: 1. Linux中如何启用或禁用网卡? 2. 如何使用`ethtool`修改网卡的速度和双工模式? 3. 如何查看网络接口的统计信息(如数据包传输错误)? </think> ### Linux系统中查看网卡状态的方法 在Linux系统中,查看网卡状态有以下几种常用方法(需要终端权限): #### 1. **`ip link show` 命令**(推荐) ```bash ip link show ``` - **显示信息**:网卡名称(如`eth0`、`ens33`)、MAC地址、状态(`UP`/`DOWN`)、MTU值 - **关键状态标识**: - `state UP`:网卡已启用 - `state DOWN`:网卡已禁用 #### 2. **`ethtool` 命令**(需安装) ```bash ethtool <网卡名> # 例如:ethtool eth0 ``` - **显示信息**: - 连接状态:`Link detected: yes/no` - 传输速度:`Speed: 1000Mb/s` - 双工模式:`Duplex: Full` - 错误统计:`RX/TX errors` #### 3. **`ifconfig` 命令**(传统工具) ```bash ifconfig -a ``` - **显示信息**:IP地址、数据包统计(`RX/TX packets`)、错误计数(`errors`)、状态标志(`UP`/`RUNNING`) #### 4. **系统文件查看**(实时状态) ```bash cat /sys/class/net/<网卡名>/operstate # 例如:cat /sys/class/net/eth0/operstate ``` - **输出**:`up`(活动)或 `down`(未活动) #### 示例输出解读 ```bash $ ip link show eth0 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT group default qlen 1000 link/ether 00:0c:29:8a:d7:5a brd ff:ff:ff:ff:ff:ff ``` - **`state UP`**:网卡已启用 - **`LOWER_UP`**:物理链路正常[^1] > ⚠️ 注意:部分命令需要 `root` 权限或 `sudo`。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值