思科模拟器试验步骤
更新时间:2023-11-27 12:38:01 阅读量: 教育文库 文档下载
通过telnet远程登录路由器
一、实验目的
1.路由器的用户模式和特权模式的使用方法; 2.配置路由器以太网接口的Ip地址; 3.配置路由器的enable密码和vty密码;
二、实验拓扑
三、实验步骤
第一步:按照拓扑图搭建实验环境; 第二步:实验步骤;
(1)步骤一:配置路由器以太网接口IP地址;
1、交换机上基本操作
Switch>enable
Switch#conf t Switch(config)#interface vlan 1 Switch(config-if)#ip address 192.168.1.10 255.255.255.0 Switch(config-if)#no shutdown Switch(conffig-if)#exit
2、配置虚拟终端密码
Switch(config)#line vty 0 4 Switch(config-line)#password 123 Switch(config-line)#login
Switch(config-line)#exit
\\\\进入全局模式
\\\\进入特权模式 \\\\进入端口 \\\\配置IP地址 \\\\打开端口 \\\\回到上一步 \\\\进入vty虚拟终端 \\\\配置telnet密码 \\\\注册
\\\\回到上一级模式下
四、实验调试
(1)通过telnet访问路由器
在计算机配置网卡的IP地址为192.168.1.1/255.255.255.0,并打开DOS命令行窗口。首先测试计算机和路由器的IP连通性,在进行Telnet远程登录。如下:
Ping statistics for 192.168.1.10:
Packets: Sent = 4, Received = 0, Lost = 4 (100% loss),
PC>ping 192.168.1.10
Pinging 192.168.1.1 with 32 bytes of data:
Request timed out.
Reply from 192.168.1.10: bytes=32 time=0ms TTL=255 Reply from 192.168.1.10: bytes=32 time=0ms TTL=255 Reply from 192.168.1.10: bytes=32 time=0ms TTL=255
Ping statistics for 192.168.1.10:
Packets: Sent = 4, Received = 3, Lost = 1 (25% loss), Approximate round trip times in milli-seconds: Minimum = 0ms, Maximum = 0ms, Average = 0ms
//以上表明计算机能ping通路由器接口fastethernet0/1的IP地址
PC>telnet 192.168.1.10 //从计算机telnet路由器以太网卡上的IP地址 Trying 192.168.1.10 ...Open
User Access Verification Password: Switch>enable Password: Switch#
//输入vty的密码123、输入enable的密码456,能正常进入路由器的特权模式。
划分VLAN
一、实验目的 1.VLAN的创建方法;
2.把交换机接口划分到特定VLAN的方法; 3.配置交换机接口Trunk的方法; 4.实现不同VLAN间的通信;
二、实验步骤
三、实验步骤
第一步:按照拓扑图搭建实验环境; 第二步:实验步骤;
步骤1:在S1上创建VLAN
S1>enable S1#conf t S1(config)#vlan 10 S1(config-vlan)#exit S1(config)#vlan 20 S1(config-vlan)#exit
步骤2:将端口划分到指定VLAN中
S1(config)#interface f0/1 S1(config-if)#switchport mode access S1(config-if)#switchport access vlan 10 S1(config-if)#exit
S1(config)#interface f0/2 S1(config-if)#switchport mode access S1(config-if)#switchport access vlan 20 S1(config-if)#exit
步骤3:将指定端口改为Trunk模式
S1(config)#interface f0/11 S1(config-if)#switch mode trunk S1(config-if)#switchport trunk native vlan 10 S1(config-if)#switchport trunk native vlan 20 S1(config-if)#end
S2交换机上操作
步骤1:在S2上创建VLAN
S1>enable S1#conf t S1(config)#vlan 10 S1(config-vlan)#exit S1(config)#vlan 20 S1(config-vlan)#exit
\\\\进入配置模式 \\\\进入全局模式 \\\\创建vlan10 \\\\回到上一级 \\\\创建vlan20 \\\\回到上一级
\\\\ 进入端口
\\\\将模式改为access \\\\端口划分到vlan10 \\\\回到上一级 \\\\ 进入端口
\\\\将模式改为access \\\\端口划分到vlan20 \\\\回到上一级
\\\\ 进入端口 \\\\将模式改为trunk \\\\允许vlan10通过 \\\\允许vlan10通过 \\\\结束
\\\\进入配置模式 \\\\进入全局模式 \\\\创建vlan10 \\\\回到上一级 \\\\创建vlan20 \\\\回到上一级
步骤2:将端口划分到指定VLAN中
S1(config)#interface f0/1 S1(config-if)#switchport mode access S1(config-if)#switchport access vlan 10 S1(config-if)#exit
S1(config)#interface f0/2 S1(config-if)#switchport mode access \\\\ 进入端口
\\\\模式改为access \\\\端口划分vlan10 \\\\回到上一级 \\\\ 进入端口
\\\\将模式改access S1(config-if)#switchport access vlan 20 S1(config-if)#exit
步骤3:将指定端口改为Trunk模式
S1(config)#interface f0/11 S1(config-if)#switch mode trunk S1(config-if)#switchport trunk native vlan 10 S1(config-if)#switchport trunk native vlan 20 S1(config-if)#end
\\\\端口划vlan20 \\\\回到上一级
\\\\ 进入端口 \\\\模式改为trunk \\\\允许vlan10通过 \\\\允许vlan10通过 \\\\结束
四、实验调试
在PC机上进行ip地址访问 (1)在PC1下
Pinging 192.168.1.3 with 32 bytes of data:
Reply from 192.168.1.3: bytes=32 time=0ms TTL=128 Reply from 192.168.1.3: bytes=32 time=0ms TTL=128 Reply from 192.168.1.3: bytes=32 time=4ms TTL=128 Reply from 192.168.1.3: bytes=32 time=1ms TTL=128
Ping statistics for 192.168.1.3:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss), Approximate round trip times in milli-seconds: Minimum = 0ms, Maximum = 4ms, Average = 1ms //PC1与PC3在同一VLAN下,故能ping通
Ping statistics for 192.168.1.4:
Packets: Sent = 4, Received = 0, Lost = 4 (100% loss),
PC>ping 192.168.1.4
Pinging 192.168.1.4 with 32 bytes of data:
Request timed out. Request timed out. Request timed out. Request timed out.
Ping statistics for 192.168.1.4:
Packets: Sent = 4, Received = 0, Lost = 4 (100% loss), //PC1与PC4不在同一VLAN下,故不能ping通
Etherchannel链路聚合配置
一、实验目的
1.Etherchannel的工作原理; 2.Etherchannel的配置; 二、实验拓扑
三、实验步骤
第一步:按照拓扑图搭建实验环境; 第二部:实验步骤;
步骤1:配置Etherchannel
R1路由器上操作
S1>enable \\\\进入配置模式 S1#conf t \\\\进入全局模式 S1(config)#interface port-channel 1 \\\\创建以太通道 S1(config)#exit \\\\返回全局模式 S1(config-if)#interface range f0/11-12 \\\\进入端口 S1(config-if-range)#channel-group 1 mode on \\\\接口指定到创建的通道中 S1(config-if-range)#exit \\\\回到上一级 S1(config)#interface port-channel 1 \\\\进入以太通道中 S1(config-if)#switchport mode trunk \\\\将模式改为Trunk模式 S1(config-if)#end \\\\结束
R2路由器上操作
S1>enable \\\\进入配置模式 S1#conf t \\\\进入全局模式 S1(config)#interface port-channel 1 \\\\创建以太通道 S1(config)#exit \\\\返回全局模式 S1(config-if)#interface range f0/11-12 \\\\进入端口 S1(config-if-range)#channel-group 1 mode on \\\\接口指定到创建的通道中 S1(config-if-range)#exit \\\\回到上一级 S1(config)#interface port-channel 1 \\\\进入以太通道中 S1(config-if)#switchport mode trunk \\\\将模式改为Trunk模式 S1(config-if)#end \\\\结束
四、实验调试
(3) 查看etherchannel信息 S1#show etherchannel summary
Flags: D - down P - in port-channel I - stand-alone s - suspended H - Hot-standby (LACP only) d - default port
Number of channel-groups in use: 1 Number of aggregators: 1
Group Port-channel Protocol Ports
------+-------------+-----------+----------------------------------------------- 1 Po1(SU) - Fa0/13(P) Fa0/14(P)
//可以看到 EtherChannel 已经形成,“SU”表示 EtherChannel 正常,如果显示为“SD”,把EtherChannel 接口关掉重新开启。
单臂路由
一、 实验目的:
通过本实验,读者可以掌握如下技能: 1. 路由器以太网接口上的子接口 2. 单臂路由实现 VLAN 间路由的配置
二、 实验拓扑:
三、 实验步骤:
第一步:搭建拓扑图搭建实验环境 第二步:给电脑配上IP地址 第三步:实验步骤
正在阅读:
思科模拟器试验步骤11-27
第二次考试试题07-01
浅谈杜甫的忧患意识07-19
我是一个洗浴中心的客户经理 - 图文03-14
人教版七年级英语上册9单元复习教案11-07
砌体结构期末考试试卷A卷06-10
毕业班复习10-27
感恩母亲节演讲稿范文五篇08-17
日本语能力测试N2模拟题07-28
- exercise2
- 铅锌矿详查地质设计 - 图文
- 厨余垃圾、餐厨垃圾堆肥系统设计方案
- 陈明珠开题报告
- 化工原理精选例题
- 政府形象宣传册营销案例
- 小学一至三年级语文阅读专项练习题
- 2014.民诉 期末考试 复习题
- 巅峰智业 - 做好顶层设计对建设城市的重要意义
- (三起)冀教版三年级英语上册Unit4 Lesson24练习题及答案
- 2017年实心轮胎现状及发展趋势分析(目录)
- 基于GIS的农用地定级技术研究定稿
- 2017-2022年中国医疗保健市场调查与市场前景预测报告(目录) - 图文
- 作业
- OFDM技术仿真(MATLAB代码) - 图文
- Android工程师笔试题及答案
- 生命密码联合密码
- 空间地上权若干法律问题探究
- 江苏学业水平测试《机械基础》模拟试题
- 选课走班实施方案
- 思科
- 模拟器
- 步骤
- 试验
- ABB机器人实际应用中的指令说明
- 工程化学基础(第二版)练习题参考答案
- 非谓语动词翻译练习
- 旅游地产:club - med模式分析(2014)
- 规范化管理体系的建立
- 期货人生(吉建晔)
- 博物馆建筑方案设计任务书
- 醛,酮的反应与制备
- 2016年《初级会计实务》模拟题
- 初中语文病句类型及练习
- 关于在市内公交车城际客车和重载卡车实施方案
- 冷冻切片protocol
- 009年广州市中学生游泳运动会 - 图文
- 大学生人际信任、一般自我效能感相关研究开题报告 - 图文
- 综合整治工程 - 图文
- 微生物学习题及答案
- 2017-2018学年黑龙江省大庆实验中学高一下学期期末考试物理(理)试题Word版含答案
- 高分子化学实验讲义
- 唐词《菩萨蛮·小山重叠金明灭》拼音及翻译整合
- 中寨镇中心完全小学学校基本情况简介