ifconfig

更新时间:
2024-01-09
下载文档

ifconfig

显示或配置网络配置信息。

格式

ifconfig [<ifname> {inet | netmask | gateway} <address>]

说明

[root@sylixos:/root]# help ifconfig       
show or set net interface parameter.
if there are no arguments, it will show all interface parameter
ifconfig -u (show all interface with 'IFF_UP' state)
ifconfig -r (show all interface with 'IFF_UP' & 'IFF_RUNNING' state)
set interface like following:
ifconfig en1 inet    192.168.0.3
ifconfig en1 netmask 255.255.255.0
ifconfig en1 gateway 192.168.0.1
ifconfig en1 dns 0   192.168.0.2
ifconfig dns 0       192.168.0.2
ifconfig [ifname] [{inet | netmask | gateway}] [address]
[root@sylixos:/root]# 

此命令有 6 种用法:

  • 无参数:表示显示所有的网络配置的信息。
  • 参数 ifname :显示指定的网口的配置信息。
  • inet 用于配置 IP 地址。
  • netmask 用于配置子网掩码。
  • gateway 配置默认网关。
  • dns 0 用于配置首选 DNS 服务器,dns 1 用于配置备用的 DNS 服务器。

样例

[root@sylixos:/root]# ifconfig en1 inet 10.4.0.92
[root@sylixos:/root]# ifconfig en1 netmask 255.255.0.0
[root@sylixos:/root]# ifconfig en1 gateway 10.4.0.1 
[root@sylixos:/root]# ifconfig en1                 
en1       Link encap: Ethernet HWaddr: 8c:ec:4b:44:d6:36
          Dev: rtl816x_0 Ifidx: 2 DHCP: D4 D6 Spd: 1000 Mbps
          inet addr: 10.4.0.92 netmask: 255.255.0.0
          gateway: 10.4.0.1 broadcast: 10.4.255.255
          inet6 addr: fe80::8eec:4bff:fe44:d636 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          collisions:0 txqueue:0 tcpaf:1 tcpwnd:65535
          RX ucast packets:3033 nucast packets:966360 dropped:0
          TX ucast packets:1903 nucast packets:16 dropped:0
          RX bytes:59494230 (56.7 MB)  TX bytes:117605 (114.8 KB)

[root@sylixos:/root]# 

字段说明:

字段说明字段说明
en1网络接口名称
Link encap网络类型
(Ethernet、LowPAN、LowPAN-BLE、Local Loopback、PPP Link、SLIP Link、Tunnel Link、General)
MTU网卡最大传输单元
HWaddr网卡物理地址Metric网络接口跃点数(暂不支持)
Dev网卡设备名collisionsCSMA 接口冲突计数器
Ifidx网卡设备索引号txqueue传输队列大小
DHCPDHCP 状态:D 指 disable,E 指 enable,4 和 6 分别指 IPv4 和 IPv6tcpafTCP ACK 延迟频率
Spd网络接口的连接速度tcpwndTCP 窗口大小
inet addrIpv4 地址RX ucast packets接收帧统计(单播)
netmaskIpv4 子网掩码nucast packets接收帧统计(多播、广播)
gatewayIpv4 网关地址dropped丢包数量
broadcast子网广播地址TX ucast packets发送帧统计(单播)
inet6 addrIPv6 地址TX ucast packets发送帧统计(多播、广播)
ScopeIPv6 地址域(Global,Link,Site,Unique,Loopback,Unknown)RX bytes接收字节数统计
UP BROADCAST RUNNING MULTICAST当前网卡状态及属性(运行,广播,连接,组播)TX bytes发送字节数统计
文档内容是否对您有所帮助?
有帮助
没帮助