2、简述iproute家族命令
ifconfig
是用来查看、配置、启用或禁用网络接口的工具。可以用这个工具来临时配置网卡的IP地址、掩码、广播地址、网关等。
语法
ifconfig [interface]
参数
up 启动指定网络设备/网卡
down 关闭指定网络设备/网卡
-a 显示全部接口信息
-s 显示摘要信息
add 设置指定网卡配置IPv6地址
del 删除指定网卡配置IPv6地址
mtu<字节数> 设置网卡的最大传输单元(bytes)
netmask<子网掩码>设置网卡的子网掩码
multicast 为网卡设置组播标志
实例
为网卡配置和删除IPV6地址
ifconfig eth0 add 33ffe:3240:800:1005::2/64 #为网卡eth0配置IPv6地址
ifconfig eth0 del 33ffe:3240:800:1005::2/64 #为网卡eth0删除IPv6地址
用ifconfig修改MAC地址
ifconfig eth0 hw ether 00:AA:BB:CC:dd:EE
配置IP地址
[root@qingcheng-app ~]#ifconfig eth0 192.168.2.10
[root@qingcheng-app ~]#ifconfig eth0 192.168.2.10 netmask 255.255.255.0
[root@qingcheng-app ~]#ifconfig eth0 192.168.2.10 netmask 255.255.255.0 broadcast 192.168.2.255
</