两种常见的Vlan间通信的方式

举报
谢公子 发表于 2021/11/19 01:03:04 2021/11/19
【摘要】 目录 一:三层交换机方式 二:单臂路由方式 一:三层交换机方式      如图,PC1和PC2是企业内网的主机,属于不同的部门,故属于不同的VLAN。在交换机上配置vlan 10和vlan 20,并且配上主机的网关。交换机与路由器相邻的接口配置上Vlan30,配置上和路由器接口同一网段的ip。...

目录

一:三层交换机方式

二:单臂路由方式


一:三层交换机方式

     如图,PC1和PC2是企业内网的主机,属于不同的部门,故属于不同的VLAN。在交换机上配置vlan 10和vlan 20,并且配上主机的网关。交换机与路由器相邻的接口配置上Vlan30,配置上和路由器接口同一网段的ip。在交换机上配置默认路由指向路由器。AR1是边界路由器,AR1上配置静态路由去往192.168.10.0网段和192.168.20.0网段。AR1还配了默认路由指向AR2。AR1与AR2通过OSPF路由。主机通过NAT方式以边界路由公网地址访问外网,故在边界路由AR1上配置PAT(端口多路复用)。以下是各设备的配置。

PC1


  
  1. PC1>ipconfig
  2. IPv4 address......................: 192.168.10.10
  3. Subnet mask.......................: 255.255.255.0
  4. Gateway...........................: 192.168.10.254
  5. Physical address..................: 54-89-98-20-70-11
  6. Vlan..............................: 10

PC2


  
  1. PC2>ipconfig
  2. IPv4 address......................: 192.168.20.10
  3. Subnet mask.......................: 255.255.255.0
  4. Gateway...........................: 192.168.20.254
  5. Physical address..................: 54-89-98-0C-28-2D
  6. Vlan..............................: 20

 

LSW1


  
  1. [SW1]display current-configuration
  2. #
  3. vlan batch 10 20 30
  4. #
  5. interface Vlanif10
  6. ip address 192.168.10.254 255.255.255.0
  7. #
  8. interface Vlanif20
  9. ip address 192.168.20.254 255.255.255.0
  10. #
  11. interface Vlanif30
  12. ip address 192.168.30.1 255.255.255.0
  13. #
  14. interface GigabitEthernet0/0/1
  15. port link-type access
  16. port default vlan 10
  17. #
  18. interface GigabitEthernet0/0/2
  19. port link-type access
  20. port default vlan 20
  21. #
  22. interface GigabitEthernet0/0/3
  23. port link-type access
  24. port default vlan 30
  25. #
  26. #
  27. ip route-static 0.0.0.0 0.0.0.0 192.168.30.2
  28. #

AR1


  
  1. [AR1]display current-configuration
  2. #
  3. acl number 2000
  4. rule 5 permit source 192.168.10.0 0.0.0.255
  5. rule 10 permit source 192.168.20.0 0.0.0.255
  6. #
  7. interface GigabitEthernet0/0/0
  8. ip address 192.168.30.2 255.255.255.0
  9. #
  10. interface GigabitEthernet0/0/1
  11. ip address 12.1.1.1 255.255.255.0
  12. nat outbound 2000
  13. #
  14. ospf 100 router-id 11.1.1.1
  15. area 0.0.0.0
  16. network 12.1.1.1 0.0.0.0
  17. network 192.168.30.2 0.0.0.0
  18. #
  19. ip route-static 192.168.10.0 255.255.255.0 192.168.30.1
  20. ip route-static 192.168.20.0 255.255.255.0 192.168.30.1
  21. #

AR2


  
  1. [AR2]display current-configuration
  2. #
  3. interface GigabitEthernet0/0/0
  4. ip address 12.1.1.2 255.255.255.0
  5. #
  6. interface LoopBack0
  7. ip address 22.2.2.2 255.255.255.255
  8. #
  9. ospf 100 router-id 22.2.2.2
  10. area 0.0.0.0
  11. network 12.1.1.2 0.0.0.0
  12. network 22.2.2.2 0.0.0.0
  13. #

二:单臂路由方式

如图,PC1和PC2是企业内网的主机,属于不同的部门,故属于不同的VLAN。他们之间通过路由器AR1单臂路由通信。他们通过路由器AR1的g0/0/1口以PAT(端口多路复用)方式与外界通信。AR1和AR2之间运行OSPF协议,AR1配置了指向AR2的默认路由。以下是各设备的配置

PC1


  
  1. PC1>ipconfig
  2. IPv4 address......................: 192.168.10.10
  3. Subnet mask.......................: 255.255.255.0
  4. Gateway...........................: 192.168.10.254
  5. Physical address..................: 54-89-98-20-70-11
  6. Vlan..............................: 10

PC2


  
  1. PC2>ipconfig
  2. IPv4 address......................: 192.168.20.10
  3. Subnet mask.......................: 255.255.255.0
  4. Gateway...........................: 192.168.20.254
  5. Physical address..................: 54-89-98-0C-28-2D
  6. Vlan..............................: 20

SW1


  
  1. [SW1]display current-configuration
  2. #
  3. vlan batch 10 20
  4. #
  5. #
  6. interface GigabitEthernet0/0/1
  7. port link-type access
  8. port default vlan 10
  9. #
  10. interface GigabitEthernet0/0/2
  11. port link-type access
  12. port default vlan 20
  13. #
  14. interface GigabitEthernet0/0/3
  15. port link-type trunk
  16. port trunk allow-pass vlan 10 20
  17. #

AR1


  
  1. [AR1]display current-configuration
  2. #
  3. acl number 2000
  4. rule 5 permit source 192.168.10.0 0.0.0.255
  5. rule 10 permit source 192.168.20.0 0.0.0.255
  6. #
  7. interface GigabitEthernet0/0/0.10
  8. dot1q termination vid 10
  9. ip address 192.168.10.254 255.255.255.0
  10. arp broadcast enable
  11. #
  12. interface GigabitEthernet0/0/0.20
  13. dot1q termination vid 20
  14. ip address 192.168.20.254 255.255.255.0
  15. arp broadcast enable
  16. #
  17. interface GigabitEthernet0/0/1
  18. ip address 12.1.1.1 255.255.255.0
  19. nat outbound 2000
  20. #
  21. ospf 100 router-id 11.1.1.1
  22. area 0.0.0.0
  23. network 12.1.1.1 0.0.0.0
  24. #

AR2


  
  1. [AR2]display current-configuration
  2. #
  3. interface GigabitEthernet0/0/0
  4. ip address 12.1.1.2 255.255.255.0
  5. #
  6. interface LoopBack0
  7. ip address 22.2.2.2 255.255.255.255
  8. #
  9. ospf 100 router-id 22.2.2.2
  10. area 0.0.0.0
  11. network 12.1.1.2 0.0.0.0
  12. network 22.2.2.2 0.0.0.0
  13. #

 

文章来源: xie1997.blog.csdn.net,作者:谢公子,版权归原作者所有,如需转载,请联系作者。

原文链接:xie1997.blog.csdn.net/article/details/81707654

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。