XFBAY学习笔记=++=实验十 静态路由

 

1.设置计算机和路由器的IP地址
    设置PCA、PCB的IP地址分别为:10.65.1.1和10.71.1.1。
[root#PCA root]# ifconfig eth0 10.65.1.1 netmask 255.255.0.0
[root#PCA root]# route add default gw 10.65.1.2
[root#PCB root]# ifconfig eth0 10.71.1.1 netmask 255.255.0.0
[root#PCB root]# route add default gw 10.71.1.2
[root#PCC root]# ifconfig eth0 10.70.1.1 netmask 255.255.0.0
[root#PCC root]# route add default gw 10.70.1.2

    设置RouterA的IP地址: (子网掩码是255.255.0.0)
f0/0: 10.65.1.2  ----->10.65.1.1 (PCA) (箭头表示连接)
f0/1: 10.66.1.2
s0/1: 10.68.1.2  -----> (RouterA的s0/1接RouterB的s0/1)

 router>en
router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
routerA(config)#int f0/0
routerA(config-if)#ip address 10.65.1.2 255.255.255.0
routerA(config-if)#no shutdown             ;激活当前接口
routerA(config-if)#int f0/1
routerA(config-if)#ip address 10.66.1.2 255.255.255.0
routerA(config-if)#no shutdown             ;激活当前接口
routerA(config)#int s0/1
routerA(config-if)#ip add 10.68.1.2 255.255.255.0
routerA(config-if)#no shutdown
clock ?
routerA(config-if)#clock rate 64000      ;设置同步时钟
routerA(config-if)#no shutdown             ;激活当前接口

    设置RouterB的IP地址:
s0/1: 10.68.1.1  <----
f0/0: 10.70.1.2
f0/1: 10.71.1.2  ---->10.71.1.1 (PCB)

 routerB>en
routerB#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
routerB(config-if)#int s0/1
routerB(config-if)#ip add 10.68.1.1 255.255.255.0
routerB(config-if)#no shutdown
clock ?
routerB(config-if)#clock rate 64000      ;设置同步时钟
routerB(config-if)#no shutdown             ;激活当前接口
routerB(config-if)#int f0/0
routerB(config-if)#ip add 10.70.1.2 255.255.255.0
routerB(config-if)#no shutdown             ;激活当前接口
routerB(config-if)#int f0/1
routerB(config-if)#ip add 10.71.1.2 255.255.255.0
routerB(config-if)#no shutdown             ;激活当前接口

    2.设置路由器的静态路由:
    先看一下路由表:
    show ip route 是显示路由表命令,它可以看到直联网络,静态路由和动态路由的情况,这是一个很常用的命令。

routerA#show ip route              (只能看到直连路由)
routerA(config)#ip route 10.71.1.0 255.255.255.0 10.68.1.1
routerA(config)#ip routing
routerA#show ip route              (多了一条静态路由)

    从PCA ping PCB :
[root@PCA root]# ping 10.71.1.1 (通)
    从PCA ping
[root@PCA root]# ping 10.70.1.2 (不通)
    再设置一条静态路由:
routerA(config)#ip route 10.70.1.0 255.255.255.0 10.68.1.1
routerA(config)#end
routerA#show ip route               (又多了一条静态路由)

[root@PCA root]# ping 10.70.1.2 (通了)

    3.设置路由器的默认路由
    先去掉两条静态路由:
routerA(config)#no ip route 10.70.0.0 255.255.0.0 10.68.1.1
routerA(config)#no ip route 10.71.0.0 255.255.0.0 10.68.1.1
[root@PCA root]# ping 10.71.1.1 (不通)
[root@PCA root]# ping 10.70.1.1 (不通)

    设置RouterA的默认路由:
routerA(config)#ip route 0.0.0.0 0.0.0.0 10.68.1.1
routerA#show ip route
[root@PCA root]# ping 10.71.1.1 (通)
[root@PCA root]# ping 10.70.1.2 (通)

    使用指定静态路由时,要查看指定的目的网络,使用默认路由时,不判断目的网络。将匹配不了的数据包都发送给默认的下一跳。路由器设置中一般最后有一条默认路由。
 

你可能感兴趣的:(静态,笔记,路由,实验,XFBAY)