https://www.linuxprobe.com/linux-ip-example.html
https://www.lxlinux.net/4479.html
https://blog.csdn.net/sinat_32582203/article/details/103921166
https://blog.csdn.net/qq_35995514/article/details/139486688
目录
参数
-s:查看详细信息
常用命令
ip link(路由操作)
https://blog.csdn.net/luotuo28/article/details/125000308
shell ip link 显示的虚拟网卡名称@网桥表示这是一个通过网桥技术创建的虚拟网络接口。
-
ip -s link (接口流量统计)
https://dusays.com/381/ -
移动网络接口至lxc容器进程的命名空间
#!/bin/sh
# 设置网络接口名称和容器PID
IFACE="eth0"
CONTAINER_PID=<container_pid>
# 移动网络接口到容器的网络命名空间
echo "${CONTAINER_PID}" > /proc/${CONTAINER_PID}/ns/net
ip link set "${IFACE}" netns "${CONTAINER_PID}"
ip route
-
查看网关
netstat -er
-
设置默认网关
ip route add default via <gateway-ip> dev <interface-name>
# 例如,如果你的网关IP是192.168.1.1,接口名称是eth0
ip route add default via 192.168.1.1 dev eth0
0 条评论