vlan的基本配置1

 VLAN的基本命令

1.交换机上配置IP 

1. 命名Switch(config)# host S2950

2.         配置IP

S2950(config)# int vlan 1    管理VLAN

          S2950(config-if)# ip add 192.168.1.210 255.255.255.0

    3.  S2950(config)# ip default-gateway 192.168.1.251

                    目的:方便其它网段SW进行Telnet远程管理。

    4.查看MAC表。

         S2950#sh mac-add

5.设置双工和速率。

         S2950(config)# int f0/1

         S2950(config-if)#speed 10 / 100 / auto    

             S2950(config-if)#duplex half / full / auto

2.Vlan的配置

  1.      划分VLAN

   S2950config# vlan 2

   S2950config# vlan 2-4

   S2950config# vlan 2-4,10,20,30

  2.   将端口划到VLAN

    S2924config# int f0/3

                   # switchport mode access

                   # sw acc vlan 2

   S2950config# int range f0/3  –  4

   S2950(config-range-if)# sw mode acc

   S2950(config-range-if)sw acc vlan 2

3.   将接口配置成trunk.

    

 

    S3560config# int  f0/ 24

    S35600(config-range-if)# sw  trunk  encapsulation  isl

                                                       dotlq 2950 默认)

    S35600(config-range-if)# sw mode trunk

    S35600(config-range-if)sw nonegotiate

4.   VTP

      S3560config# vtp  domain  wq.com   域名必须设置

                     # vtp  mode  server(服务器)/ client(客户端)/ transparent(透明模式)

                     #vtp  pass  cisco     密码为可选

5.      单臂路由(在交换机的接口配置成trunk模式,路由器上配置命令如下:)

         R1config#int f0/1

         R1config-if#no shutdown

         R1config-if)#inf f0/1.2(vlan2)

         R1(config-subif)#encapsulation dot1Q 2

         R1(config-subif)#ip add 192.168.2.254 255.255.255.0

         R1config-if)#inf f0/1.3(vlan3)

 

         R1(config-subif)#encapsulation dot1Q 3

         R1(config-subif)#ip add 192.168.3.254 255.255.255.0

         R1(config-subif)#exit 

 

 

 

          

 

 

 

         

       

      

            

             

   

       

 

   

 

 

 

你可能感兴趣的:(VLAN)