当前位置:   article > 正文

划分vlan实现跨交换机vlan内通信_vlan跨越多个交换机

vlan跨越多个交换机

使用软件:Cisco Packet Tracer

使用设备:PC机、cisco-2960交换机、cisco-3560-24PS交换机(有路由功能的三层交换机

 

一、划分vlan

配置接线

按图示连接好八个PC机,三个2960交换机

PC机与交换机之间用实线,交换机之间用虚线

switch0:

        PC0连接f0/1

        PC1连接f0/2

        PC2连接f0/10

        PC3连接f0/11

switch1:

        PC4连接f0/1

        PC5连接f0/2

        PC6连接f0/10

        PC7连接f0/11

依次配置八个PC机的IP地址 

  1. PC0192.168.1.1
  2. PC1192.168.1.2
  3. PC2192.168.1.3
  4. PC3192.168.1.4
  5. PC4192.168.1.5
  6. PC5192.168.1.6
  7. PC6192.168.1.7
  8. PC7192.168.1.8

在交换机中进行配置划分vlan域

(所有接口默认均处在vlan1域中)

  1. switch0命令:
  2. Switch>enable
  3. Switch#conf t
  4. Enter configuration commands, one per line. End with CNTL/Z.
  5. Switch(config)#vlan 10
  6. Switch(config-vlan)#vlan 20//创建两个vlan域
  7. Switch(config-vlan)#int range f0/1-2
  8. Switch(config-if-range)#switchport access vlan 10//将f0/1和f0/2接口划分到vlan10域中
  9. Switch(config-if-range)#int range f0/10-11
  10. Switch(config-if-range)#switchport access vlan 20//将f0/10和f0/11接口划分到vlan20域中
  1. switch1命令:
  2. Switch>enable
  3. Switch#conf t
  4. Enter configuration commands, one per line. End with CNTL/Z.
  5. Switch(config)#vlan 10
  6. Switch(config-vlan)#vlan 20//创建两个vlan域
  7. Switch(config-vlan)#int range f0/1-2
  8. Switch(config-if-range)#switchport access vlan 10//将f0/1和f0/2接口划分到vlan10域中
  9. Switch(config-if-range)#int range f0/10-11
  10. Switch(config-if-range)#switchport access vlan 20//将f0/10和f0/11接口划分到vlan20域中

这样就将八台PC机划分为四个vlan域了

switch0和switch1下虽然都有vlan10,但是他们由于经过switch2,switch2暂时还没有配置,所有接口依旧处于vlan1域中,所以switch0与switch1两个交换机下的PC机虽然在同一vlan域,但是依旧不可互相通信

二、跨交换机vlan内通信

利用除连接PC机的另外一个交换机实现两个交换机下的PC之间的vlan内通信

其实只配置switch0和switch1就行,但是最好还是配置一下switch2,养成良好习惯,不然域扩大,配置不全,容易出bug

  1. switch0命令:
  2. Switch>enable
  3. Switch#conf t
  4. Enter configuration commands, one per line. End with CNTL/Z.
  5. Switch(config)#int g0/1
  6. Switch(config-if)#switchport mode trunk
  1. switch1命令:
  2. Switch>enable
  3. Switch#conf t
  4. Enter configuration commands, one per line. End with CNTL/Z.
  5. Switch(config)#int g0/1
  6. Switch(config-if)#switchport mode trunk
  1. switch2命令:
  2. Switch>enable
  3. Switch#conf t
  4. Enter configuration commands, one per line. End with CNTL/Z.
  5. Switch(config)#vlan 10
  6. Switch(config-vlan)#vlan 20
  7. Switch(config-vlan)#^Z
  8. Switch#
  9. %SYS-5-CONFIG_I: Configured from console by console
  10. Switch#conf t
  11. Enter configuration commands, one per line. End with CNTL/Z.
  12. Switch(config)#int range f0/1-2
  13. Switch(config-if-range)#switchport mode trunk
  14. //出现下面情况就是启动了
  15. Switch(config-if-range)#
  16. %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down
  17. %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up
  18. %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/2, changed state to down
  19. %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/2, changed state to up

测试PC0能否与PC1、PC4、PC5通信(正常情况下应该是可以通信,因为同属vlan10)

测试PC2能否与PC3、PC6、PC7通信(正常情况下应该是可以通信,因为同属vlan20)

三、vlan间主机路由

更换switch2为cisco-3560交换机

  1. 3560命令:
  2. Would you like to enter the initial configuration dialog? [yes/no]: no
  3. Press RETURN to get started!
  4. Switch>
  5. Switch>enable
  6. Switch#conf t
  7. Enter configuration commands, one per line. End with CNTL/Z.
  8. Switch(config)#vlan 10
  9. Switch(config-vlan)#vlan 20
  10. Switch(config-vlan)#^Z
  11. Switch#
  12. Switch#conf t
  13. Enter configuration commands, one per line. End with CNTL/Z.
  14. Switch(config)#ip routing
  15. //启动路由功能
  16. Switch(config)#int vlan 10
  17. Switch(config-if)#ip address 192.168.1.100 255.255.255.0
  18. //配置vlan域的网关
  19. Switch(config-if)#no shutdown
  20. Switch(config-if)#int vlan 20
  21. Switch(config-if)#
  22. %LINK-5-CHANGED: Interface Vlan20, changed state to up
  23. %LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan20, changed state to up
  24. Switch(config-if)#ip address 192.168.2.100 255.255.255.0
  25. Switch(config-if)#no shutdown

至此,vlan10与vlan20就划分为两个网段了

通信互不干扰

PC0与PC1、PC4、PC5及网关都可以正常通信

PC2与PC3、PC6、PC7及网关都可以正常通信

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

闽ICP备14008679号