当前位置:   article > 正文

思科模拟器配置-基本操作和vlan实训_思科模拟器配置vlan命令

思科模拟器配置vlan命令

根据下面的拓扑图进行配置,保证全网互通,VLAN间能互通

在这里插入图片描述

S1上配置VTY登录,限制3台主机,保存运行配置到启动配置文件。

S1(config)#line vty 0 2
S1(config-line)#exit
S1(config)#exit
S1#copy running-config startup-config 
Destination filename [startup-config]? 
Building configuration...
[OK]
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

S1使用本地数据库验证方式,添加用户a1:1234。配置特权加密口令为2345。

S1(config)#line vty 0 2
S1(config-line)#login local
S1(config-line)#exit
S1(config)#username a1 password 1234
S1(config)#enable password 2345
  • 1
  • 2
  • 3
  • 4
  • 5

给各交换机配置VLAN,VLAN管理地址均为本网段最后一个地址。

S1:

S1(config)#vlan 50
S1(config-vlan)#vlan 60
S1(config-vlan)#exit
S1(config)#interface vlan 50
S1(config-if)#
%LINK-5-CHANGED: Interface Vlan50, changed state to up
S1(config-if)#ip address 172.0.50.254 255.255.255.0
S1(config-if)#exit
S1(config)#interface vlan 60
S1(config-if)#
%LINK-5-CHANGED: Interface Vlan60, changed state to up
S1(config-if)#ip address 172.0.60.254 255.255.255.0
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

S2:

S2(config)#vlan 10
S2(config-vlan)#vlan 20
S2(config-vlan)#exit
S2(config)#interface vlan 10
S2(config-if)#
%LINK-5-CHANGED: Interface Vlan10, changed state to up
S2(config-if)#ip address 172.0.10.254 255.255.255.0
S2(config-if)#exit
S2(config)#interface vlan 20
S2(config-if)#
%LINK-5-CHANGED: Interface Vlan20, changed state to up
S2(config-if)#ip address 172.0.20.254 255.255.255.0
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

S1上配单臂路由,S3上配三层交换路由。

配置各pc ip
在这里插入图片描述

S1:

S1(config)#interface fastEthernet 0/5
S1(config-if)#switchport mode access 
S1(config-if)#switchport access vlan 50
S1(config-if)#
%LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan50, changed state to up
S1(config-if)#exit
S1(config)#interface fastEthernet 0/6
S1(config-if)#switchport mode access 
S1(config-if)#switchport access vlan 60
S1(config-if)#
%LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan60, changed state to up
S1(config-if)#exit
S1(config)#interface fastEthernet 0/1
S1(config-if)#switchport mode trunk 
S1(config-if)#
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

R1:

R1#configure terminal 
Enter configuration commands, one per line.  End with CNTL/Z.
R1(config)#interface fastEthernet 0/0
R1(config-if)#no shutdown 
R1(config-if)#
%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 fastEthernet 0/0.50
R1(config-subif)#
R1(config-subif)#ip add
R1(config-subif)#ip address 172.0.50.1 255.255.255.0
R1(config-subif)#encapsulation dot1Q 50
R1(config-subif)#ip address 172.0.50.1 255.255.255.0
R1(config-subif)#exit
R1(config)#interface fastEthernet 0/0.60
R1(config-subif)#
R1(config-subif)#encapsulation dot1Q 60
R1(config-subif)#ip address 172.0.60.1 255.255.255.0
R1(config-subif)#
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

验证可用性:
在这里插入图片描述

S2:
在这里插入图片描述

S2(config)#vlan 10
S2(config-vlan)#vlan 20
S2(config-vlan)#exit
S2(config)#interface fastEthernet 0/1
S2(config-if)#switchport mode access 
S2(config-if)#switchport access vlan 10
S2(config-if)#exit
S2(config)#interface fastEthernet 0/6
S2(config-if)#switchport mode access 
S2(config-if)#switchport access vlan 20
S2(config-if)#exit
S2(config)#interface fastEthernet 0/20
S2(config-if)#switchport mode trunk 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

S3:

S3(config)#vlan 10
S3(config-vlan)#vlan 20
S3(config-vlan)#exit
S3(config)#interface fastEthernet 0/1
S3(config-if)#switchport mode access 
S3(config-if)#switchport access vlan 10
S3(config-if)#exit
S3(config)#interface fastEthernet 0/6
S3(config-if)#switchport mode access 
S3(config-if)#switchport access vlan 20
S3(config-if)#exit
S3(config)#ip routing
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

三层路由验证:

在这里插入图片描述

R0清除密码和所有配置,再配静态路由。

R0:

R0#erase startup-config
R0(config)#interface fastEthernet 0/1
R0(config-if)#no shutdown 
R0(config-if)#ip address 192.168.1.2 255.255.255.0
R0(config-if)#exit
R0(config)#interface fastEthernet 0/0
R0(config-if)#no shutdown 
R0(config-if)#ip address 192.168.0.1 255.255.255.0
R0(config-if)#exit
R0(config)#interface fastEthernet 1/0
R0(config-if)#no shutdown 
R0(config-if)#ip address 192.168.3.1 255.255.255.0
R0(config)#ip route 172.0.50.0 255.255.255.0 192.168.3.2
R0(config)#ip route 172.0.60.0 255.255.255.0 192.168.3.2
R0(config)#ip route 172.0.10.0 255.255.255.0 192.168.1.1
R0(config)#ip route 172.0.20.0 255.255.255.0 192.168.1.1
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

S3:

S3(config)#in fastEthernet 0/24
S3(config-if)#no switchport
S3(config-if)#ip address 192.168.1.1 255.255.255.0
S3(config)#ip route 0.0.0.0 0.0.0.0 192.168.1.2
  • 1
  • 2
  • 3
  • 4

在这里插入图片描述

R1配置默认路由,保存配置文件,并复制到server0的TFTP服务器。

R1(config)#interface fastEthernet 0/1
R1(config-if)#no shutdown 
R1(config-if)#ip address 192.168.3.2 255.255.255.0
R1(config-if)#exit
R1(config)#
R1(config)#ip route 0.0.0.0 0.0.0.0 192.168.3.1

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

在这里插入图片描述

服务器:

在这里插入图片描述

R1#copy running-config tftp
Address or name of remote host []? 192.168.0.2
Destination filename [R1-confg]? y

Writing running-config...!!
[OK - 787 bytes]

787 bytes copied in 0 secs
R1#

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

在这里插入图片描述

END:

在这里插入图片描述
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/正经夜光杯/article/detail/863599
推荐阅读
相关标签
  

闽ICP备14008679号