亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

華為認(rèn)證

華為交換機(jī)的啟動(dòng)及基本配置實(shí)驗(yàn)

時(shí)間:2024-07-10 00:41:20 華為認(rèn)證 我要投稿
  • 相關(guān)推薦

華為交換機(jī)的啟動(dòng)及基本配置實(shí)驗(yàn)

  華為交換機(jī)怎么啟動(dòng),基本配置命令是什么呢?不用著急,下文yjbys小編就為大家分享關(guān)于交換機(jī)的啟動(dòng)及基本配置相關(guān)內(nèi)容,歡迎閱讀!

  實(shí)驗(yàn)1 交換機(jī)的啟動(dòng)及基本配置:

  1924交換機(jī)上配置:

  sw1924_b#delete nvram----------全部清除交換機(jī)的所有配置

  sw1924_b#reload----------------重新啟動(dòng)交換機(jī)(初始提示符為> )

  sw1924_b#hostname sw1924---------------------------設(shè)置交換機(jī)的主機(jī)名

  >sw1924_b#enable secret cisco-----------------------設(shè)置加密密碼

  sw1924_b#enable password level 1 cisco1-----------設(shè)置等級(jí)密碼(1最低)

  sw1924_b#enable password level 15 cisco15----------設(shè)置等級(jí)密碼(15最高)

  sw1924_b#ip address 192.168.14.1 255.255.255.0-----設(shè)置交換機(jī)的管理IP地址

  sw1924_b#ip default-gateway 192.168.198.2----------設(shè)置交換機(jī)的網(wǎng)關(guān)地址

  sw1924_b#ip domain-name pctc.com.cn----------------設(shè)置交換機(jī)所連域的域名

  sw1924_b#ip name-server 218.87.18.230--------------設(shè)置交換機(jī)所連域的域名服務(wù)器IP

  sw1924_b#show ip-------------------------------------------查看上述設(shè)置環(huán)境

  sw1924_b#show version--------------------------------------查看交換機(jī)的版本等信息

  sw1924_b#show running-config-------------------------------查看交換機(jī)的當(dāng)前運(yùn)行配置等全部信息

  sw1924_b#show int e0/1-------------------------------------查看交換機(jī)的第1個(gè)端口信息

  2912交換機(jī)上配置:

  sw2912_a#erase nvram-----------全部清除交換機(jī)的所有配置

  sw2912_a#reload----------------重新啟動(dòng)交換機(jī)(初始提示符為switch> )

  sw2912_a#int vlan 1----------------------------------進(jìn)入vlan 1特殊接口配置模式

  sw2912_a#ip address 192.168.15.1 255.255.255.0----設(shè)置交換機(jī)的管理IP地址

  sw2912_a#ip default-gateway 192.168.198.2----------設(shè)置交換機(jī)的網(wǎng)關(guān)地址

  sw2912_a#ip domain-name pctc.com.cn----------------設(shè)置交換機(jī)所連域的域名

  sw2912_a#ip name-server 218.87.18.230--------------設(shè)置交換機(jī)所連域的域名服務(wù)器IP

  sw2912_a#show int vlan 1-----------------------------------查看交換機(jī)的VLAN 1特殊接口配置信息

  sw2912_a#show run------------------------------------------查看交換機(jī)的當(dāng)前運(yùn)行配置等全部信息

  實(shí)驗(yàn)2 交換機(jī)的端口和MAC地址表的設(shè)置:

  1924交換機(jī)配置端口屬性:

  sw1924_b#conf t

  sw1924_b#interface ethernet 0/1-------------------------進(jìn)入第1個(gè)端口

  sw1924_b#description sw1924_b-e0/1-pc1---------------給端口寫入注釋信息

  sw1924_b#duplex auto/full/full-flow-control/half-----設(shè)置端口的工作模式

  sw1924_b#port secure---------------------------------啟用端口安全性

  sw1924_b#port secure max-mac-count 1---------設(shè)置該端口允許對(duì)應(yīng)的MAC地址數(shù)(默認(rèn)132個(gè))

  sw1924_b#sh mac-address-table security------------------查看端口安全性

  2912交換機(jī)配置端口屬性:

  sw1912_a#conf t-----------------------------------------進(jìn)入全局配置模式

  sw1912_a#interface fastethernet 0/1-------------進(jìn)入第1個(gè)端口

  sw1912_a#description sw2912_a-f0/1-pc1-------給端口寫入注釋信息

  sw1912_a#duplex auto/full/half---------------設(shè)置端口的工作模式

  sw1912_a#port security-----------------------啟用端口安全性

  sw1912_a#port security max-mac-count 1-------設(shè)置該端口允許對(duì)應(yīng)的MAC地址數(shù)(默認(rèn)132個(gè))

  sw1912_a#end---------------------------------返回特權(quán)模式

  sw1912_a#sh port security--------------------查看端口安全性

  配置和查看MAC地址表:

  1924交換機(jī)配置MAC地址表:

  sw1924_b#mac-address-table aging-time 600-----------------設(shè)置動(dòng)態(tài)地址超時(shí)時(shí)間

  sw1924_b#mac-address-table permanent 0000.0cdd.5a4d e0/3---定義永久MAC地址(綁定MAC地址)

  sw1924_b#mac-address-table restricted static 0000.0cdd.aaed e0/6 e0/7--定義受限MAC地址

  sw1924_b#address-violation disable/ignore/suspend----------------------定義地址安全違規(guī)

  sw1924_b#show mac-address-table------------------查看上述配置

  sw1924_b#clear mac-addr restric static-----------清除受限MAC地址表項(xiàng)

  2912交換機(jī)配置MAC地址表:

  sw2912_a#mac-address-table aging-time 700---------------設(shè)置動(dòng)態(tài)地址超時(shí)時(shí)間

  sw2912_a#mac-address-table static 0000.0cdd.5a4d e0/3---定義永久MAC地址(綁定MAC地址)

  sw2912_a#mac-address-table secure 00d0.f80d.3333 f0/3 vlan 1---定義受限MAC地址

  sw2912_a#port security action shutdown/trap-----------------定義地址安全違規(guī)

  sw2912_a#show port security--------------------------------------------查看上述配置

  實(shí)驗(yàn)3 配置VTP、VLAN、VLAN Trunk和STP:

  配置VTP:

  sw1924_a#conf t

  sw1924_a#vtp server-------------------定義VTP的工作模式

  sw1924_a#vtp domain cisco-------------定義VTP的域名

  sw1924_a#trunk on---------------------啟用干道

  sw1924_b#vtp domain cisco-------------加入VTP域

  sw1924_b#vtp client-------------------定義VTP的工作模式

  sw1924_b#trunk on---------------------啟用干道

  sw1924_a#show trunk b

  sw1924_a#show trunk b allowed-vlans-----------查看干道信息

  配置VLAN:

  sw1924_a#vlan 10 dept1

  sw1924_a#vlan 20 dept2

  sw1924_a#vlan 30 dept3

  sw1924_a#vlan 40 dept4----------------定義所需VLAN

  sw1924_a#show vlan----------------------------查看VLAN信息

  sw1924_b#show vlan

  sw1924_b#show vtp-----------------------------查看VTP的信息

  sw1924_b#int e0/1

  sw1924_b#vlan-membership static 10

  sw1924_b#int e0/2

  sw1924_b#vlan-membership static 20

  sw1924_b#int e0/3

  sw1924_b#vlan-membership static 30

  sw1924_b#int e0/4

  sw1924_b#vlan-membership static 40----把接口劃入各自VLAN

  配置spanning tree:

  sw1924_b#spantree 1------------啟用生成樹協(xié)議

  sw1924_b#sh spantree 1-----------------查看生成樹信息

  sw1924_b#no spantree 1---------關(guān)閉生成樹協(xié)議

  sw1924_b#sh spantree 1---------查看生成樹信息

【華為交換機(jī)的啟動(dòng)及基本配置實(shí)驗(yàn)】相關(guān)文章:

華為思科交換機(jī)基本配置07-08

華為交換機(jī)基本配置命令11-01

華為交換機(jī)基本配置命令大全08-04

2016最新華為交換機(jī)基本配置命令11-06

H3C華為交換機(jī)端口綁定基本配置10-26

思科交換機(jī)的基本配置10-09

華為QuidWay交換機(jī)配置命令手冊(cè)10-15

關(guān)于華為交換機(jī)vlan的配置代碼09-08

華為交換機(jī)端口的批量配置命令10-12

思科交換機(jī)的基本配置命令09-10