zoukankan      html  css  js  c++  java
  • 交换机基础配置之结合以太通道的vlan设置

    拓扑图如下

    Switch0配置

          enable  进入特权模式

          configure terminal   进入全局模式

          interface port-channel 5  创建以太通道

          switchport trunk encapsulation  将通道进行封装

          switchport mode trunk  将通道修改为trunk模式  

          exit   返回上一级

          interface range f0/10-11  进入端口

          channel-group 5 mode on  将端口划分到通道中

          exit  返回上一级

          vlan 10  创建vlan10

          vlan 20  创建vlan20

          interface f0/1  进入端口

          switchport mode access  将端口模式修改为access

          switchport access vlan 10  将端口划分到vlan10

          interface f0/2  进入端口

          switchport mode access  将端口模式修改为access

          switchport access vlan 20  将端口划分到vlan20

          end  返回特权模式

          copy running-config startup-config   保存

    Switch1配置

           enable  进入特权模式

          configure terminal   进入全局模式

          interface port-channel 5  创建以太通道

          switchport trunk encapsulation  将通道进行封装

          switchport mode trunk  将通道修改为trunk模式  

          exit   返回上一级

          interface range f0/10-11  进入端口

          channel-group 5 mode on  将端口划分到通道中

          exit  返回上一级

          vlan 10  创建vlan10

          vlan 20  创建vlan20

          interface f0/1  进入端口

          switchport mode access  将端口模式修改为access

          switchport access vlan 10  将端口划分到vlan10

          interface f0/2  进入端口

          switchport mode access  将端口模式修改为access

          switchport access vlan 20  将端口划分到vlan20

         end  返回特权模式

          copy running-config startup-config   保存

  • 相关阅读:
    linux kernel ftrace 之wakeup tracer and wakeup_rt tracer
    urb传输的代码分析
    open/ioctl in kernel
    淺談C51記憶體優化(data idata xdata)
    8051 XDATA
    Android.bp
    android bionic
    echo +80 > /sys/class/rtc/rtc0/wakealarm
    高清地图下载
    更新和删除数据
  • 原文地址:https://www.cnblogs.com/ruanjie/p/9197336.html
Copyright © 2011-2022 走看看