一、实验目的

掌握交换机命令行各种操作模式的区别,以及模式之间的切换。

二、实验内容

1. 使用Cisco Packet Tracer中2960-24交换机。

2.交换机的命令行操作模式,主要包括:用户模式、特权模式、全局配置模式、端口模式等几种。

用户模式  进入交换机后得到的第一个操作模式,该模式下可以简单查看交换机的软、硬件版本信息,并进行简单的测试。用户模式提示符为:switch>

特权模式  由用户模式进入的下一级模式,该模式下可以对交换机的配置文件进行管理,查看交换机的配置信息,进行网络的测试和调试等。特权模式提示符为:switch#

全局配置模式  属于特权模式的下一级模式,该模式下可以配置交换机的全局性参数(如主机名、登录信息等)。在该模式下可以进入下一级的配置模式,对交换机具体的功能进行配置。全局模式提示符为:switch(config)#

端口模式  属于全局模式的下一级模式,该模式下可以对交换机的端口进行参数配置。端口模式提示符为:switch(config-if)#

三、实验步骤

1.交换机命令行操作模式的进入。

switch>enable
(password: )                                !进入特权模式
switch#
switch#configure terminal                      !进入全局配置模式
switch(config)#
switch(config)#interface fastethernet 0/5      !进入交换机F0/5的接口模式
switch(config-if)
switch(config-if)#exit                         !退回到上一级操作模式
switch(config)#
switch(config-if)#end                          !直接退回到特权模式
switch#

中兴交换机bgp发布路由掩码不连续_网络

2.交换机命令行基本功能。

帮助信息

1.switch> ?                               !显示当前模式下所有可执行的命令
  disable                Turn off privileged commands
  enable                 Turn on privileged commands
  exit                    Exit from the EXEC
  help                    Description of the interactive help system
  ping                    Send echo messages
  rcommand               Run command on remote switch
  show                    Show running system information
  telnet                 Open a telnet connection
traceroute            Trace route to destination

2.switch#co?                              !显示当前模式下所有以co开头的命令

configure       copy
switch#copy ?                           !显示copy命令后可执行的参数
flash:                   Copy from flash: file system
  running-config         Copy from current system configuration
  startup-config         Copy from startup configuration
  tftp:                    Copy from tftp: file system
  xmodem                   Copy from xmodem file syste

中兴交换机bgp发布路由掩码不连续_服务器_02

3.命令的简写

switch#conf ter  !交换机命令行支持命令的简写,该命令代表configure terminal

switch(config)#
步骤3    配置交换机的管理IP地址。
Switch>enable
Switch#conf  t
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#interface Vlan 1                 //指定逻辑端口Vlan 1
Switch(config-if)#ip address 10.10.10.1  255.255.255.0    //交换机上vlan 1配置ip地址,掩码
Switch(config-if)#no shutdown
Switch(config-if)#exit              
Switch#show  running-config   //查看running-confing配置文件,所有的命令都是在整个文件中修改的
Switch#wr

中兴交换机bgp发布路由掩码不连续_服务器_03

步骤4    设置交换机的主机名和虚拟终端线路密码。

Switch(config)#hostname 交换机名字
Switch(config) #line vty 0 4                 //设置进人vty 0-4号线路配置模式,该命令是允许用户远程登陆,即不用用户插Console线缆,只要设备连接网络,配置了接口IP地址即可远程使用Telnet的方式登陆到设备上,CISCO设备一般支持16个并行的远程虚拟终端,按照编号就是:0 - 15, Line vty 0 4 就是指同时允许5个虚拟终端登陆进行配置,需注意这里配置完成后一定要注意配置enable的密码,要不Telnet是上不去的!!!
Switch(config) #password cisco             //配置线路登录密码
Switch(config) #login

中兴交换机bgp发布路由掩码不连续_tcp/ip_04