# route add [-net|-host] 目标主机或网络 [netmask] [gw|dev]
# route del [-net|-host] 目标主机或网络 [netmask] [gw|dev]
-n :数字地址形式代替解释主机名形式来显示地址。此项对检测为何你到域名服务器的路由发生故障的原因非常有用。
-ee :将产生包括选路表所有参数在内的大量信息
add :添加一条路由
del :删除一条路由
-net :路由目标 target 为网络。
-host :路由目标 target 为主机。
netmask :为添加的路由指定网络掩码!
gw :通过一个网关进行包路由.
[root@localhost /]# route -ee
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface MSS Window irtt
192.168.1.0 * 255.255.255.0 U 0 0 0 eth0 0 0 0
169.254.0.0 * 255.255.0.0 U 0 0 0 eth0 0 0 0
127.0.0.0 * 255.0.0.0 U 0 0 0 lo 0 0 0
default 192.168.1.1 0.0.0.0 UG 0 0 0 eth0 0 0 0
route add -net 127.0.0.0
加一条普通的回环记录,它使用掩码 255.0.0.0 (从目标地址可以判断它是 A 类网)并与设备 "lo" 相关联 .
route add -net 192.168.1.0 netmask 255.255.255.0 dev eth0
给通过 "eth0" 的路由表添加一条指向网络 192.56.76.x 的路由。其中 C 类子网掩码修饰词并不是必须的,因为 192.* 是个 C 类的 IP 地址。这里可省略关键字 "dev"。
route add default gw 192.168.1.1
加入一条缺省路由(如果无法匹配其它路由则用它)。使用此路由的所有包都将通过网关 192.168.1.1进行传输。
route add 224.0.0.0 netmask 240.0.0.0 dev eth0
这是一条模糊的命令,把它记录在案就可以让人们知道如何做了.此命令设定所有 D 类地址(用于组播)的路由通过 "eth0" 进行。这是用于带组播的内核正确的配置行。
traceroute [参数选项] hostname,域名或 IP地址
参数选项:
-i 指定网络接口,对于多个网络接口有用。比如 -i eth1 或-i ppp1等;
-m 把在外发探测试包中所用的最大生存期设置为max-ttl次转发,默认值为30次;
-n 显示IP地址,不查主机名。当DNS不起作用时常用到这个参数;
-p port 探测包使用的基本UDP端口设置为port ,默认值是33434
-q n 在每次设置生存期时,把探测包的个数设置为值n,默认时为3;
-r 绕过正常的路由表,直接发送到网络相连的主机;
-w n 把对外发探测包的等待响应时间设置为n秒,默认值为3秒;
[root@localhost /]# traceroute [url]www.sohu.com[/url]
traceroute: Warning: [url]www.sohu.com[/url] has multiple addresses; using 221.236.12.213
traceroute to cachechengdu2.a.sohu.com (221.236.12.213), 30 hops max, 38 byte packets
1 192.168.1.1 (192.168.1.1) 2.866 ms 1.151 ms 1.614 ms
2 219.144.172.1 (219.144.172.1) 8.660 ms 14.319 ms 9.305 ms
3 222.90.205.53 (222.90.205.53) 10.858 ms 9.283 ms 9.101 ms
4 125.76.189.81 (125.76.189.81) 10.005 ms 11.752 ms 11.039 ms
5 pos-5-1-r1-1-xahj.sn.169.net (61.134.0.5) 9.478 ms 19.670 ms 13.776 ms
6 202.97.37.177 (202.97.37.177) 9.645 ms 9.740 ms *
7 222.213.1.202 (222.213.1.202) 268.279 ms 155.748 ms 105.458 ms
8 222.213.1.202 (222.213.1.202) 119.202 ms 100.774 ms 102.015 ms
9 221.236.8.4 (221.236.8.4) 116.087 ms 70.808 ms 140.186 ms
10 221.236.8.4 (221.236.8.4) 98.188 ms 63.292 ms 159.435 ms
11 221.236.12.213 (221.236.12.213) 96.436 ms 97.565 ms 85.184 ms
[root@localhost /]# ping [url]www.sina.com.cn[/url]
PING jupiter.sina.com.cn (218.30.66.101) 56(84) bytes of data.
64 bytes from 218.30.66.101: icmp_seq=1 ttl=248 time=10.4 ms
64 bytes from 218.30.66.101: icmp_seq=2 ttl=248 time=13.0 ms
64 bytes from 218.30.66.101: icmp_seq=3 ttl=248 time=10.6 ms
[4]+ Stopped ping [url]www.sina.com.cn[/url]
本文出自 “jekay100的博客” 博客,转载请与作者联系!