在管理员权限下运行cmd打开dos窗口运行命令:route ?回车,可以查看route命令
route(1) route(2)route print 查看所有路由(需要在管理员权限下运行cmd打开dos窗口运行命令)
route print (1) route print (2)route [-f] [-p] [-4|-6] command [destination] [mask netmask] [gateway] [METRIC metric] [IF interface]
例如route add命令的主要作用是添加静态路由,通常的格式是:
route add 172.16.0.0 mask 255.250.0.0 192.168.0.1 METRIC 3 IF 2
参数含义:^destination ^mask ^gateway metric^ ^interface
destination【网段地址】 mask【子网掩码】 gateway【网关地址】 metric 【路由跳数】 if【端口号】
一般情况下,不涉及本机地址,除非你要做测试。
其中:可以省略【路由跳数】参数;当通往该网关地址的路径唯一时,【端口号】参数可以省略。(因为在多端口的路由交换设备上,可能存在通往同一个IP地址的多条备份路径。)mask 是关键字,不能省略。
route add 172.16.0.0 mask 255.250.0.0 192.168.0.1 意思是:所有需要发往172.16.0.0/16地址段的IP数据包,全部由192.168.0.1路径转发。
网友评论