中文字幕在线一区二区在线,久久久精品免费观看国产,无码日日模日日碰夜夜爽,天堂av在线最新版在线,日韩美精品无码一本二本三本,麻豆精品三级国产国语,精品无码AⅤ片,国产区在线观看视频

      cisco思科交換機(jī)配置篇

      時(shí)間:2024-08-01 23:06:46 思科認(rèn)證 我要投稿
      • 相關(guān)推薦

      cisco思科交換機(jī)配置篇

        要進(jìn)行思科交換機(jī)的配置,首先就得進(jìn)入交換機(jī)的全局配置模式,在成功連接交換機(jī)并且登陸成功進(jìn)入特權(quán)模式下,下面跟yjbys小編一起來(lái)學(xué)習(xí)一下思科交換機(jī)的配置命令吧!

        1、輸入進(jìn)入全局配置模式:

        switch#configure terminal

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

        switch(config)#

        switch(config)#

        switch(config)#

        這么簡(jiǎn)單的一條命令,俺們就進(jìn)入到全局配置模式了,還記得上一篇中查看端口所查詢到的信息中name字段下的值嗎?這字段其實(shí)代表的是交換機(jī)端口的描述信息

        2、修改端口描述

        switch#

        switch#

        switch#conf ter

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

        switch(config)#

        switch(config)#int fa0/3

        switch(config-if)#

        switch(config-if)#desc

        switch(config-if)#description updateDesc

        switch(config-if)#

        switch(config-if)#exit

        switch(config)#exit

        switch#

        switch#show inter

        switch#show interfaces statu

        switch#show interfaces status

        Port Name Status Vlan Duplex Speed Type

        Fa0/1 connected 1 a-full a-100 10/100BaseTX

        Fa0/2 h3c2.250 connected trunk a-full a-100 10/100BaseTX

        Fa0/3 updateDesc notconnect 1 auto auto 10/100BaseTX

        Fa0/4 connected 1 a-full a-100 10/100BaseTX

        Fa0/5 h3c-2.200 connected 1 a-full a-100 10/100BaseTX

        Fa0/6 notconnect 1 auto auto 10/100BaseTX

        修改描述的關(guān)鍵命令在于,在配置模式下,進(jìn)入到要修改的端口下,然后使用description + “內(nèi)容”!效果應(yīng)該很直觀了吧,接下來(lái)就是修改端口的所在Vlan了

        3、修改端口Vlan

        switch#

        switch#

        switch#conf t

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

        switch(config)#

        switch(config)#int fa0/3

        switch(config-if)#

        switch(config-if)#sw acc vl 2

        switch(config-if)#

        switch(config-if)#exit

        switch(config)#

        switch(config)#exit

        switch#

        switch#show inter statu

        Port Name Status Vlan Duplex Speed Type

        Fa0/1 connected 1 a-full a-100 10/100BaseTX

        Fa0/2 h3c2.250 connected trunk a-full a-100 10/100BaseTX

        Fa0/3 updateDesc notconnect 2 auto auto 10/100BaseTX

        Fa0/4 connected 1 a-full a-100 10/100BaseTX

        Fa0/5 h3c-2.200 connected 1 a-full a-100 10/100BaseTX

        Fa0/6 notconnect 1 auto auto 10/100BaseTX

        邏輯和修改端口描述是一樣的,對(duì)于配置來(lái)說(shuō),肯定是到了能有配置權(quán)限的地方和要配置的對(duì)象,這里修改端口Vlan的關(guān)鍵命令為:sw acc vl + vlantag,命令很明顯被簡(jiǎn)寫了,但是不影響執(zhí)行,命令的全寫為:switchport access vlan + vlantag

        還有一些對(duì)端口的簡(jiǎn)單操作,譬如修改端口的模式,

        4、修改端口模式

        switch(config-if)#switchport trunk encap dot1q ----------------設(shè)置vlan 中繼的封裝協(xié)議

        注:dot1q就是 IEEE 802.1Q協(xié)議,是vlan的一種封裝方式,是公有協(xié)議。還有一種trunk協(xié)議,是ISL,也是vlan的一種封裝方式,不過(guò)這是Cisco思科私有協(xié)議,其他廠商不能用。

        switch(config-if)#switchport mode trunk ------------------------設(shè)置端口類型為trunk

        switch(config-if)#switchport trunk allowed vlan 1,2 ---------設(shè)置允許的vlan,默認(rèn)不用配置,為所有vlan

        switch(config-if)#switchport trun native vlan 999 ---------------設(shè)置trunk口的native vlan

        5、端口狀態(tài)

        switch(config)#

        switch(config)#int fa0/3

        switch(config-if)#

        switch(config-if)#

        switch(config-if)#sw acc vl 1

        switch(config-if)#

        switch(config-if)#

        switch(config-if)#shutd

        switch(config-if)#shutdown

        switch(config-if)#

        switch(config-if)#exit

        switch(config)#

        switch(config)#exit

        switch#

        switch#show inter statu

        Port Name Status Vlan Duplex Speed Type

        Fa0/1 connected 1 a-full a-100 10/100BaseTX

        Fa0/2 h3c2.250 connected trunk a-full a-100 10/100BaseTX

        Fa0/3 updateDesc disabled 1 auto auto 10/100BaseTX

        Fa0/4 connected 1 a-full a-100 10/100BaseTX

        上面的一系列為切換Vlan,并且shutdown端口,這時(shí)候大家可能看到了交換機(jī)3號(hào)端口的狀態(tài)已變成disable了,如果我們要啟用端口只需

        switch#conf t

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

        switch(config)#

        switch(config)#int fa0/3

        switch(config-if)#

        switch(config-if)#no shut

        switch(config-if)#no shutdown

        switch(config-if)#

        switch(config-if)#exit

        switch(config)#

        switch(config)#exit

        switch#

        switch#show inter statu

        Port Name Status Vlan Duplex Speed Type

        Fa0/1 connected 1 a-full a-100 10/100BaseTX

        Fa0/2 h3c2.250 connected trunk a-full a-100 10/100BaseTX

        Fa0/3 updateDesc notconnect 1 auto auto 10/100BaseTX

        Fa0/4 connected 1 a-full a-100 10/100BaseTX

      【cisco思科交換機(jī)配置篇】相關(guān)文章:

      思科交換機(jī)的基本配置03-29

      思科交換機(jī)STP配置03-05

      思科交換機(jī)配置vlan03-05

      思科交換機(jī)配置TRUNK的主要步驟11-29

      思科交換機(jī)基本配置命令大全06-10

      思科交換機(jī)配置及電腦開機(jī)自檢03-29

      思科三層交換機(jī)配置08-21

      cisco交換機(jī)安全配置設(shè)定命令大全03-05

      思科三層交換機(jī)配置實(shí)例及命令03-04

      主站蜘蛛池模板: 精品999无码在线观看| 2022AV一区在线| 成人精品毛片在线观看| 国产男女猛烈无遮挡免费视频网址 | 精品久久人妻一区二区三区 | 一区二区中文字幕视频| 武冈市| 亚洲高清一区二区三区不卡| 国产在线观看不卡免费| 成人综合久久精品色婷婷| 衢州市| 西林县| 熟女少妇av免费观看| 精品熟女亚洲av在线观看| 人妻少妇精品系列一区二区| 象州县| 久久一区二区三区不卡| 中文字幕有码高清| 亚洲在线一区二区三区四区| 成年女人18毛片毛片免费| 喀喇| 日本一区免费喷水| 极品美女尤物嫩模啪啪| 级毛片无码av| 91福利国产在线观看网站| 亚洲精品精品日本日本| 青青青国产免A在线观看| 亚洲欧洲综合有码无码| 沂源县| 新乡市| 武义县| 涞源县| 闸北区| 精品国产午夜久久久久九九| 东台市| 97色综合| 国产视频在线一区二区三区四区| 91精品国产综合久久青草| 法库县| av福利免费在线观看网站| 中文字幕乱码亚洲无线|