电脑技术学习

配置cisco2950交换机的端口

dn001

配置一组端口

命令

目的

Step;1;

configure terminal

进入配置状态

Step;2;

interface range {port-range}

进入组配置状态

Step;3;

可以使用平时的端口配置命令进行配置

Step;4;

end

退回

Step;5;

show interfaces [interface-id]

验证配置

Step;6;

copy running-config startup-config

保存

当使用interface range命令时有如下的规则:

  • 有效的组范围:
    • vlan1 到4094
    • fastethernet 槽位/{first port} - {last port}, 槽位为0
    • gigabitethernet槽位/{first port} - {last port},槽位为0
    • port-channel port-channel-number - port-channel-number, port-channel号从1到64
  • 端口号之间需要加入空格,如:interface range fastethernet 0/1;–;5 是有效的,而interface range fastethernet 0/1-5 是无效的.
  • interface range 命令只能配置已经存在的interface vlan
  • 所有在同一组的端口必须是相同类别的。

见以下例子:

Switch# configure terminal
Switch(config)# interface range fastethernet0/1 - 5 
Switch(config-if-range)# no shutdown 
Switch(config-if-range)#
以下的例子显示使用句号来配置不同类型端口的组:
Switch# configure terminal
Switch(config)# interface range fastethernet0/1 - 3, gigabitethernet0/1 - 2 
Switch(config-if-range)# no shutdown 
Switch(config-if-range)#

配置二层端口

2950的所有端口缺省的端口都是二层口,假如此端口已经配置成三层端口的话,则需要用switchport来使其成为二层端口。

配置端口速率及双工模式

可以配置快速以太口的速率为10/100Mbps及千兆以太口的速率为10/100/1000-Mbps; 但对于GBIC端口则不能配置速率及双工模式,有时可以配置nonegotiate,当需要联接不支持自适应的其它千兆端口时


命令

目的

Step;1;

configure terminal

进入配置状态.

Step;2;

interface interface-id

进入端口配置状态.

Step;3;

speed {10 100 1000 auto nonegotiate}

设置端口速率

1000 只工作在千兆口. GBIC模块只工作在1000 Mbps下. nonegotiate 只能在这些GBIC上用 1000BASE-SX, -LX, and -ZX GBIC.

Step;4;

duplex {auto full half}

设置全双工或半双工.

Step;5;

end

退出

Step;6;

show interfaces interface-id

显示有关配置情况

Step;7;

copy running-config startup-config

保存

Switch# configure terminal
Switch(config)# interface fastethernet0/3
Switch(config-if)# speed 10
Switch(config-if)# duplex half

端口描述

命令

目的

Step;1;

configure terminal

进入配置模式

Step;2;

interface interface-id

进入要加入描述的端口

Step;3;

description string

加入描述 (最多240个字符).

Step;4;

end

退回.

Step;5;

show interfaces interface-id description

or

show running-config

验证.

Step;6;

copy running-config startup-config

保存

Use the no description interface configuration command to delete the description.

This example shows how to add a description on Fast Ethernet interface 0/4 and to verify the description:

Switch# config terminal
Enter configuration commands, one per line.; End with CNTL/Z.
Switch(config)# interface fastethernet0/4
Switch(config-if)# description Connects to Marketing
Switch(config-if)# end
Switch# show interfaces fastethernet0/4 description
Interface Status Protocol Description
Fa0/4;;up;;down;;Connects to Marketing

监控及维护端口

监控端口和控制器的状态


主要命令见下表:

Show Commands for Interfaces Command

目的

show interfaces [interface-id]

显示所有端口或某一端口的状态和配置.

show interfaces interface-id status [err-disabled]

显示一系列端口的状态或错误-关闭的状态

show interfaces [interface-id] switchport

显示二层端口的状态,可以用来决定此口是否为二层或三层口。

show interfaces [interface-id] description

显示端口描述

show running-config interface [interface-id]

显示当前配置中的端口配置情况

show version

显示软硬件等情况

举例如下:

Switch# show interfaces status

Switch# show interfaces fastethernet 0/1 switchport
Switch# show running-config interface fastethernet0/2

刷新、重置端口及计数器

Clear命令

目的

clear counters [interface-id]

清除端口计数器.

clear line [number console 0 vty number]

重置异步串口的硬件逻辑


Noteclear counters 命令只清除用show interface所显示的计数,不影响用snmp得到的计数



举例如下:

Switch# clear counters fastethernet0/5 
Clear "show interface" counters on this interface [confirm] y 
Switch#
*Sep 30 08:42:55: %CLEAR-5-COUNTERS: Clear counter on interface FastEthernet0/5
by vty1 (171.69.115.10)
 

可使用clear line 命令来清除或重置某一端口或串口,在大部分情况下并不需要这样做:

Switch# clear interface fastethernet0/5 

关闭和打开端口

命令

目的

Step;1;

configure terminal

进入配置状态

Step;2;

interface {vlan vlan-id} {{fastethernet gigabitethernet} interface-id} {port-channel port-channel-number}

选择要关闭的端口

Step;3;

shutdown

关闭

Step;4;

end

退出

Step;5;

show running-config

验证

使用 no shutdown 命令重新打开端口.

举例如下:

Switch# configure terminal
Switch(config)# interface fastethernet0/5 
Switch(config-if)# shutdown 
Switch(config-if)#
Switch# configure terminal
Switch(config)# interface fastethernet0/5 
Switch(config-if)# no shutdown 
Switch(config-if)# 
(完)

标签: 交换机