思科交換機(jī)的VLAN、TRUNK、VTP配置教程
CISCO交換機(jī)配置實(shí)例(VTP、VLAN、TRUNK、channel) 本文通過實(shí)例為大家介紹CISCO交換機(jī)的一些常用功能的配置方法,你還在為不知道思科交換機(jī)的VLAN、 TRUNK 、VTP 配置教程而煩惱么?接下來是小編為大家收集的思科交換機(jī)的VLAN、 TRUNK 、VTP 配置教程,希望能幫到大家。
思科交換機(jī)的VLAN、 TRUNK 、VTP 配置教程:
1. 配置 CISCO 二層交換機(jī)的IP 地址(catalyst 2950 為例)
SW1(config)#int vlan 1 //進(jìn)入管理接口interface vlan 1
SW1(config-if)#ip address 11.1.1.2 255.255.255.0 //配置IP 地址
SW1(config-if)#no shutdown
SW1(config-if)#exit
SW1(config)#ip default-gateway 11.1.1.1 //配置網(wǎng)關(guān),可通過show run 查
查看所配置的 IP 地址:
SW1#show int vlan 1
Vlan1 is up, line protocol is up
Hardware is CPU Interface, address is 0008.20ff.6400 (bia 0008.20ff.6400)
Internet address is 11.1.1.2/24
2.配置交換機(jī)的端口速度和雙工(Speed and Duplex)
SW1(config)#interface fa0/1
SW1(config-if)#speed {10 | 100 | auto} //10M/100M/自適應(yīng)
SW1(config-if)#duplex {auto | full | half} //自適應(yīng)/全雙工/半雙工
一般情況下,交換機(jī)兩端的端口速度和雙工要匹配,這樣通信質(zhì)量才能得到保證,在相同廠家的產(chǎn)品
(比如說Cisco 的交換機(jī)互連)中端口協(xié)商不用配置一般不會(huì)有什么問題,可以通過show interface 查
看端口的速度和雙工。通常在不同廠家的產(chǎn)品中(比如說Cisco 和華為互連)如果通過查看發(fā)現(xiàn)端口速
度和雙工不匹配,可以通過手工配置來解決。
通過 show interface 查看端口的速度和雙工:
SW1#show interfaces fastEthernet 0/24
FastEthernet0/24 is up, line protocol is up (connected)
Hardware is Fast Ethernet, address is 0008.20ff.6418 (bia 0008.20ff.6418)
MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation ARPA, loopback not set
Keepalive set (10 sec)
Full-duplex, 100Mb/s, media type is 100BaseTX
input flow-control is unsupported output flow-control is unsupported
ARP type: ARPA, ARP Timeout 04:00:00
Last input 00:00:03, output 00:00:00, output hang never
注:CISCO 交換機(jī)端口默認(rèn)值:Auto-duplex, Auto-speed, media type is 100BaseTX
3.設(shè)置永久MAC 地址不過期
SW1(config)#mac-address-table static mac_addr {vlan vlan_id} [interface int1 [int2 ... int15]]
SW1(config)#mac-address-table static 1111.1111.a111 vlan 1 interface f0/1
配置后show mac-address-table 可以看到靜態(tài)添加的MAC 地址1111.1111.a111
SW1#show mac-address-table
Vlan Mac Address Type Ports
---- ----------- -------- -----
All 000f.72db.4ec0 STATIC CPU
1 1111.1111.a111 STATIC Fa0/1
4.管理MAC 地址表
SW1#show mac-address-table
Mac Address Table
-------------------------------------------
Vlan Mac Address Type Ports
---- ----------- -------- -----
All 000f.72db.4ec0 STATIC CPU
1 0000.0c3f.0b05 DYNAMIC Fa0/12
1 0030.94e6.391d DYNAMIC Fa0/11
1 00e0.b05a.5bfe DYNAMIC Fa0/10
1 1111.1111.a111 STATIC Fa0/1
5.設(shè)置交換機(jī)端口的訪問模式(三種) access /dynamic / trunk
SW1(config-if)#switchport mode ?
access Set trunking mode to ACCESS unconditionally
dynamic Set trunking mode to dynamically negotiate access or trunk mode
trunk Set trunking mode to TRUNK unconditionally
SW1(config)#int fastEthernet 0/1
SW1(config-if)#switchport mode access //設(shè)置FA0/1 為ACCESS 模式
SW1(config-if)#switchport mode trunk //設(shè)置FA0/1 為TRUNK 模式
SW1(config-if)#switchport mode dynamic auto //設(shè)置FA0/1 為自動(dòng)直協(xié)商模式(默認(rèn))
交換機(jī)TRUNK 端口配置:
1)一般交換機(jī)與交換機(jī)相連接的端口要設(shè)置為trunk 模式
2 )如果是梳心交換機(jī)與非網(wǎng)管的交換機(jī)相連,梳心交換機(jī)端口設(shè)置為access 模式。
看了“思科交換機(jī)的VLAN、 TRUNK 、VTP 配置教程”還看了:
4.CISCO交換機(jī)配置操作學(xué)習(xí)教程