zoukankan      html  css  js  c++  java
  • 配置DTP

    拓扑一  结果:NO

    默认auto(被动)模式

    Switch>show interfaces fastEthernet 0/1 switchPort 
    Name: Fa0/1
    Switchport: Enabled
    Administrative Mode: dynamic auto
    Operational Mode: static access
    Administrative Trunking Encapsulation: dot1q
    Operational Trunking Encapsulation: native
    Negotiation of Trunking: On
    Access Mode VLAN: 1 (default)
    Trunking Native Mode VLAN: 1 (default)
    Voice VLAN: none
    Administrative private-vlan host-association: none
    Administrative private-vlan mapping: none
    Administrative private-vlan trunk native VLAN: none
    Administrative private-vlan trunk encapsulation: dot1q
    Administrative private-vlan trunk normal VLANs: none
    Administrative private-vlan trunk private VLANs: none
    Operational private-vlan: none
    Trunking VLANs Enabled: ALL
    Pruning VLANs Enabled: 2-1001
    Capture Mode Disabled
    Capture VLANs Allowed: ALL
    Protected: false

    Switch>show interfaces trunk

    Switch>

     

    拓扑二   结果:YES

    修改2端主动模式(desirable)

    Switch>en
    Switch#conf t
    Enter configuration commands, one per line.  End with CNTL/Z.
    
    Switch(config)#interface fastEthernet 0/1
    
    Switch(config-if)#switchport mode dynamic desirable 
    
    Switch(config-if)#
    %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up
    
    %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down
    
    %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up

    Switch#show interfaces trunk

    Port Mode Encapsulation Status Native vlan

    Fa0/1 desirable n-802.1q trunking 1

    Port Vlans allowed on trunk

    Fa0/1 1-1005

    Port Vlans allowed and active in management domain

    Fa0/1 1

    Port Vlans in spanning tree forwarding state and not pruned

    Fa0/1 1

    拓扑三  结果:YES

    修改一端主动模式(desirable)

    Switch>en
    Switch#conf t
    
    Switch(config)#interface fastEthernet 0/1
    
    Switch(config-if)#switchport mode dynamic desirable 
    
    
    %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up
    
    %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down
    
    %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up

    Switch#show interfaces trunk

    Port Mode Encapsulation Status Native vlan

    Fa0/1 desirable n-802.1q trunking 1

    Port Vlans allowed on trunk

    Fa0/1 1-1005

    Port Vlans allowed and active in management domain

    Fa0/1 1

    Port Vlans in spanning tree forwarding state and not pruned

    Fa0/1 1

    拓扑四 结果:YES

    修改一端 trunk

    Switch>en
    Switch#conf
    Configuring from terminal, memory, or network [terminal]? conf t
    ?Must be "terminal", "memory" or "network"
    Switch#conf t
    Enter configuration commands, one per line.  End with CNTL/Z.
    
    Switch(config)#interface  fastEthernet 0/1
    
    Switch(config-if)#switchport mode trunk 
    
    Switch(config-if)#
    %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down
    
    %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up
    
    
    Switch#show interfaces trunk 
    Port        Mode         Encapsulation  Status        Native vlan
    Fa0/1       on           802.1q         trunking      1
    
    Port        Vlans allowed on trunk
    Fa0/1       1-1005
    
    Port        Vlans allowed and active in management domain
    Fa0/1       1
    
    Port        Vlans in spanning tree forwarding state and not pruned
    Fa0/1       1

    默认auto,修改desirable

    Switch>en
    Switch#conf t
    Enter configuration commands, one per line.  End with CNTL/Z.
    
    
    Switch(config)#interface fastEthernet 0/1
    
    Switch(config-if)#switchport mode dynamic desirable 
    
    Switch(config-if)#
    %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up
    
    Switch(config-if)#end
    Switch#
    %SYS-5-CONFIG_I: Configured from console by console
     
    
    Switch#show interfaces  trunk 
    Port        Mode         Encapsulation  Status        Native vlan
    Fa0/1       desirable    n-802.1q       trunking      1
    
    Port        Vlans allowed on trunk
    Fa0/1       1-1005
    
    Port        Vlans allowed and active in management domain
    Fa0/1       1
    
    Port        Vlans in spanning tree forwarding state and not 

    拓扑五  结果:NO

    修改一端 access

    Switch>en
    Switch#conf t
    Enter configuration commands, one per line.  End with CNTL/Z.
    
    Switch(config)#interface fastEthernet 0/1
    
    Switch(config-if)#switchport mode access 
    
    Switch(config-if)#end
    
    %SYS-5-CONFIG_I: Configured from console by console
    s
    % Ambiguous command: "s"
    
    Switch#show interfaces trunk 

    默认auto,修改desirable

    Switch>en
    Switch#conf t
    Enter configuration commands, one per line.  End with CNTL/Z.
    
    Switch(config)#interface fastEthernet 0/1
    
    Switch(config-if)#switchport mode dynamic desirable 
    
    Switch(config-if)#
    %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up
    
    Switch(config-if)#end
    Switch#
    %SYS-5-CONFIG_I: Configured from console by console
    
    
    Switch#show interfaces trunk 

    拓扑六  结果:YES

  • 相关阅读:
    Bzoj3555: [Ctsc2014]企鹅QQ
    Bzoj4259: 残缺的字符串
    CF528D Fuzzy Search
    Bzoj2738: 矩阵乘法
    Bzoj3309: DZY Loves Math
    Bzoj4540: [Hnoi2016]序列
    Bzoj2329: [HNOI2011]括号修复
    Bzoj1923: [Sdoi2010]外星千足虫
    Bzoj4004: [JLOI2015]装备购买
    Bzoj1951: [Sdoi2010]古代猪文
  • 原文地址:https://www.cnblogs.com/peter1007/p/9397432.html
Copyright © 2011-2022 走看看