其他分享
首页 > 其他分享> > network iproute2 ip

network iproute2 ip

作者:互联网

linux 的 ip 命令和 ifconfig 类似,但前者功能更强大,是加强版的的网络配置工具 。ifconfig 是 net-tools中已经被废弃使用的一个命令。ip 是 iproute2 套件中的命令之一。

net-tools vs iproute2
net-toolsiproute2
arp -na ip neigh
ifconfig ip link
ifconfig eth0 up ip link set eth0 up
iptunnel ip tunnel
netstat ss
route ip route
   
常用对象

address: 管理网络设备 ip 地址(ipv4 or ipv6)

link: 网络设备

maddress: 多播地址相关

monitor: 监测 netlink 消息

route:路由表相关

netns:管理网络空间

neighbour:arp 相关

tunnel:管理 ip 网络之上的 tunnel 隧道

常用选项

-s 输出详细信息

-4 ipv4

-6 ipv6

-h 可读的形式呈现

-o 以行的形式输出,结尾以 '\' 结束

-c 输出使用颜色

-n netns

-0 link

常用命令

ip link show # 查看网络设备

ip -s link show # 查看网络设备的详细信息

ip link set enp0s3 up # 启用网卡

ip addr add 192.168.0.50/255.255.255.0 dev enp0s3 # 为 enp0s3 设备添加 ip 及 掩码

ip addr add broadcast 192.168.0.50/255.255.255.0 dev enp0s3 # 为 eth0 设备添加广播地址

ip addr del 192.168.0.10/24 dev enp0s3 # 删除 enp0s3 网卡

ip route show # 查看网卡的路由信息

p route add default via 192.168.0.150/24 # 修改数据包的默认路由

ip route add 172.16.32.32 via 192.168.0.150/24 dev enp0s3 # 修改 enp0s3 网卡的数据包的默认路由

ip neigh show # 查看 arp 缓存

标签:network,ip,route,enp0s3,192.168,网卡,link,iproute2
来源: https://www.cnblogs.com/tongyishu/p/13843776.html