Fedora Core 500の技
Valid XHTML 1.0!
正当なCSSです!

TOP > Linux > Fedoraの技 > 001-100 > 063

NICの設定や状態を表示するには

NICの設定はifconfigコマンドなどでも表示できますが、system-config-network-cmdというコマンドもあります。

"-h"オプションでハードウェアの表示となります。

# system-config-network-cmd -h
HardwareList.Ethernet.eth0.Status=ok
HardwareList.Ethernet.eth0.Name=eth0
HardwareList.Ethernet.eth0.Type=Ethernet
HardwareList.Ethernet.eth0.Card.ModuleName=e100
HardwareList.Ethernet.eth0.Description=Intel Corp. 82557/8/9 [Ethernet Pro 100]

"-d"オプションでデバイスの表示となります。

# system-config-network-cmd -d
DeviceList.Ethernet.eth0.Type=Ethernet
DeviceList.Ethernet.eth0.Netmask=255.255.255.0
DeviceList.Ethernet.eth0.BootProto=static
DeviceList.Ethernet.eth0.Device=eth0
DeviceList.Ethernet.eth0.OnBoot=true
DeviceList.Ethernet.eth0.IP=192.168.0.11
DeviceList.Ethernet.eth0.DeviceId=eth0
DeviceList.Ethernet.eth0.Gateway=192.168.0.1

2005-12-03 作成