网络工程课程设计报告Cisco路由交换
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
网络工程课程设计
班级
学号
姓名
指导老师
年月日
Ch1 路由基本配置
拓扑图
配置命令
Router>en
Router#config t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname R1
R1(config)#no ip domain-l
R1(config)#banner motd &
Enter TEXT message. End with the character '&'.
Hello&
R1(config)#enable secret cisco
R1(config)#line console 0
R1(config-line)#password cisco
R1(config-line)#login
R1(config-line)#exit
R1(config)#line vty 0 4
R1(config-line)#password cisco
R1(config-line)#login
R1(config-line)#exit
R1(config)#interface fa0/0
R1(config-if)#ip address 192.168.1.33 255.255.255.224
R1(config-if)#no shutdown
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up R1(config-if)#exit
R1(config)#interface s0/0/0
R1(config-if)#ip address 192.168.1.65 255.255.255.224
R1(config-if)#no shutdown
%LINK-5-CHANGED: Interface Serial0/0/0, changed state to down
R1(config-if)#no shutdown
R1(config-if)#clock rate 64000
R1(config-if)#exit
R1(config)#
Router>en
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname R2
R2(config)#no ip domain-l
R2(config)#banner motd &
Enter TEXT message. End with the character '&'.
Hello&
R2(config)#enable secret cisco
R2(config)#line console 0
R2(config-line)#password cisco
R2(config-line)#login
R2(config-line)#exit
R2(config)#line vty 0 4
R2(config-line)#password cisco
R2(config-line)#login
R2(config-line)#exit
R2(config)#inter fa0/0
R2(config-if)#ip address 192.168.1.97 255.255.255.224
R2(config-if)#no shutdown
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
R2(config-if)#exit
R2(config)#interface s0/0/0
R2(config-if)#ip address 192.168.1.95 255.255.255.224
Bad mask /27 for address 192.168.1.95
R2(config-if)#no shutdown
%LINK-5-CHANGED: Interface Serial0/0/0, changed state to down
R2(config-if)#ip address 192.168.1.94 255.255.255.224
R2(config-if)#no shut
R2(config-if)#
实验中遇到的问题
1、在配置中遇到了一些比较生疏的口令,如配置禁用DNS查找和配置当天消息标语,不
知道是什么命令,但在老师的指导下也弄明白了
2、在配置路由器R1的时候,注意要配置时钟频率为64000,因为它是DCE,还有no
shutdown命令。