iproute2 命令
Posted 啊哈咧
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iproute2 命令相关的知识,希望对你有一定的参考价值。
一、IP 地址管理
1、显示 IP 地址
ip addr show [dev eth0]
2、增加删除 IP 地址
ip addr add 192.0.2.1/24 dev eth0
ip addr del 192.0.0.1/24 dev eth0
3、显示接口统计
ip -s link [ls eth0]
二、网卡和链路配置
1、显示链路
ip link show [eth0]
2、修改接口状态
ip link set eth0 up|down
三、路由表管理
1、显示路由表
ip route [show dev eth0]
2、新增路由
ip route add 10.2.2.128/27 dev eth0
3、增加默认路由
ip route add default via 192.168.1.1
4、修改默认路由
ip route chg default via 192.168.1.2
5、删除默认路由
ip route del default
以上是关于iproute2 命令的主要内容,如果未能解决你的问题,请参考以下文章
Arch LInux | 网络管理工具iproute2(网络接口ip地址路由表)
Arch LInux | 网络管理工具iproute2(网络接口ip地址路由表)