您好,欢迎访问三七文档
当前位置:首页 > 商业/管理/HR > 销售管理 > 实例讲解广域网路由基本技术
我们假定读者对IP协议有一定程度的了解(不了解IP协议永远无法维护一个IP网络),比如至少懂得IP地址的结构、类别和子网、子网掩码的概念,并且具有一定的计算机基础知识。在配置路由器时,只要将计算机的串口通过路由器自带的专用电缆接到Console口,使用诸如超级终端或者Netterm之类的软件即可。网络中的只有一块网卡(一个IP地址)任何一台主机只能直接访问本子网内的机器。而路由器相当于一台由多个网卡的主机,每一块网卡可以直接与一个子网通信。根据上图我们知道,两个网络相连主要是通过在其间建立一个广域网互联子网来进行。这个子网中只有两台机器,即两边的路由器,当然它的子网掩码就是255.255.255.252。只要路由器A、B的Seiral口在同一个子网,由于它们的Ethernet口分别属于A、B两网,我们就在A、B网之间建立了一条通道。网络A中的主机只要将网关设为路由器A,其信息即可通过路由器A、B转发到B网。我们在例子中使用的是应用最广泛的Cisco2501路由器,这种路由器物理结构简单,网络接口只有两个Serial口和一个Ethernet口,却支持完整的路由功能。采用的协议为TCP/IP,因为现在使用其他诸如IPX、Netbeui之类的协议已经是非常的不合时宜。实例1:通过Cisco2501连接A局域网与B局域网假设实验条件如下:A网:202.96.199.0——202.96.199.255B网:202.97.76.0——202.97.76.31DNSServer:202.96.199.2(主),202.96.199.3(备)所属域:xxx.com广域网互联:需要一个包含4个IP地址(2个可用IP)的子网,定为:202.98.0.0——202.98.0.3,其中202.98.0.1给A网,202.98.0.2给B网互联专线速率:128kbps具体网络参数分配表如下:项目A网B网网络号202.96.199.0202.97.76.0子网掩码255.255.255.0255.255.255.224所属域xxx.comyyy.com以太网地址202.96.199.1202.97.76.1互联地址202.98.0.1202.98.0.2专线速率128kbps同左域名服务器主:202.96.199.2备:202.96.199.3同左首先进入路由器:将你的计算机串行口连接到路由器的Console口,使用Netterm或者超级终端之类的软件登录。Routeren:passwd:******(输入超级口令)全局配置:(A、B网相同)Router#confterminal(切换到配置状态)Router(config)#enablesecretmy-root-password(定义超级口令)Router(config)#iphostRouter-A(定义路由器名,B网为Router-B)Router(config)#ipdomain-namexxx.com(定义所属域名称,B网为yyy.com)Router(config)#nameserver202.96.199.2(定义主域名服务器)Router(config)#nameserver202.96.199.3(定义备域名服务器)Router(config)#ipclasslessRouter(config)#linevty04(定义5个telnet虚终端,即可以同时有5个人登录本路由器)Router(config-line)#passwordmy-telnet-password(定义telnet口令)Router(config-line)#exitRouter(config)#exit地址和路由配置:/******A网路由器******/Router-A#conft(切换到配置状态)Router-A(config)#inte0(配置Ethernet0口)Router-A(config-if)#descriptiontheLANportlinktomylocalnetwork(端口说明)Router-A(config-if)#ipadd202.96.199.1255.255.255.0(定义以太网IP地址,子网掩码表示为C类网络)Router-A(config-if)#noshutdown(激活端口)Router-A(config-if)#exitRouter-A(config)#ints0(配置Serial0口)Router-A(config-if)#descriptiontheWANportlinktoRouter-B(端口说明)Router-A(config-if)#ipadd202.98.0.1255.255.255.252(定义互联广域网IP地址)Router-A(config-if)#bandwidth128(定义端口速率,单位:kbps)Router-A(config-if)#noshutdown(激活端口)Router-A(config-if)#exitRouter-A(config)#iproute202.97.76.0255.255.255.224202.98.0.2(定义静态路由,通过网关到达对端局域网络,IP为对端广域网IP地址)Router-A(config)#exitRouter-A#wrm(保存配置)/******B网路由器******/Router-B#conftRouter-B(config)#inte0Router-B(config-if)#descriptiontheLANportlinktomylocalnetwork(端口说明)Router-B(config-if)#ipadd202.97.76.1255.255.255.224(定义以太网IP地址,子网掩码表示为拥有32个地址的子网)Router-B(config-if)#noshutdownRouter-B(config-if)#exitRouter-B(config)#ints0Router-B(config-if)#descriptiontheWANportlinktoRouter-A(端口说明)Router-B(config-if)#ipadd202.98.0.2255.255.255.252Router-B(config-if)#bandwidth128Router-B(config-if)#noshutdownRouter-B(config-if)#exitRouter-B(config)#iproute202.96.199.0255.255.255.0202.98.0.1(定义静态路由,通过网关到达对端局域网络,IP为对端广域网IP地址)Router-B(config)#exitRouter-B#wrm(保存配置)配置完成.这里是A网、B网路由器配置清单。RouterA:Router-A#shrunBuildingConfiguration...Currentconfigurationversion11.2serviceudp-small-serversservicetcp-small-servershostnameRouter-Aenablesecrettest-aipsubnet-zerointerfaceEthernet0descriptiontheLANportlinktomylocalnetworkipaddress202.96.199.1255.255.255.0interfaceSerial0descriptiontheWANportlinktoRouter-Bipaddress202.98.0.1255.255.255.252bandwidth128interfaceSerial1noipaddressshutdownipdomain-namexxx.comipname-server202.96.199.2ipname-server202.96.199.3ipclasslessiproute202.97.76.0255.255.255.224202.98.0.2linecon0lineaux0linevty04passwordtelnet-aloginendRouter-A#RouerB:Router-B#shrunBuildingConfiguration...Currentconfigurationversion11.2serviceudp-small-serversservicetcp-small-servershostnameRouter-Benablesecrettest-bipsubnet-zerointerfaceEthernet0descriptiontheLANportlinktomylocalnetworkipaddress202.97.76.1255.255.255.224interfaceSerial0descriptiontheWANportlinktoRouter-Aipaddress202.98.0.2255.255.255.252bandwidth128interfaceSerial1noipaddressshutdownipdomain-nameyyy.comipname-server202.96.199.2ipname-server202.96.199.3ipclasslessiproute202.96.199.0255.255.255.0202.98.0.1linecon0lineaux0linevty04passwordtelnet-bloginendRouter-B#实例2:通过Cisco2501将你的局域网接入Internet假设实验条件如下:本网IP地址为:202.96.199.0——202.96.199.255DNSServer:202.96.202.96(主),202.96.96.202(备)ISP分配的广域网互联IP地址为202.98.0.2具体网络参数分配表如下:项目用户网络ISP网络网络号202.96.199.0子网掩码255.255.255.0所属域xxx.com以太网地址202.96.199.1互联地址202.98.0.2202.98.0.1专线速率128kbps同左域名服务器主:202.96.202.96备:202.96.96.202我们已经有了上例的经验,则很容易根据相同的原理配置这个路由器。首先进入路由器:Routeren:passwd:全局配置:Router#conftRouter(config)#iphostRouterRouter(config)#nameserver202.96.202.96Router(config)#nameserver202.96.96.202Router(config)#exit其他项目同“例一”。地址配置:Router#conftRouter(config)#inte0Router(config-if)#descriptiontheLANportlinktomylocalnetwork(端口说明)Router(config-if)#ipadd202.96.199.1255.255.255.0Router(config-if)#noshutdown(激活端口)Router(config-if)#exitRouter(config)#ints0Router(config-if)#descriptiontheWANportlinktoInternet(端口说明)Router(config-if)#ipadd202.98.0.2255.255.255.252Router(config-if)#noshutdown(激活端口)Router(config-if)#exit路由配置:Router(config)#iproute0.0.0.00.0.0.0202.98.0.1(定义默认静态路由,所有的远程访问通过网关,IP为对端广域网IP地址)Router(config)#
本文标题:实例讲解广域网路由基本技术
链接地址:https://www.777doc.com/doc-3167186 .html