路由与路由器基础实习报告.
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
成都纺织高等专科学校实习报告
实习题目:路由与路由器基础实习系部名称:电子信息与电气工程系班级名称:
学生姓名:
指导教师:
实习时间:
2011年6月
一、实习任务和要求
学生通过实习,巩固本期所学的路由器基本原理、子网划分、DHCP及NAT 等理论基础知识;熟练掌握路由器的基本配置及恢复或清除路由器的口令方法;掌握路由器静态、动态路由的配置;掌握路由器的DHCP服务配置;掌握路由器的NAT服务配置;掌握排除网络故障的基本方法和技能。提高运用理论知识解决实际问题的能力。
二、实习内容:
路由器的基本配置和通过Telnet访问路由器
Router>en
Router#conf t
Router(config#hostname RoterA
Ro uterA#conf t
RouterA(config#line console0
RouterA(config-line#password cisco
RouterA(config-line#login
(3、特权模式口令。
Router(config#Enable secret cisco或
Router(config#Enable password cisco
对于其他口令,为避免直接显示,可以使用“service password-encryption”命令。所使用的加密算法是可逆的。Router(config#service password-encryption
Router(config#no service password-encryption
可以使用“show config”命令检查所配置的主机名和口令。
(4只有配置了vty线路的密码后,才能利用Telnet远程登录路由器。
Router(config#line vty04
Router(config-line#password cisco
Router(config-line#login
以上是配置vty的密码,即telnet密码
并打开DOS命令行窗口,ping IP为192.168.1.1检查电脑与路由器的连通性。让后telnet192.168.1.1远程访问路由器。
恢复或清除路由器的口令
Ctrl+break忽略启动配置
Config0x2142以出场配置引导路由器
Reset
No
Enable
Copy runiny-config start-config
Config-regeior0x2102
清除完成后,为路由器设置密码,步骤如下:
1.先将路由器的Console端口与电脑的COM串行口相连
2.进入全局模式:Router(config#line console0
3.Router(config-line#password123
4.Router(config-line#login
5.Router(config-line#exit
6.配置enable(特权密码
7.Router(config#enable password123
8.Router(config#service password-encryption
9.Router(config#line vty04
10.Router(config-line#password123
11.Router(config-line#login
路由器静态路由的配置
outerA(config#interface s0/0
routerA(config-if#ip address192.168.10.1255.255.255.0 routerA(config-if#clock rate56000
routerA(config-if#no shut
routerA(config-if#exit
routerA(config#interface f0/1
routerA(config-if#ip address192.168.1.1255.255.255.0 routerA(config-if#no shut
routerA(config-if#exit
routerA(config-if#ip route192.168.2.0255.255.255.0192.168.10.2 routerA(config-ifend
routerA#write
使用ping命令,发现RouterA与RouterB都能够相互ping成功,这次网络组装完成。
动态路由协议RIP的配置
首先为路由器各端口分配IP地址,然后配置RIP
router(config#route rip
router(config-router#network192.168.1.0
router(config-router#network192.168.10.0
router(config-router#end
router#write
如果不指定RIP版本,系统默认的是version1 路由器的DHCP服务配置
实验时,我们只用了两台计算机。
配置DHCP
A、创建地址池
routerA(config#ip dhcp pool mypool
B、指定网络
routerA(dhcp-config#network192.168.1.0255.255.255.0
C、指定域名
routerA(dhcp-config#domain-name
D、指定DNS服务器的IP地址
routerA(dhcp-config#dns-server192.168.10.1192.168.50.3
E、设置默认网关
routerA(dhcp-config#default-router192.168.1.1
F、设置租用时间
routerA(dhcp-config#lease
G、排除地址
routerA(config#IP dhcp excluded-address192.168.1.50192.168.1.60