科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网网络频道三层交换机坏了 VLAN之间如何通信?

三层交换机坏了 VLAN之间如何通信?

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

VLAN主要建立在交换机的基础上,但在没有三层交换机的情况下,如何利用路由器来解决VLAN之间通信的问题呢?本文通过实际案例进行了讲解。

来源:chinaitlab 2008年1月3日

关键字: VLAN 路由交换

  • 评论
  • 分享微博
  • 分享邮件

在本页阅读全文(共4页)

    三.问题解决与配置过程

  要在一个路由器物理或者逻辑接口上实现单臂路由功能,必须要完成的工作包括:标示接口、定义trunk的类型、为子接口分配IP地址。下面以思科的3500系列的交换机和CISCO 2600系列的路由器为例,使用802.1 Trunking实现一个单臂路由的案例,连接情况如图2所示。

     图 2 Router-on-a-stick (Catalyt 3512-xl and Cisco 2621
     
    


     
       1.交换机上的配置

        3512xl#configure terminal
       Enter configuration commands, one per line. End with CNTL/Z.
       3512xl(config)#interface vlan 1
       3512xl(config-if)#ip address 10.10.10.2 255.255.255.0
       3512xl(config-if)#exit
       3512xl(config)#ip default-gateway 10.10.10.1
       3512xl(config)#end
       3512xl#vlan database
       3512xl(vlan)#vtp transparent
       Setting device to VTP TRANSPARENT mode.
       3512xl(vlan)#vlan 2
       VLAN 2 added:
       Name: VLAN0002
       3512xl(vlan)#exit
       APPLY completed.
       Exiting....
       3512xl#configure terminal
       Enter configuration commands, one per line. End with CNTL/Z.
       3512xl(config)#interface fastEthernet 0/1
       3512xl(config-if)#switchport mode trunk
       3512xl(config-if)#switchport trunk encapsulation dot1q
       3512xl(config-if)#switchport trunk allowed vlan all
       3512xl(config-if)#exit
       3512xl(config)#interface fastEthernet 0/2
       3512xl(config-if)#switchport access vlan 2
       3512xl(config-if)#spanning-tree portfast
       3512xl(config-if)#exit
       3512xl(config)#interface fastEthernet 0/3
       3512xl(config-if)#spanning-tree portfast
       3512xl(config-if)#exit

       2.路由器上配置

       c2600(config)#interface fastEthernet 0/0
       c2600(config-if)#no shut
       c2600(config-if)#exit
       c2600(config)#interface fastEthernet 0/0.1
       c2600(config-subif)#encapsulation dot1q 1 native
       c2600(config-subif)#ip address 10.10.10.1 255.255.255.0
       c2600(config-subif)#exit
       c2600(config)#interface fastEthernet 0/0.2
       c2600(config-subif)#encapsulation isl 2
       c2600(config-subif)#encapsulation dot1q 2
       c2600(config-subif)#ip address 10.10.11.1 255.255.255.0
       c2600(config-subif)#exit

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章