思科交换机的VLAN、TRUNK、VTP配置教程
CISCO交换机配置实例(VTP、VLAN、TRUNK、channel) 本文通过实例为大家介绍CISCO交换机的一些常用功能的配置方法,你还在为不知道思科交换机的VLAN、 TRUNK 、VTP 配置教程而烦恼么?接下来是小编为大家收集的思科交换机的VLAN、 TRUNK 、VTP 配置教程,希望能帮到大家。
思科交换机的VLAN、 TRUNK 、VTP 配置教程:
1. 配置 CISCO 二层交换机的IP 地址(catalyst 2950 为例)
SW1(config)#int vlan 1 //进入管理接口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 //配置网关,可通过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.配置交换机的端口速度和双工(Speed and Duplex)
SW1(config)#interface fa0/1
SW1(config-if)#speed {10 | 100 | auto} //10M/100M/自适应
SW1(config-if)#duplex {auto | full | half} //自适应/全双工/半双工
一般情况下,交换机两端的端口速度和双工要匹配,这样通信质量才能得到保证,在相同厂家的产品
(比如说Cisco 的交换机互连)中端口协商不用配置一般不会有什么问题,可以通过show interface 查
看端口的速度和双工。通常在不同厂家的产品中(比如说Cisco 和华为互连)如果通过查看发现端口速
度和双工不匹配,可以通过手工配置来解决。
通过 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 交换机端口默认值:Auto-duplex, Auto-speed, media type is 100BaseTX
3.设置永久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 可以看到静态添加的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.设置交换机端口的访问模式(三种) 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 //设置FA0/1 为ACCESS 模式
SW1(config-if)#switchport mode trunk //设置FA0/1 为TRUNK 模式
SW1(config-if)#switchport mode dynamic auto //设置FA0/1 为自动直协商模式(默认)
交换机TRUNK 端口配置:
1)一般交换机与交换机相连接的端口要设置为trunk 模式
2 )如果是梳心交换机与非网管的交换机相连,梳心交换机端口设置为access 模式。
看了“思科交换机的VLAN、 TRUNK 、VTP 配置教程”还看了: