交换机相关配置

 sun   2012-11-26 20:57   1716 人阅读  0 条评论

 


vtp配置

Switch#enable    //进入特权模式

 

 Switch#conf t    //进入配置模式

 

 Switch(config)#vtp domain tuoyu      //起一个vtp域名

 

 Switch(config)#vtp mode server     //将vtp模式改为服务器模式

 

 Switch(config)#vtp mode client     //将vtp模式改为客户端模式

 

 Switch(config)#vtp mode transparent    //将vtp模式改为透明模式

   

 Switch(config)#vtp password 123         //vtp密码设置为123

 

 Switch(config)#vtp version 2          //启用vtp版本2

 

 Switch(config)#vtp pruning    //启用vtp修剪

 

 Switch#show vtp status   //查看vtp配置信息

 VTP Version                     : 2---->最大支持两个版本

 Configuration Revision          : 0---->当前的配置修订号为0

 Maximum VLANs supported locally : 255

 Number of existing VLANs        : 7---->vtp域中当前存在7个vlan

 VTP Operating Mode              : Transparent---->当前vtp域的模式为透明模式

 VTP Domain Name                 : tuoyu----->vtp的域名为tuoyu

 VTP Pruning Mode                : Disabled---->vtp的修剪没有启用

 VTP V2 Mode                     : Enabled---->已经开启vtp的版本2模式

 VTP Traps Generation            : Disabled

 MD5 digest                      : 0x5D 0x0D 0xA0 0x47 0xB4 0x2E 0x13 0xF4

 Configuration last modified by 1.1.1.1 at 3-1-93 00:21:59   //1.1.1.1代表最后一次更新者是谁

 

 

stp配置

Switch(config)#spanning-tree vlan 1 priority 4096    //修改vlan1的根网桥优先级

 

 Switch(config)#spanning-tree vlan 1 root primary    //修改vlan1在交换机的根桥位置

 

 Switch(config)#spanning-tree vlan 1 root secondary   

 

 Switch(config)#spanning-tree vlan 2 root primary 

 

 Switch(config)#spanning-tree vlan 2 root secondary 

 

 Switch#show spanning-tree vlan 1   //查看vlan1的生成树信息

 VLAN0001

   Spanning tree enabled protocol ieee

   Root ID    Priority    28673---->根网桥优先级

              Address     000A.4170.594C---->根网桥MAC

              Cost        19

              Port        2(FastEthernet0/2)

              Hello Time  2 sec  Max Age 20 sec  Forward Delay 15 sec

 

   Bridge ID  Priority    32769  (priority 32769 sys-id-ext 1)-->自己网桥优先级

              Address     0002.1638.45B2--->自己网桥mac地址

              Hello Time  2 sec  Max Age 20 sec  Forward Delay 15 sec

              Aging Time  20

 

 Interface        Role Sts Cost      Prio.Nbr Type

 ---------------- ---- --- --------- -------- --------------------------------

 Fa0/1            Altn BLK 19        128.1    P2p----->接口状态为阻塞(BLK)

 Fa0/2            Root FWD 19        128.2    P2p----->接口状态为转发 (FWD)

 

 

交换实验复习


1、telnet

 

 1)int vlan 1 

    ip add 192.168.1.3 255.255.255.0

    no sh

 2) line vty 0 15

    password cisco

    login

    enable password 123

 

 2、port-security

 

 1)int f0/0

   switchport mode access

   switchport port-security

   switchport port-security maxiuam 2

   switchport port-security violation [shutdown/protect/restrict]

 2)1)int f0/0

   switchport mode access

   switchport port-security

   switchport port-security mac-address aaaa.aaaa.aaaa

   switchport port-security mac-address bbbb.bbbb.bbbb

   switchport port-security violation [shutdown/protect/restrict]

 

 3、CDP协议:cisco私有协议,默认是开启的

    作用:在某台设备上看它的邻居信息

    

    no cdp run

    cdp run

    

    int f0/0

    no cdp enable

    cdp enable

 

    show cdp neighbors

    show cdp neighbors detail

    show cdp entry *

 

 4、vlan:二层上隔离广播

 

  1)config t

    vlan 10

      name tuoyu

      exit

 

    #vlan database

    (vlan)#vlan 100 name cisco

    (vlan)#exit

  2)int f0/0

    switchport access vlan 10

    int range f0/10 - 20

    switchport access vlan 100

  3)show vlan

    show vlan brief

 

 5、turnk:承载多个vlan的数据

 

 1) int f0/0

    switchport trunk enc [dot1q/isl]

    switchport mode trunk

    switchport trunk allowd vlan remove 2

    switchport trunk allowd vlan add 2

 2) show run

    show int trunk

 

 6、vtp协议:集中配置管理vlan(vlan的添加删除更改)

 

  

 1)int f0/0

   switchport mode trunk

   vtp domain tuoyu

   vtp mode [server/client/transparent]

   vtp version 2

   vtp pruning

   vtp password 123

 

 2)show vtp status

   show vlan

 

 

单臂路由配置

 

 


Router>enable    //进入特权模式

 

 Router#config t    //进入配置模式

 

 Router(config)#int f0/0      //进入真实接口

  

 Router(config-if)#no ip address    //删除ip地址

 

 Router(config-if)#no shutdown     //开启接口

 

 Router(config-if)#exit   //退出真实接口

 

 Router(config)#int f0/0.1    //进入第一个子接口

 

 Router(config-subif)#encapsulation dot1Q 2   //这个子接口封装dot1Q作为vlan2的网关

 

 Router(config-subif)#ip address 192.168.1.254 255.255.255.0   //配置vlan2的网关

 

 Router(config-subif)#exit   //退出子接口

 

 Router(config)#int f0/0.2    //进入第二个子接口

 

 Router(config-subif)#encapsulation dot1Q 3  //这个子接口封装dot1Q作为vlan3的网关

 

 Router(config-subif)#ip address 192.168.2.254 255.255.255.0   //配置vlan3的网关

 

 Router(config-subif)#end    //退到特权模式

 

 Router#show ip int brief     //查看接口的子接口摘要信息


 

 

 

 

 

 

 


 


本文地址:https://blog.wuliaowang.cn/post/86.html
温馨提示:文章内容系作者个人观点,不代表只有云知道对观点赞同或支持。
版权声明:本文为转载文章,来源于 sun ,版权归原作者所有,欢迎分享本文,转载请保留出处!

评论已关闭!