网友您好, 请在下方输入框内输入要搜索的题目:
●试题一
阅读下列广域网路由基本技术的应用,分析路由器的配置命令,将应填入(n)处的内容写在答题纸的对应栏内。
实例:通过Cisco 2501连接A局域网与B局域网,如图2所示。
假设实验条件如下:
A网:202.96.199.0~202.96.199.255
B网:202.97.76.0~202.97.76.31
DNS Server: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。
具体网络参数分配表见 表2:
项 目
A 网
B 网
网络号
202.96.199.0
202.97.76.0
子网掩码
255.255.255.0
255.255.255.224
所属域
xxx.com
yyy.com
以太网地址
202.96.199.1
202.97.76.1
互联地址
202.98.0.1
202.98.0.2
专线速率
128kbps
128kbps
域名服务器
主:202.96.199.2
主:202.96.199.2
备:202.96.199.3
备:202.96.199.3
首先进入路由器:将计算机串行口连接到路由器的Console口,使用Netterm或者超级终端之类的软件登录。
Router>en
passwd:******(输入超级口令)
全局配置:(A、B网相同)
Routerconfig terminal(切换到配置状态)
Router(config)enable secret myrootpassword(定义超级口令)
Router(config)ip host RouterA(定义路由器名,B网为RouterB)
Router(config)ip domain-name (1)
Router(config)nameserver 202.96.199.2(定义主域名服务器)
Router(config)nameserver 202.96.199.3(定义备域名服务器)
Router(config)ip classless
Router(config)line (2)
(定义5个telnet虚终端,即可以同时有5个人登录本路由器)
Router(config-line)password my-telnet-password(定义telnet口令)
Router(config·line)exit
Router(config)exit
地址和路由配置:
/******A网路由器******/
Router-Aconfig terminal(切换到配置状态)
Router-A(config)interface e0(配置Ethernet 0 口)
Router-A(configif)description the LAN port link to my local network(端口说明)
Router-A(configif)ip address (3)
Router-A(configif)no shutdown(激活端口)
Router-A(configif)exit
Router-A(config)Interfa s0(配置Serial0 口)
Router-A(configif)description the WAN port link to Router-B(端口说明)
Router-A(configif)ip add 202.98.0.1 255.255.255.252(定义互联广域网IP地址)
Router-A(configif)bandwidth 128(定义端口速率,单位:kbps)
Router-A(configif)no shutdown(激活端口)
Router-A(config-if)exit
Router-A(config)ip route (4)
Router-A(contig)exit
Router-Awr m(保存配置)
/****** B网路由器 *******/
Router-Bconfig terminal
Router-B(config)interface e0
Router-B(configif)descripfion the LAN port link to my local network(端口说明)
Router-B(config-if)ip add 202.97.76.1 255.255.255.224
(定义以太网IP地址,子网掩码表示为拥有32个地址的子网)
Router-B(config-if)no shutdown
Router-B(config-if)exit
Router-B(config)interface s0
Router-B(configif)description the WAN port link to Router-A(端口说明)
Router-B(config-if)ip add 202.98.0.2 255.255.255.252
Router-B(config-if)bandwidth 128
Router-B(config-if)no shutdown
Router-B(config-if)exit
Router-B(config)ip route (5)
Router-B(config)exit
Router-Bwr m(保存配置)
配置完成。
参考答案