linux中ifconfig
时间: 2023-09-04 12:14:24 浏览: 83
Linux命令 ifconfig
4星 · 用户满意度95%
ifconfig是Linux中的网络配置命令,用于查看和配置网络接口的状态。可以使用ifconfig命令来查看网络接口的IP地址、MAC地址、网络状态等信息。常用的ifconfig命令选项有:
- ifconfig:查看所有网络接口的信息
- ifconfig eth0:查看eth0网络接口的信息
- ifconfig eth0 up:启动eth0网络接口
- ifconfig eth0 down:停止eth0网络接口
- ifconfig eth0 192.168.1.100:将eth0网络接口的IP地址设置为192.168.1.100
- ifconfig eth0 netmask 255.255.255.0:将eth0网络接口的掩码设置为255.255.255.0
- ifconfig eth0 hw ether 00:11:22:33:44:55:将eth0网络接口的MAC地址设置为00:11:22:33:44:55
阅读全文