亚洲欧美精品沙发,日韩在线精品视频,亚洲Av每日更新在线观看,亚洲国产另类一区在线5

<pre id="hdphd"></pre>

  • <div id="hdphd"><small id="hdphd"></small></div>
      學(xué)習(xí)啦 > 學(xué)習(xí)電腦 > 網(wǎng)絡(luò)知識(shí) > 路由器 > 路由器設(shè)置 > cisco思科 > cisco vlan 設(shè)置

      cisco vlan 設(shè)置

      時(shí)間: 春健736 分享

      cisco vlan 設(shè)置

        虛擬局域網(wǎng)(VLAN)是一組邏輯上的設(shè)備和用戶(hù),這些設(shè)備和用戶(hù)并不受物理位置的限制,可以根據(jù)功能、部門(mén)及應(yīng)用等因素將它們組織起來(lái),相互之間的通信就好像它們?cè)谕粋€(gè)網(wǎng)段中一樣。那么在cisco中如何配置vlan呢?學(xué)習(xí)啦小編整理了相關(guān)資料,供大家參考。

        Cisco IOS中有兩種方式創(chuàng)建vlan,在全局模式下使用vlan vlanid命令,如switch(config)#vlan 10; 在vlan database 下創(chuàng)建vlan ,如 switch(vlan)#vlan 20;

        交換機(jī)配置:

        復(fù)制代碼

        代碼如下:

        Switch>enable

        Switch#configure terminal

        Enter configuration commands, one per line. End with CNTL/Z

        Switch(config)#vlan 10

        Switch(config-vlan)#name Math

        Switch(config-vlan)#exit

        Switch(config)#exit

        Switch#

        %SYS-5-CONFIG_I: Configured from console by console

        Switch#vlan database

        % Warning: It is recommended to configure VLAN from config mode,

        as VLAN database mode is being deprecated. Please consult user

        documentation for configuring VTP/VLAN in config mode.

        Switch(vlan)#vlan 20 name Chinese

        VLAN 20 added:

        Name: Chinese

        Switch(vlan)#vlan 30 name Other

        VLAN 30 added:

        Name: Other

        Switch(vlan)#exit

        APPLY completed.

        Exiting....

        Switch#configure terminal

        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)#switchport access vlan 10

        Switch(config-if)#exit

        Switch(config)#interface fastEthernet 0/2

        Switch(config-if)#switchport mode access

        Switch(config-if)#switchport access vlan 10

        Switch(config-if)#exit

        Switch(config)#interface range fastEthernet 0/3-6

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

        Switch(config-if-range)#switchport access vlan 20

        Switch(config-if-range)#exit

        Switch(config)#interface range fastEthernet 0/7-9

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

        Switch(config-if-range)#switchport access vlan 30

        Switch(config-if-range)#exit

        Switch(config)#exit

        Switch#

        %SYS-5-CONFIG_I: Configured from console by console

        Switch#show vlan

        VLAN Name StatusPorts

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

        1defaultactiveFa0/10, Fa0/11, Fa0/12, Fa0/13

        Fa0/14, Fa0/15, Fa0/16, Fa0/17

        Fa0/18, Fa0/19, Fa0/20, Fa0/21

        Fa0/22, Fa0/23, Fa0/24

        10 Math activeFa0/1, Fa0/2

        20 ChineseactiveFa0/3, Fa0/4, Fa0/5, Fa0/6

        30 OtheractiveFa0/7, Fa0/8, Fa0/9

        1002 fddi-default act/unsup

        1003 token-ring-default act/unsup

        1004 fddinet-defaultact/unsup

        1005 trnet-defaultact/unsup

        VLAN TypeSAID MTU Parent RingNo BridgeNo StpBrdgMode Trans1 Trans2

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

        1enet100001 1500-----00

        10 enet100010 1500-----00

        20 enet100020 1500-----00

        30 enet100030 1500-----00

        1002 fddi101002 1500-----00

        1003 tr101003 1500-----00

        1004 fdnet 101004 1500---ieee -00

        1005 trnet 101005 1500---ibm-00

        Remote SPAN VLANs

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

        Primary Secondary TypePorts

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

        Switch#

        //為VLAN配置ip地址(就是默認(rèn)網(wǎng)關(guān))

        Switch(config)#interface vlan 10

        Switch(config-if)#

        %LINK-5-CHANGED: Interface Vlan10, changed state to up

        Switch(config-if)#ip address 192.168.1.1 255.255.255.0

        Switch(config-if)#no shutdown

        Switch(config-if)#exit

        Switch(config)#interface vlan 20

        Switch(config-if)#

        %LINK-5-CHANGED: Interface Vlan20, changed state to up

        Switch(config-if)#ip address 192.168.2.1 255.255.255.0

        Switch(config-if)#no shutdown

        Switch(config-if)#exit

        Switch(config)#interface vlan 30

        Switch(config-if)#

        %LINK-5-CHANGED: Interface Vlan30, changed state to up

        Switch(config-if)#ip address 192.168.3.1 255.255.255.0

        Switch(config-if)#no shutdown

        Switch(config-if)#exit

        PC設(shè)置:

        互ping截圖:

        以上就是小編為大家?guī)?lái)的cisco vlan 設(shè)置方法介紹,都是些簡(jiǎn)單的配置,適合新手學(xué)習(xí),希望可以幫到大家哦!

      544765