思科模拟器试验步骤

更新时间: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地址 第三步:实验步骤

本文来源:https://www.bwwdw.com/article/qket.html

Top