linux 查看网卡 是否支持 网络唤醒

180it 2024-11-14 PM 263℃ 0条

linux 查看网卡 是否支持 网络唤醒

要查看 Linux 系统上的网卡是否支持网络唤醒 (Wake-on-LAN, WoL),可以使用 ethtool 工具。以下是具体步骤:

安装 ethtool

如果你的系统上没有安装 ethtool,可以使用以下命令进行安装:

sudo apt-get install ethtool  # 对于基于 Debian 的系统,例如 Ubuntu
sudo yum install ethtool      # 对于基于 Red Hat 的系统,例如 CentOS

查看网卡是否支持网络唤醒

使用 ethtool 命令查看网卡的详细信息,包括是否支持网络唤醒:

sudo ethtool eth0

eth0 替换为你的实际网卡名称。你可以使用 ip addr showifconfig 命令来查看你的网卡名称。

示例输出

以下是 ethtool eth0 命令的示例输出:

$ sudo ethtool eth0
Settings for eth0:
    Supported ports: [ TP MII ]
    Supported link modes:   10baseT/Half 10baseT/Full
                            100baseT/Half 100baseT/Full
                            1000baseT/Full
    Supported pause frame use: No
    Supports auto-negotiation: Yes
    Advertised link modes:  10baseT/Half 10baseT/Full
                            100baseT/Half 100baseT/Full
                            1000baseT/Full
    Advertised pause frame use: No
    Advertised auto-negotiation: Yes
    Link partner advertised link modes:  10baseT/Half 10baseT/Full
                                         100baseT/Half 100baseT/Full
                                         1000baseT/Full
    Link partner advertised pause frame use: No
    Link partner advertised auto-negotiation: Yes
    Speed: 1000Mb/s
    Duplex: Full
    Port: Twisted Pair
    PHYAD: 1
    Transceiver: internal
    Auto-negotiation: on
    MDI-X: Unknown
    Supports Wake-on: pumbg
    Wake-on: g
    Current message level: 0x00000007 (7)
                           drv probe link
    Link detected: yes

解释

  • Supports Wake-on:这一行显示网卡支持的网络唤醒模式。常见的模式包括:

    • p:PHY activity
    • u:Unicast packets
    • m:Multicast packets
    • b:Broadcast packets
    • a:ARP requests
    • g:MagicPacket™
    • s:SecureOn™ password
  • Wake-on:这一行显示当前启用的网络唤醒模式。如果显示 g,表示启用了 MagicPacket™ 模式。

启用网络唤醒

如果网卡支持网络唤醒,但未启用,可以使用以下命令启用:

sudo ethtool -s eth0 wol g

这将启用 MagicPacket™ 模式的网络唤醒。

持久化设置

为了在系统重启后保持网络唤醒设置,可以将 ethtool 命令添加到网络接口的配置文件中。例如,对于基于 Debian 的系统,可以编辑 /etc/network/interfaces 文件:

sudo nano /etc/network/interfaces

在对应的接口配置中添加 post-up 命令:

auto eth0
iface eth0 inet dhcp
    post-up /sbin/ethtool -s eth0 wol g

保存并关闭文件。

通过这些步骤,你可以查看和配置 Linux 系统上网卡的网络唤醒功能。

找到具有 1 个许可证类型的类似代码

支付宝打赏支付宝打赏 微信打赏微信打赏

如果文章或资源对您有帮助,欢迎打赏作者。一路走来,感谢有您!

标签: none

linux 查看网卡 是否支持 网络唤醒