其他分享
首页 > 其他分享> > ifconfig

ifconfig

作者:互联网

Linux ifconfig命令用于显示或设置网络设备。

ifconfig可设置网络设备的状态,或是显示目前的设置。

参数说明

实例:启动关闭网卡

 ifconfig eth0 down
 ifconfig eth0 up

为网卡配置和删除IPv6地址
# ifconfig eth0 add 33ffe:3240:800:1005::2/ 64 //为网卡设置IPv6地址
# ifconfig eth0 del 33ffe:3240:800:1005::2/ 64 //为网卡删除IPv6地址

配置IP 地址
//给eth0网卡配置IP地址
# ifconfig eth0 192.168.1.56 
// 给eth0网卡配置IP地址,并加上子掩码
 # ifconfig eth0 192.168.1.56 netmask 255.255.255.0  
// 给eth0网卡配置IP地址,加上子掩码,加上个广播地址
 # ifconfig eth0 192.168.1.56 netmask 255.255.255.0 broadcast 192.168.1.255

启用和关闭ARP协议
# ifconfig eth0 arp  //开启
# ifconfig eth0 -arp  //关闭
设置最大传输单元
# ifconfig eth0 mtu 1500 //设置能通过的最大数据包大小为 1500 bytes
 
 
 

 

标签:ifconfig,网卡,设置,IP地址,网络设备,eth0
来源: https://www.cnblogs.com/lixiangshuailinux/p/15959460.html