网络命令-route

route

route print 打印路由表

===========================================================================
Interface List
0x1 ........................... MS TCP Loopback interface
0x2 ...00 01 6c ae fd 64 ...... Broadcom NetLink (TM) Gigabit Ethernet - 数据包
计划程序微型端口
===========================================================================
===========================================================================
Active Routes:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 10.192.77.1 10.192.77.25 20
10.192.77.0 255.255.255.0 10.192.77.25 10.192.77.25 20
10.192.77.25 255.255.255.255 127.0.0.1 127.0.0.1 20
10.255.255.255 255.255.255.255 10.192.77.25 10.192.77.25 20
127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 1
224.0.0.0 240.0.0.0 10.192.77.25 10.192.77.25 20
255.255.255.255 255.255.255.255 10.192.77.25 10.192.77.25 1
Default Gateway: 10.192.77.1
===========================================================================

意思如下:
本机host,到达destination/netmask,
要通过interface,并使用gateway.

destination/netmask共同决定目标是一个net,还是一个host,还是一个物理接口

getway是指到达目标要经过的路由

interface是指本机物理接口,对应上面的
Interface List
0x1 ........................... MS TCP Loopback interface
0x2 ...00 01 6c ae fd 64 ...... Broadcom NetLink (TM) Gigabit Ethernet - 数据包
是接通过本机的哪个接口发出去
如:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 10.192.77.1 10.192.77.25 20

比如0.0.0.0/0.0.0.0 就是表示除本地网络外的所有网络,常见的情况下就是internet
要到达这个网络,就要经过本机接口10.192.77.25,并通过路由10.192.77.1发出去
这儿指出internate网关是10.192.77.1

Network Destination Netmask Gateway Interface Metric
10.192.77.0 255.255.255.0 10.192.77.25 10.192.77.25 20

10.192.77.0/255.255.255.0是指本网
要到达本网不用通过internet网关,直接从10.192.77.25发包给其他邻居(同一网络的host)就可以了。
所以Gateway为10.192.77.25

10.192.77.25 255.255.255.255 127.0.0.1 127.0.0.1 20
127.0.0.0表示loopback网络,一般用来做测试,或者是供一些使用网络程序使用.
要到达本机,只要通过本机回环地址就可以了。

route ADD 157.0.0.0 MASK 255.0.0.0 157.55.80.1 METRIC 3

添加一个路由
指本机要到达157.0.0.0/255.0.0.0 就要通过157.55.80.1这个路由
这儿没指定接口,系统会自动寻找一个最合适的接口使用。当然也可以指定接口,如下:
route ADD 157.0.0.0 MASK 255.0.0.0 157.55.80.1 METRIC 3 IF 2

例子:
route add 10.192.77.2 mask 255.255.255.255 10.192.77.25 metric 3
后,用rount print查看时,有下面一条路由列表:

Network Destination Netmask Gateway Interface Metric
10.192.77.2 255.255.255.255 10.192.77.25 10.192.77.25 3

route DELETE 157.0.0.0
删除一个路由

你可能感兴趣的:(.net)