静态路由

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

实验6 静态路由
姓名:王斌滨学号:20091200658 序号:10 一、实验步骤:
请参照上课给定的补充资料中的关于静态路由补充内容及实例。

二、实验思考题
1.静态路由的特点?以及应用场合。

特点: 1.不需要运行动态路由选择协议,可以减轻CPU负担。

若的确只需要静态路由功能,可以购买档次较低的路由器,以节省投资。

此外,因为路由器之间不必传输路由信息,也节约了信道带宽。

2.通过调整路由,管理员可以灵活实施访问控制策略,有助于提高网络的安全性。

3.用于小型的网络时,配置十分的简单。

4.管理员必须熟知网络的结构细节,方可正确配置路由。

5.对于大型或结构变动频繁的网络,采用静态路由方案会导致巨大的配置与管理工作量,故不宜使用。

应用场合:小型或结构简单的网络。

2.静态路由的出口地址配置要注意什么?
注意事项:
1.创建路由条目时,尽可能使用下一跳路由器的地址,而不是本地路由器接口。

2.当连接下一跳路由器的接口处于关闭状态时,尽管可以配置指向该路由器的路由条
目,并且可以配置文件中看到的相关语句,但在接口被激活前,路由表中不会出现
相应表项。

3.IOS支持在若干静态路由上均衡流量。

3.默认路由设置的步骤?
1.首先规划网络,进行是逻辑布局。

2.采用自顶向下的方法,布局路由器。

2. 2.路由器先是配置接口。

然后设置默认路由。

3. 3.配置主机
4.ping各个地方能不能行得通。

4.静态路由配置实例(含网络拓扑及配置、测试代码)
PCA:
PCA login: root
password: linux
[root@PCA root]# ifconfig eth0 192.168.1.2 netmask 255.255.255.0 [root@PCA root]# ifconfig
eth0 inet addr: 192.168.1.2 mask: 255.255.255.0 loopback inet addr: 127.0.0.1 mask: 255.0.0.0
[root@PCA root]# route add default gw 192.168.1.1
[root@PCA root]# ping 192.168.2.2
64 bytes from 192.168.1.2: icmp_seq=1 ttl=128 time=0.207 ms
64 bytes from 192.168.1.2: icmp_seq=1 ttl=128 time=0.100 ms
64 bytes from 192.168.1.2: icmp_seq=1 ttl=128 time=0.96 ms
64 bytes from 192.168.1.2: icmp_seq=1 ttl=128 time=0.96 ms
4packets transmitted, 4 received, 0% loss, time 2000ms
[root@PCA root]#
PCB:
Red Hat Linux release 7.3 (V alhalla)
Kernel 2.4.18-3 on an i686
PCB login: root
password: linux
[root@PCB root]# ifconfig eth0 192.168.2.2 netmask 255.255.255.0 [root@PCB root]# ifconfig
eth0 inet addr: 192.168.2.2 mask: 255.255.255.0 loopback inet addr: 127.0.0.1 mask: 255.0.0.0
[root@PCB root]# route add default gw 192.168.2.1
[root@PCB root]# ping 192.168.1.2
64 bytes from 192.168.2.2: icmp_seq=1 ttl=128 time=0.207 ms
64 bytes from 192.168.2.2: icmp_seq=1 ttl=128 time=0.100 ms
64 bytes from 192.168.2.2: icmp_seq=1 ttl=128 time=0.96 ms
64 bytes from 192.168.2.2: icmp_seq=1 ttl=128 time=0.96 ms
4packets transmitted, 4 received, 0% loss, time 2000ms
[root@PCB root]#
RouterA:
router>en
router#conf t
Enter configuration commands, one per line. End with CNTL/Z. router(config)#int F0/0
router(config-if)#ip address 192.168.1.1 255.255.255.0
router(config-if)#no shutdown
router(config-if)#exit
router(config)#int S0/0
router(config-if)#ip address 192.168.3.1 255.255.255.0
router(config-if)#no shutdown
router(config-if)#exit
router(config)#ip routing
router(config)#ip route 192.168.2.0 255.255.255.0 192.168.3.2 router(config)#exit
router#
RouterB:
router>en
router#conf t
Enter configuration commands, one per line. End with CNTL/Z. router(config)#int F0/0
router(config-if)#ip address 192.168.2.1 255.255.255.0
router(config-if)#no shutown
router(config-if)#exit
router(config)#int S0/0
router(config-if)#ip address 192.168.3.2 255.255.255.0
router(config-if)#no shutdown
router(config-if)#exit
router(config)#ip routing
router(config)#ip route 192.168.1.0 255.255.255.0 192.168.3.1 router(config)#exit
router#。

相关文档
最新文档