阅读量:0
在Linux中,iproute
是一个用于配置、控制以及查询Linux内核中IP路由表的工具。它可以帮助你进行网络维护,包括配置网络接口、设置路由规则、查看网络状态等。以下是一些使用iproute
进行网络维护的基本命令:
配置网络接口:
- 查看当前网络接口状态:
ip addr
- 临时启用接口(在下一次启动时失效):
sudo ip link set <interface> up
- 永久启用接口(需要编辑网络配置文件):
sudo ifconfig <interface> up
或使用ip link set <interface> up
(在某些Linux发行版中) - 临时禁用接口:
sudo ip link set <interface> down
- 永久禁用接口:
sudo ifconfig <interface> down
或使用ip link set <interface> down
- 查看当前网络接口状态:
设置路由规则:
- 查看当前路由表:
ip route
- 添加静态路由(永久生效):
sudo ip route add <destination> via <gateway> dev <interface>
- 删除静态路由:
sudo ip route del <destination> via <gateway> dev <interface>
- 设置默认网关:
sudo ip route add default via <gateway> dev <interface>
- 替换路由表中的现有规则(谨慎使用):
sudo ip route replace <old_route> <new_route>
- 查看当前路由表:
查看网络状态:
- 查看TCP/UDP连接状态:
sudo netstat -tuln
或ss -tuln
- 查看网络连接的详细信息(包括进程ID和程序名称):
sudo netstat -tunlp
或ss -tunlp
- 查看路由表:
ip route
或route -n
(在某些Linux发行版中)
- 查看TCP/UDP连接状态:
其他网络维护命令:
- 清除ARP缓存:
sudo arp -a
或sudo ip neigh show
- 重新启动网络服务:根据你的Linux发行版,这可能是
sudo systemctl restart networking
或类似的命令 - 查看IP转发状态:
cat /proc/sys/net/ipv4/ip_forward
(如果已启用IP转发)
- 清除ARP缓存:
请注意,这些命令可能因Linux发行版而异。建议查阅你所使用的Linux发行版的文档以获取更准确的命令和用法信息。此外,进行网络维护时务必谨慎操作,以免意外中断网络连接或造成其他安全问题。