3)##配置文件和IOS的备份与恢复##
Rt99a#copy running-config tftp: //备份running-config到tftp
Rt99a#copy tftp: running-config //备份tftp到running-config
Rt99a#copy flash: tftp: //备份闪存中 IOS文件 c2600-i-mz.122-28.bin 到tftp
Rt99a#copy tftp: flash: //备份tftp到闪存中 IOS文件 c2600-i-mz.122-28.bin ,如果路由器重启,需要用到 tftpdnld 命令
4)##串行线路河静态路由的配置####
##DCE端接口
Rt99a#show controllers serial 0/0/0 // 查看串行接口控制器
Rt99a(config-if)#description WAN Link to Rt99b
Rt99a(config-if)#ip address 192.168.1.1 255.255.255.0
Rt99a(config-if)#clock rate 20000000
Rt99a(config-if)#no shutdown
##DTE端接口,不需要配置 clock rate
Rt99b#show controllers serial 0/0/0 // 查看串行接口控制器
Rt99b(config-if)#description WAN Link to Rt99a
Rt99b(config-if)#ip address 192.168.1.2 255.255.255.0
Rt99b(config-if)#no shutdown
##配置静态路由,使两个网络相通
Rt99a(config-if)#ip route 172.16.0.0 255.255.0.0 192.168.1.2
Rt99b(config-if)#ip route 10.0.0.0 255.0.0.0 192.168.1.1
##取消静态路由
Rt99a(config)#no ip route 172.16.0.0 255.255.0.0 192.168.1.2
Rt99b(config)#no ip route 10.0.0.0 255.0.0.0 192.168.1.1
##配置默认路由,使两个网络相通
Rt99a(config-if)#ip route 0.0.0.0 0.0.0.0 192.168.1.2
Rt99b(config-if)#ip route 0.0.0.0 0.0.0.0 192.168.1.1