在 CentOS 系统中,您可以使用 route
命令来添加和删除路由
route -n
这将显示类似于以下内容的输出:
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.1.1 0.0.0.0 UG 100 0 0 eth0
192.168.1.0 0.0.0.0 255.255.255.0 U 100 0 0 eth0
确定要删除的路由。例如,如果您要删除目标为 192.168.1.0
的路由,请记下其目标地址、子网掩码和下一跳网关(在本例中为 192.168.1.1
)。
使用 route del
命令删除路由。将 <destination>
、<subnet_mask>
和 <gateway>
替换为您在上一步中找到的值:
route del <destination> netmask <subnet_mask> gateway <gateway>
例如:
route del 192.168.1.0 netmask 255.255.255.0 gateway 192.168.1.1
route -n
命令,检查输出中是否不再包含您刚刚删除的路由。请注意,这些命令适用于基于 IPv4 的系统。如果您的 CentOS 系统同时支持 IPv4 和 IPv6,您可能需要使用 ip
命令代替 route
命令。