ifconfig命令时早期网络管理的指令,目前Linux新的发行版本很多默认不带ifconfig命令,但可以以通过安装软件包net-tools方式进行使用.
ip命令时新型的网络管理命令,目前基本取代了ifconfig,新的Linux发行版本时一定有ip命令的。
ifconfig命令
ifconfig 查看当前所有up状态的网卡信息
ifconfig xxxx 查看xxxx网卡详细信息
ifconfig eth0 192.168.2.10 netmask 255.255.255.0 broadcast 192.168.2.255 配置网卡信息
ifconfig eth0 up 启动eth0网卡
ifconfig eth0 down #关闭eth0网卡
ifconfig eth0 hw ether AA:AA:BB:CC:dd:EE 用ifconfig修改网卡eth0MAC地址
ifconfig eth0 arp 开启网卡eth0 的arp协议
ifconfig eth0 -arp 关闭网卡eth0 的arp协议
ip命令
ip link show # 显示网络接口信息
ip link set eth0 up # 开启网卡
ip link set eth0 down # 关闭网卡
ip link set eth0 promisc on # 开启网卡的混合模式
ip link set eth0 promisc offi # 关闭网卡的混个模式
ip link set eth0 txqueuelen 1200 # 设置网卡队列长度
ip link set eth0 mtu 1400 # 设置网卡最大传输单元
ip addr show # 显示网卡IP信息文章来源:https://www.toymoban.com/news/detail-430540.html
ip addr add 192.168.0.1/24 dev eth0 # 设置eth0网卡IP地址192.168.0.1文章来源地址https://www.toymoban.com/news/detail-430540.html
到了这里,关于linux下命令行配置网络——ifconfig和ip的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!