158文章网欢迎您
您的位置:158文章网 > 范文示例 > 思科交换机常用命令汇总1-以太网和vlan

思科交换机常用命令汇总1-以太网和vlan

作者:158文章网日期:

返回目录:范文示例

今天小编给各位分享思科交换机命令的知识,文中也会对其通过思科交换机常用命令汇总1-以太网和vlan和求:思科3640交换机查看vlan命令和配置命令和配置以太网接口命令.等多篇文章进行知识讲解,如果文章内容对您有帮助,别忘了关注本站,现在进入正文!

内容导航:
  • 思科交换机常用命令汇总1-以太网和vlan
  • 求:思科3640交换机查看vlan命令和配置命令和配置以太网接口命令.
  • Cisco交换机VLAN与TRUNK链路配置命令
  • cisco 交换机常用命令有哪些
  • 一、思科交换机常用命令汇总1-以太网和vlan

    1. 以太网

    1. 接口MTU和ip MTU

    Switch(config-if)#mtu 1500

    Switch(config-if)#ip mtu 1500

    Switch#sh int s1/0

    Switch#sh ip int s1/0

    2. 管理MAC表

    48位,点分十六进制表示

    Switch#show mac address-table

    Switch#clear mac address-table

    Switch(config)#mac address-table static aaaa.bbbb.cccc vlan 10 interface e0/0

    2. 二层交换

    1. Protected port

    Switch(config-if)#switchport protected

    2. Native Vlan

    Switch(config-if)#switchport trunk native vlan 10

    Switch(config)#vlan dot1q tag native

    配置对native vlan也打标签

    Vlan范围:(dot1q)

    3. Trunk配置

    ISL:支持1-1005个vlan编号

    DOT1Q:支持1-4094个vlan编号

    Switch(config-if)#switchport mode access

    将接口设置为access模式

    Switch(config-if)#switchport trunk encapsulation {dot1q | ISL | negotiate }

    Switch(config-if)#switchport mode {auto | desirable |trunk}

    Switch#show interface f0/8 switchport

    将接口设置为DTP动态协商,可auto或desirable

    Switch(config-if)#switchport nonegotiate

    将接口设置为nonegotiate,不发送DTP帧,如果配置为非协商,那么必须手工配置接口模式为access或trunk

    Switch(config-if)#switchport mode dynamic [auto | desirable]

    配置接口为协商模式

    Switch#show interface trunk 查看trunk状态

    Switch#show interfaces fa0/0 switchport 查看接口二层trunk信息

    Switch(config-if)#switchport trunk allowed vlan {WORD | add | all | except | none | remove}

    Switch1(config-if)#switchport trunk allowed vlan ?

    WORD VLAN IDs of the allowed VLANs when this port is in trunking mode

    add add VLANs to the current list

    all all VLANs

    except all VLANs except the following

    none no VLANs

    remove remove VLANs from the current list

    Switch(config-if)#switchport trunk allowed vlan remove 20

    Switch#show interface f0/8 switchport

    查看接口trunk/vlan/private-vlan信息

    4. VTP

    1. VTP配置

    Switch1(config)#vtp domain cisco

    Switch1(config)#vtp mode {server | client |transparent}

    Switch1(config)#vtp password 123456

    Switch1#sh vtp password

    2. VTP pruning

    Switch1#sh vtp status

    3. 查看trunk及allowed vlan状态

    Switch1#sh int trunk

    4. VTP pruning

    Switch2(config)#vtp pruning

    开启VTP修剪

    Switch1#sh vtp status

    查看VTP状态

    5. 私有VLAN(PVLAN)

    1. 创建主VLAN:

    Vlan 100

    Private-vlan primary

    2. 创建辅助VLAN

    Vlan 101

    Private-vlan community

    Vlan 102

    Private-vlan ioslate

    3. 配置主VLAN,将二层辅助VLAN关联到主VLAN

    Vlan 100

    Private-vlan association 101,102

    4. 将辅助VLAN映射到主VLAN的SVI接口,从而允许PVLAN入口流量的三层交换。

    Interface vlan 100

    Private-vlan mapping add 101,102

    5. 配置接口

    Interface f0/1

    Switchport mode private-vlan host

    Switchport private-vlan host-association 100 101 //关联主VLAN和辅助VLAN到接口

    Interface f0/2

    Switchport mode private-vlan host

    Switchport mode private-vlan host-association 100 102

    主机接口配置

    Interface f0/3

    Switchport mode private-vlan promiscuous

    Switchport private-vlan mapping add 100 101 //将端口映射到PLAN

    混杂端口配置

    6. 查看及验证

    Show pvlan mapping

    PLAN配置示例

    Sw(config)#vtp transparent

    Sw(config)#vlan 201

    Sw(config-vlan)#private-vlan isolated

    Sw(config)#vlan 202

    Sw(config-vlan)#private-vlan community

    Sw(config)#vlan 100

    Sw(config-vlan)#private-vlan primary

    Sw(config-vlan)#private-vlan association 201,202

    !

    Sw(config)#interface fa0/24

    Sw(config-if)#switchport mode private-vlan promiscuous

    Sw(config-if)#switchport mode private-vlan mapping 100 201,202

    Sw(config)#interface range fa 0/1 - 2

    Sw(config-if)#switchport mode private-vlan host

    Sw(config-if)#switchport private-vlan host-association 100 202

    Sw(config)#interface range fa 0/3 - 4

    Sw(config-if)#switchport mode private-vlan host

    Sw(config-if)#switchport private-vlan host-association 100 201

    一、求:思科3640交换机查看vlan命令和配置命令和配置以太网接口命令.

    1、查看vlan命令:

    Switch#show vlan    #查看vlan数据库,vlan信息和所属接口

    2、配置VLAN命令(交换机配置VLAN,并给将端口加入到该VLAN为例):

    cisco-sw1(config)#vlan 2

    cisco-sw1(config-vlan)#name test

    cisco-sw1(config-vlan)#exit

    cisco-sw1(config)#interface fastEthernet 0/1

    cisco-sw1(config-if)#switchport mode access

    cisco-sw1(config-if)#switchport access vlan 2

    3、接口配置命令(进入交换机某一端口)

    switch> enable

    switch#configure terminal

    switch(conf)# interface fastehernet 0/1

    switch(conf-if)#

    扩展资料:

    思科交换机其他查看和配置命令:

    1、Switch#show running-config#查看运行配置,可以通过回车键逐行显示,也可通过空格键逐页显示

    2、Switch#show version#查看设备软件版本信息

    3、Switch#show clock#查看系统时钟也可用于查看log日志后对应时钟分析异常log的发起时间

    4、Switch#show log#查看日志,如接口异常关闭,链路的通断,主备机切换

    5、Switch#show interface#查看接口详细状态,如IP地址、MAC地址、带宽负载及输入输出速率等

    6、Switch#show interface description#快速查看接口连接状态与描述

    7、Switch#show interface status#快速查看接口状态及所属vlan及速率双工

    8、Switch#show cdp neighbor#查看CDP邻居,CDP协议属于思科私有协议,只能用于查看思科设备,可以查看设备的物理链路状态和连接接口管理地址

    9、Switch#show mac-addess-table [dynamic]#查看交换机的MAC地址,括号里面是可选项

    二、Cisco交换机VLAN与TRUNK链路配置命令

    你还在为Cisco交换机VLAN与TRUNK链路配置命令而烦恼么?不用担心,接下来是我为大家收集的Cisco交换机VLAN与TRUNK链路配置命令,欢迎大家阅读:
      Cisco交换机VLAN与TRUNK链路配置命令的方法
      在2950系列交换机上配置VLAN

      (1)使用vlan database命令进入VLAN配置模式

      C2950A#vlan database

      (2)创建VLAN

      C2950A(vlan)#vlan 2

      (3)划分VLAN(将交换机的2-14,23端口划入VLAN 2)

      C2950(config)#interface range f0/2-14

      C2950(config-if-range)#switchport mode access

      C2950(config-if-range)#switchport access vlan 2

      C2950(config)#interface f0/3

      C2950(config-if)#switchport mode access

      C2950(config-if)#switchport access vlan 2

      (4)查看vlan信息

      C2950#show vlan

      (5) 删除配置(删除VLAN 100下的端口)

      C2950(config)#interface range f0/2-14

      C2950(config-if-range)#no switchport access vlan 2

      配置Trunk的过程:

      (1) 选择需要的接口,进入接口配置模式

      Switch(config)# interface f0/24

      (2) 在接口配置模式下直接配置中继

      Switch (config-if)#switchport mode trunk

      (3) 添加VLAN(VID)

      Switch (config-if)#switchport trunk allowed vlan all

    看了“Cisco交换机VLAN与TRUNK链路配置命令”还想看:

    1. 思科交换机配置命令教程

    2. 2015年网络工程师学习笔记:交换机及其配置

    3. cisco交换机怎么配置vlan与trunk

    4. 思科交换机配置教程详解

    5. 交换机如何配置vlan及turnk口

    6. h3c交换机配置命令详细解释

    7. 华为交换机配置的命令有哪些

    三、cisco 交换机常用命令有哪些

    1.在基于IOS的交换机上设置主机名/系统名:
    switch(config)# hostname hostname
    在基于CLI的交换机上设置主机名/系统名:
    switch(enable) set system name name-string
    2.在基于IOS的交换机上设置登录口令:
    switch(config)# enable password level 1 password
    在基于CLI的交换机上设置登录口令:
    switch(enable) set password
    switch(enable) set enalbepass
    3.在基于IOS的交换机上设置远程访问:
    switch(config)# interface vlan 1
    switch(config-if)# ip address ip-address netmask
    switch(config-if)# ip default-gateway ip-address
    在基于CLI的交换机上设置远程访问:
    switch(enable) set interface sc0 ip-address netmask broadcast-address
    switch(enable) set interface sc0 vlan
    switch(enable) set ip route default gateway
    4.在基于IOS的交换机上启用和浏览CDP信息:
    switch(config-if)# cdp enable
    switch(config-if)# no cdp enable
    为了查看Cisco邻接设备的CDP通告信息:
    switch# show cdp interface [type modle/port]
    switch# show cdp neighbors [type module/port] [detail]
    在基于CLI的交换机上启用和浏览CDP信息:
    switch(enable) set cdp {enable|disable} module/port
    为了查看Cisco邻接设备的CDP通告信息:
    switch(enable) show cdp neighbors[module/port] [vlan|duplex|capabilities|detail]
    5.基于IOS的交换机的端口描述:
    switch(config-if)# description description-string
    基于CLI的交换机的端口描述:
    switch(enable)set port name module/number description-string
    6.在基于IOS的交换机上设置端口速度:
    switch(config-if)# speed{10|100|auto}
    在基于CLI的交换机上设置端口速度:
    switch(enable) set port speed moudle/number {10|100|auto}
    switch(enable) set port speed moudle/number {4|16|auto}
    7.在基于IOS的交换机上设置以太网的链路模式:
    switch(config-if)# duplex {auto|full|half}
    在基于CLI的交换机上设置以太网的链路模式:
    switch(enable) set port duplex module/number {full|half}
    8.在基于IOS的交换机上配置静态VLAN:
    switch# vlan database
    switch(vlan)# vlan vlan-num name vla
    switch(vlan)# exit
    switch# configure teriminal
    switch(config)# interface interface module/number
    switch(config-if)# switchport mode access
    switch(config-if)# switchport access vlan vlan-num
    switch(config-if)# end
    在基于CLI的交换机上配置静态VLAN:
    switch(enable) set vlan vlan-num [name name]
    switch(enable) set vlan vlan-num mod-num/port-list
    9. 在基于IOS的交换机上配置VLAN中继线:
    switch(config)# interface interface mod/port
    switch(config-if)# switchport mode trunk
    switch(config-if)# switchport trunk encapsulation {isl|dotlq}
    switch(config-if)# switchport trunk allowed vlan remove vlan-list
    switch(config-if)# switchport trunk allowed vlan add vlan-list
    在基于CLI的交换机上配置VLAN中继线:
    switch(enable) set trunk module/port [on|off|desirable|auto|nonegotiate]
    Vlan-range [isl|dotlq|dotl0|lane|negotiate]
    10.在基于IOS的交换机上配置VTP管理域:
    switch# vlan database
    switch(vlan)# vtp domain domain-name
    在基于CLI的交换机上配置VTP管理域:
    switch(enable) set vtp [domain domain-name]
    11.在基于IOS的交换机上配置VTP 模式:
    switch# vlan database
    switch(vlan)# vtp domain domain-name
    switch(vlan)# vtp {sever|cilent|transparent}
    switch(vlan)# vtp password password
    在基于CLI的交换机上配置VTP 模式:
    switch(enable) set vtp [domain domain-name] [mode{ sever|cilent|transparent }][password password]
    12. 在基于IOS的交换机上配置VTP版本:
    switch# vlan database
    switch(vlan)# vtp v2-mode
    在基于CLI的交换机上配置VTP版本:
    switch(enable) set vtp v2 enable
    13. 在基于IOS的交换机上启动VTP剪裁:
    switch# vlan database
    switch(vlan)# vtp pruning
    在基于CL I 的交换机上启动VTP剪裁:
    switch(enable) set vtp pruning enable
    14.在基于IOS的交换机上配置以太信道:
    switch(config-if)# port group group-number [distribution {source|destination}]
    在基于CLI的交换机上配置以太信道:
    switch(enable) set port channel moudle/port-range mode{on|off|desirable|auto}
    15.在基于IOS的交换机上调整根路径成本:
    switch(config-if)# spanning-tree [vlan vlan-list] cost cost
    在基于CLI的交换机上调整根路径成本:
    switch(enable) set spantree portcost moudle/port cost
    switch(enable) set spantree portvlancost moudle/port [cost cost][vlan-list]
    16.在基于IOS的交换机上调整端口ID:
    switch(config-if)# spanning-tree[vlan vlan-list]port-priority port-priority
    在基于CLI的交换机上调整端口ID:
    switch(enable) set spantree portpri {mldule/port}priority
    switch(enable) set spantree portvlanpri {module/port}priority [vlans]
    17. 在基于IOS的交换机上修改STP时钟:
    switch(config)# spanning-tree [vlan vlan-list] hello-time seconds
    switch(config)# spanning-tree [vlan vlan-list] forward-time seconds
    switch(config)# spanning-tree [vlan vlan-list] max-age seconds
    在基于CLI的交换机上修改STP时钟:
    switch(enable) set spantree hello interval[vlan]
    switch(enable) set spantree fwddelay delay [vlan]
    switch(enable) set spantree maxage agingtiame[vlan]
    18. 在基于IOS的交换机端口上启用或禁用Port Fast 特征:
    switch(config-if)#spanning-tree portfast
    在基于CLI的交换机端口上启用或禁用Port Fast 特征:
    switch(enable) set spantree portfast {module/port}{enable|disable}
    19. 在基于IOS的交换机端口上启用或禁用UplinkFast 特征:
    switch(config)# spanning-tree uplinkfast [max-update-rate pkts-per-second]
    在基于CLI的交换机端口上启用或禁用UplinkFast 特征:
    switch(enable) set spantree uplinkfast {enable|disable}[rate update-rate] [all-protocols off|on] 20. 为了将交换机配置成一个集群的命令交换机,首先要给管理接口分配一个IP地址,然后使用下列命令: switch(config)# cluster enable cluster-name cv

    关于思科交换机命令的问题,通过《Cisco交换机VLAN与TRUNK链路配置命令》、《cisco 交换机常用命令有哪些》等文章的解答希望已经帮助到您了!如您想了解更多关于思科交换机命令的相关信息,请到本站进行查找!

    相关阅读

    • 思科交换机常用命令汇总1-以太网和vlan

    • 158文章网范文示例
    • 今天小编给各位分享思科交换机命令的知识,文中也会对其通过思科交换机常用命令汇总1-以太网和vlan和求:思科3640交换机查看vlan命令和配置命令和配置以太网接口命令.等多篇文章进
    • 思科交换机常用命令汇总2-Spanning-Tree

    • 158文章网范文示例
    • 今天小编给各位分享思科交换机命令的知识,文中也会对其通过思科交换机常用命令汇总2-Spanning-Tree和cisco交换机安全配置设定命令等多篇文章进行知识讲解,如果文章内容对您有帮助
    • 华为/思科/华三基本命令对比表格

    • 158文章网范文示例
    • 今天小编给各位分享思科交换机命令的知识,文中也会对其通过华为/思科/华三基本命令对比表格和思科 华为 华为3COM和锐捷之间的命令比较等多篇文章进行知识讲解,如果文章内容对
    关键词不能为空

    范文示例_作文写作_作文欣赏_故事分享_158文章网