zoukankan      html  css  js  c++  java
  • vlan 间路由 多层交换机

    VLAN间路由:

      -多层交换机

       1、配置网关IP

                      interface vlan 10   //配置 vlan 10 的网关IP;

                     no shutdown 

                     ip address 192.168.10.254       255.255.255.0

                 

                       interface vlan 20 

                     no shutdown 

                     ip address 192.168.20.254        255.255.255.0

                 

                        interface vlan 30 

                     no shutdown 

                     ip address 192.168.30.254         255.255.255.0

    网关的概念就是接口

     2、启用路由功能

            GW(config)# ip routing 

            

     3、配置多层交换机与普通交换机的级联链路 

                GW(config)#      interface    fas0/3 

              GW(config-if)#    switchport   trunk   encap   dot1q

              GW(config-if)#     switchport   mode   trunk 

              

              SW1(config)#interface fas0/3 

              SW1(config-if)#switchport mode trunk 

        4、验证与测试

               GW# show ip interface brief

                  GW# show ip route 

                  GW# show interface trunk 

    注意:

        任何一个 VLAN 都对应一个 SVI(交换虚拟端口);

           该VLAN中的所有的成员主机的网关IP地址都为该 SVI 

           口配置的 IP 地址;

    SVI:switch virtual interface ;

  • 相关阅读:
    页面中多个小图片元素合成一个大图片之后用CSS调用
    腾讯设计中心博客
    php 配置 curl , gd , openssl , mbstring
    Apache开启Rewrite环境
    防止入侵:My SQL各种攻击方法大全
    Css背景图合并工具功能增强
    php防CC攻击代码
    网站地址栏的图标代码
    PHP漏洞全解(一)PHP网页的安全性问题
    用PHP实现飞信api接口发飞信短信
  • 原文地址:https://www.cnblogs.com/pangcw/p/8379441.html
Copyright © 2011-2022 走看看