路由器/交换机项目实训教程
上QQ阅读APP看本书,新人免费读10天
设备和账号都新为新人

1.4 项目实施

1.4.1 项目目标

通过本项目的完成,可以使学生掌握以下技能:

(1)能够通过控制台端口对交换机进行初始配置;

(2)能够更改交换机的名称;

(3)能够配置交换机的各种口令;

(4)能够删除交换机的各种口令;

(5)能够利用show命令查看交换机的各种状态信息。

1.4.2 实训任务

为了实现本项目,构建如图1.5所示的网络实训环境或在Packet Tracer中模拟。通过反转线将交换机的Console口和PC1的COM口连接起来,并完成以下任务。

(1)配置交换机的名称;

(2)配置交换机的口令;

(3)清除交换机的口令;

(4)查看交换机的各种状态;

(5)清除交换机配置。

图1.5 交换机的初始配置

1.4.3 设备清单

为了搭建如图1.5所示的网络环境,需要如下设备:

(1)Cisco Catalyst 2960交换机1台;

(2)PC 1台;

(3)反转电缆1根。

1.4.4 实施过程

步骤1:规划设计

规划要配置的交换机的名称、各种口令如表1.2所示。

表1.2 规划表

步骤2:硬件连接

按照图1.5所示通过反转线将交换机的Console口和计算机的COM口连接起来。

步骤3:使用超级终端

如准备用来进行IOS配置的终端就是一台PC,那么必须运行终端仿真软件,以便键入IOS命令,并观看IOS信息。终端仿真软件包括HyperTerminal(HHgraeve公司制作)、Procomm Plus(DataStorm Technologies公司制作)及Tera Term等。

下面就以Microsoft操作系统中自带的终端应用程序“超级终端”来连接到终端服务器的控制台端口。

(1)从开始菜单选择“开始→程序→附件→通讯→超级终端”命令,弹出“连接描述”对话框。设置新连接的名称,如cisco。

单击“确定”按钮,弹出“连接到”对话框。在“连接时使用”列表框中,选择终端PC的连接接口,本例中,连接到COM1。

单击“确定”按钮,弹出“COM1属性”对话框,通常交换机出厂时,波特率为9600bps,单击“还原为默认值”按钮设置超级终端的通信参数,再单击“确定”按钮,看看超级终端窗口上是否出现交换机提示符或其他字符,如果出现提示符或者其他字符则说明计算机已经连接到交换机上了,这时就可以开始配置交换机了。

(2)关闭交换机电源,稍后重新打开电源,观察交换机的开机过程,如下:

    C2960 Boot Loader (C2960-HBOOT-M) Version 12.2(25r)FX, RELEASE SOFTWARE
(fc4)
    Cisco WS-C2960-24TT (RC32300) processor (revision C0) with 21039K bytes of memory.
    2960-24TT starting...
    Base ethernet MAC Address: 0060.2F14.3ACC
    Xmodem file system is available.
    Initializing Flash...
    flashfs[0]: 1 files, 0 directories
    flashfs[0]: 0 orphaned files, 0 orphaned directories
    flashfs[0]: Total bytes: 64016384
    flashfs[0]: Bytes used: 4414921
    flashfs[0]: Bytes available: 59601463
    flashfs[0]: flashfs fsck took 1 seconds.
    ...done Initializing Flash.
    Boot Sector Filesystem (bs:) installed, fsid: 3
    Parameter Block Filesystem (pb:) installed, fsid: 4
    Loading "flash:/c2960-lanbase-mz.122-25.FX.bin"...
    ################################################################## [OK]
    ……
    Cisco WS-C2960-24TT (RC32300) processor (revision C0) with 21039K bytes of memory.
    24 FastEthernet/IEEE 802.3 interface(s)
    2 Gigabit Ethernet/IEEE 802.3 interface(s)
    63488K bytes of flash-simulated non-volatile configuration memory.
    ……
    Cisco IOS Software, C2960 Software (C2960-LANBASE-M), Version 12.2(25)FX,
RELEASE SOFTWARE (fc1)
    Copyright (c) 1986-2005 by Cisco Systems, Inc.
    Compiled Wed 12-Oct-05 22:05 by pt_team
    Press RETURN to get started!

在交换机初始启动阶段,如果发现POST故障,将在控制台显示相应的消息;如果POST顺利完成,用户便可配置交换机。

步骤4:更改交换机的主机名

    switch>enable
    switch#config terminal
    Enter configuration commands,one per line.  End with CNTL/Z.
    switch(config)#hostname xm1

步骤5:设置交换机的登录口令

在下面每一步执行前后,都退回到特权模式下,使用show running-config命令查看交换机配置文件,观察其区别。

(1)设置交换机的控制台保护口令。

    xm1(config)#line console 0
    xm1(config-line)#password cisco
    xm1(config-line)#login
    xm1(config-line)#exit

(2)设置交换机远程终端访问口令。

    xm1(config)#line vty 04
    xm1(config-line)#password cisco
    xm1(config-line)#login
    xm1(config-line)#exit

(3)设置交换机的特权口令。

    xm1(config)#enable password cisco123
    xm1(config)#exit

(4)设置交换机的特权加密口令。

    xm1(config)#enable secret cisco
    xm1(config)#exit
    xm1#

(5)设置控制台的空闲时间。

    xm1(config)#line console 0
    xm1(config-line)#exec-timeout 10
    xm1(config-line)#login
    xm1(config-line)#

(6)配置加密口令。

    xm1(config)#service password-encryption
    xm1(config)#exit
    xm1#write

步骤6:取消交换机的登录口令

(1)交换机重启。

    xm1#reload

重新使用超级终端登录交换机,使用刚刚配置的口令登录到交换机特权模式。

(2)取消交换机的控制台口令。

    xm1(config)#line console 0
    xm1(config-line)#no password cisco
    xm1(config-line)#end
    xm1#exit

(3)取消交换机的特权口令。

    xm1(config)#no enable password
    xm1(config)#exit

(4)取消交换机的特权加密口令。

    xm1(config)#no enable secret
    xm1(config)#exit
    xm1#

(5)取消交换机远程终端访问口令。

    xm1(config)#line vty 04
    xm1(config-line)#no password cisco
    xm1(config-line)#end
    xm1#exit

步骤7:设置和取消交换机的登录标语

    xm1(config)#banner motd"Device maintenance will be occurring on Friday!"
    xm1(config)#

步骤8:查看交换机的状态信息

    xm1#show version
    xm1#show startup-config
    xm1#show clock
    xm1#show flash:
    xm1#show processes
    xm1#show running-config
    xm1#show sessions

步骤9:保存交换机的配置文件

保存交换机的配置文件通常有两种方法。

(1)在全局配置模式下输入write命令:

    xm1#write
    Building configuration...
    [OK]

(2)在全局配置模式下输入copy running-config startup-config命令:

    xml#copy running-config startup-config
    Destination filename [startup-config]?
    Building configuration...
    [OK]
    xm1#

步骤10:备份和恢复交换机的配置文件

    xm1#copy startup-config flash:
    Destination filename[startup-config]?201326
    1010 bytes copied in 0.416 secs (2427 bytes/sec)
    xm1#
    xm1#copy flash: startup-config
    Source filename[]?201326
    Destination filename [startup-config]?
    [OK]
    1010 bytes copied in 0.416 secs (2427 bytes/sec)
    xm1#

步骤11:备份交换机的配置文件到文本文件

(1)在特权模式下执行show running-config命令,用鼠标拖动选中。

(2)右键单击鼠标,在弹出的快捷菜单中选择“copy”(复制)命令。

(3)打开Windows系统自带的记事本,在窗口中右键单击鼠标,在弹出的快捷菜单中选择“粘贴”命令,然后保存文件。

步骤12:清除交换机配置

    xm1#erase startup-config
    Erasing the nvram filesystem will remove all configuration files! Continue? [confirm]
    [OK]
    Erase of nvram: complete
    %SYS-7-NV_BLOCK_INIT: Initialized the geometry of nvram
    xm1#reload
    Proceed with reload? [confirm]
    %SYS-5-RELOAD: Reload requested by console. Reload Reason: Reload Command…
    ……
    Press RETURN to get started!
    switch>