结合实例讲解广域网路由基本技术( 三 )


Router(config)#exit
其他项目同“例一” 。
地址配置:
Router#conf t
Router(config)#int e0
Router(config-if)#description the LAN port link to my local network(端口说明)
Router(config-if)#ip add 202.96.199.1 255.255.255.0
Router(config-if)#no shutdown(激活端口)
Router(config-if)#exit
Router(config)#int s0
Router(config-if)#description the WAN port link to Internet(端口说明)
Router(config-if)#ip add 202.98.0.2 255.255.255.252
Router(config-if)#no shutdown(激活端口)
Router(config-if)#exit
路由配置:
Router(config)#ip route 0.0.0.0 0.0.0.0 202.98.0.1
(定义默认静态路由 , 所有的远程访问通过网关 , IP为对端广域网IP地址)
Router(config)#exit
Router#wr m
配置完成 。
这里是本网路由器配置清单 。
Router#sh run
Building Configuration...
Current configuration
version 11.2
service udp-small-servers
service tcp-small-servers
hostname Router
enable secret test
ip subnet-zero
interface Ethernet0
description the LAN port link to my local network
ip address 202.96.199.1 255.255.255.0
interface Serial0
description the WAN port link to Internet
ip address 202.98.0.2 255.255.255.252
bandwidth 128
interface Serial1
no ip address
shutdown
ip domain-name xxx.com
ip name-server 202.96.202.96
ip name-server 202.96.96.202
ip classless
ip route 0.0.0.0 0.0.0.0 202.98.0.1
line con 0
line aux 0
line vty 0 4
password telnet
login
end
Router#
实例3:使用Cisco路由器对大型网络(例如ISP网络)进行扩容
当然 , 设计治理大型网络的路由非常复杂 , 一般都是由经过高级培训的专业人士进行 。而且 , 大型网络一般都采用像Cisco 7507这样的高档路由器 。在这里顺便简单讲述 , 主要是让大家开阔一下视野 , 了解一下其他的路由协议 。
这时 , 与例2唯一的不同就是路由配置 , 不能采用静态路由协议而应该相应地采用非常优秀的OSPF动态路由协议并结合RIP协议 。
假设具体网络参数如下:
项目 本地网络
网络号 202.96.199.0
子网掩码 255.255.255.0
OSPF编号 100
OSPF域 202.96.192.0——202.96.207.255 , 16个C
那么应该这样配置:
Router(config)#router ospf 100(配置OSPF路由)
Router(config-router)#summary-address 202.96.199.0 255.255.255.0
Router(config-router)#redistribute connnected metric-type 1 subnets
Router(config-router)#redistribute static(通过OSPF协议广播静态路由)
Router(config-router)#network 202.96.192.0 0.0.15.255 area 0.0.0.0
Router(config-router)#area 0.0.0.0 authentiication message-digest
Router(config-router)#exit
Router(config)#router rip(配置RIP路由)
Router(config-router)#redistribute ospf 100 metric 1(通过RIP协议广播OSPF路由)
Router(config-router)#passive-interface Serial 0(不在Serial 0上使用)
Router(config-router)#network 202.101.199.0(定义本网络)
Router(config-router)#exit
Router(config)exit
同时 , 采用OSPF协议时应该在广域网端口上加入授权机制:
Router(config)#int s0
Router(config-if)#ip ospf message-digest-key keyword
Router(config-if)#exit
Router(config)#exit
Router#wr m
更大型的网络会采用BGP边缘路由协议 , 假设具体网络参数如下:
项目 本地网络 远程网络
AS(自治域) 20000 4000
本地BGP网络 202.96.192.0——202.96.207.255 , 16个C
202.97.0.0——202.97.15.255 , 16个C
202.98.128.0——202.98.159.255 , 32个C
 
互联地址 202.100.4.2 202.100.4.1
则本地路由器配置方法为:

推荐阅读