Linux shell ifconfig 命令
Linux shell ifconfig 命令用于显示或设置网络设备。
ifconfig可设置网络设备的状态,或是显示目前的设置。
ifconfig 命令语法格式
ifconfig [网络设备][down up -allmulti -arp -promisc][add<地址>][del<地址>][<hw<网络设备类型><硬件地址>][io_addr<I/O地址>][irq<IRQ地址>][media<网络媒介类型>][mem_start<内存地址>][metric<数目>][mtu<字节>][netmask<子网掩码>][tunnel<地址>][-broadcast<地址>][-pointopoint<地址>][IP地址]
选项说明
- add<地址>
- 设置网络设备IPv6的IP地址。
- del<地址>
- 删除网络设备IPv6的IP地址。
- down
- 关闭指定的网络设备。
- <hw<网络设备类型> , <硬件地址>
- 设置网络设备的类型与硬件地址。
- io_addr<I/O地址>
- 设置网络设备的I/O地址。
- irq<IRQ地址>
- 设置网络设备的IRQ。
- media<网络媒介类型>
- 设置网络设备的媒介类型。
- mem_start<内存地址>
- 设置网络设备在主内存所占用的起始地址。
- metric<数目>
- 指定在计算数据包的转送次数时,所要加上的数目。
- mtu<字节>
- 设置网络设备的MTU。
- netmask<子网掩码>
- 设置网络设备的子网掩码。
- tunnel<地址>
- 建立IPv4与IPv6之间的隧道通信地址。
- up
- 启动指定的网络设备。
- -broadcast<地址>
- 将要送往指定地址的数据包当成广播数据包来处理。
- -pointopoint<地址>
- 与指定地址的网络设备建立直接连线,此模式具有保密功能。
- -promisc
- 关闭或启动指定网络设备的promiscuous模式。
- [IP地址]
- 指定网络设备的IP地址。
- [网络设备]
- 指定网络设备的名称。
范例
范例 1 : 显示网络设备信息
[root@localhost ~]# ifconfig ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 192.168.0.16 netmask 255.255.255.0 broadcast 192.168.0.255 inet6 fe80::20c:29ff:fe0c:6d90 prefixlen 64 scopeid 0x20<link> ether 00:0c:29:0c:6d:90 txqueuelen 1000 (Ethernet) RX packets 31600 bytes 22774077 (21.7 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 12433 bytes 1591734 (1.5 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10<host> loop txqueuelen 1 (Local Loopback) RX packets 54 bytes 3612 (3.5 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 54 bytes 3612 (3.5 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 [root@localhost ~]#
范例 2 : 启动指定网卡
[root@localhost ~]# ifconfig ens33 up
范例 3 : 关闭指定网卡
[root@localhost ~]# ifconfig ens33 down
范例 3 : 为网卡配置和删除IPv6地址
为网卡设置 IPv6 地址
[root@localhost ~]# ifconfig ens33 add 33ffe:3240:800:1005::2/ 64
为网卡删除 IPv6 地址
[root@localhost ~]# ifconfig ens33 del 33ffe:3240:800:1005::2/ 64
范例 3 : 用 ifconfig 修改 MAC 地址
[root@localhost ~]# ifconfig ens33 down # 关闭网卡 [root@localhost ~]# ifconfig ens33 hw ether 00:AA:BB:CC:DD:EE # 修改MAC地址 [root@localhost ~]# ifconfig ens33 up # 启动网卡 [root@localhost ~]# ifconfig ens33 hw ether 00:1D:1C:1D:1E # 关闭网卡并修改MAC地址 [root@localhost ~]# ifconfig ens33 up #启动网卡
范例 3 : 配置IP地址
给eth0网卡配置IP地址
[root@localhost ~]# ifconfig ens33 192.168.0.56
给eth0网卡配置IP地址,并加上子掩码
[root@localhost ~]# ifconfig ens33 192.168.0.56 netmask 255.255.255.0
给eth0网卡配置IP地址,加上子掩码,加上个广播地址
[root@localhost ~]# ifconfig ens33 192.168.0.56 netmask 255.255.255.0 broadcast 192.168.0.255
范例 3 : 启用和关闭ARP协议
开启
[root@localhost ~]# ifconfig ens33 arp
关闭
[root@localhost ~]# ifconfig ens33 -arp
范例 3 : 设置最大传输单元
设置能通过的最大数据包大小为 1500 bytes
[root@localhost ~]# ifconfig ens33 mtu 1500