【Cisco Packet Tracer| 一.交换机配置模式与基本参数配置】

这篇具有很好参考价值的文章主要介绍了【Cisco Packet Tracer| 一.交换机配置模式与基本参数配置】。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

思科模拟软件:Cisco Packet Tracer Student

一.交换机的多种模式以及切换

1.如何进入到交换机配置的命令行用户界面(Command Line Interface)

思科怎么进入配置模式,工具分享,linux,网络,运维,CISCO,计算机组成原理

enter进入到普通用户模式

2.普通模式模式

普通用户模式下的
命令提示符:>
Switch>?
Exec commands:
  connect     Open a terminal connection
  disable     Turn off privileged commands
  disconnect  Disconnect an existing network connection
  enable      Turn on privileged commands
  exit        Exit from the EXEC
  logout      Exit from the EXEC
  ping        Send echo messages
  resume      Resume an active network connection
  show        Show running system information
  telnet      Open a telnet connection
  terminal    Set terminal line parameters
  traceroute  Trace route to destination

命令行下的复制粘贴:

shift+insert:复制命令行上的内容

shift+delete:粘贴最近一次剪切板中的内容到命令行上

普通用户模式转为特权用户模式:

Switch>enable
Switch#

3.特权用户模式

特权用户模式下的命令提示符:#
Switch#?
Exec commands:
  clear       Reset functions
  clock       Manage the system clock
  configure   Enter configuration mode
  connect     Open a terminal connection
  copy        Copy from one file to another
  debug       Debugging functions (see also 'undebug')
  delete      Delete a file
  dir         List files on a filesystem
  disable     Turn off privileged commands
  disconnect  Disconnect an existing network connection
  enable      Turn on privileged commands
  erase       Erase a filesystem
  exit        Exit from the EXEC
  logout      Exit from the EXEC
  more        Display the contents of a file
  no          Disable debugging informations
  ping        Send echo messages
  reload      Halt and perform a cold restart
  resume      Resume an active network connection
  setup       Run the SETUP command facility
  show        Show running system information
  ssh         Open a secure shell client connection
  --More--

more表示由于屏幕大小原因,还有部分内容没有显示出来:

  1. 回车键:一次向下显示一行
  2. 空格键:一次向下显示一屏

特权用户模式转为全局配置模式:

Switch#configure terminal 
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#

ps:

configure terminal意为配置终端,单词较长,可采用以下解决办法:

  1. tab键自动补全
  2. 简写成conf t

4.全局配置模式

特权用户模式下的命令提示符:(configure)+#
Switch(config)#?
Configure commands:
  access-list        Add an access list entry
  banner             Define a login banner
  boot               Boot Commands
  cdp                Global CDP configuration subcommands
  clock              Configure time-of-day clock
  crypto             Encryption module
  do                 To run exec commands in config mode
  enable             Modify enable password parameters
  end                Exit from configure mode
  exit               Exit from configure mode
  hostname           Set system's network name
  interface          Select an interface to configure
  ip                 Global IP configuration subcommands
  line               Configure a terminal line
  logging            Modify message logging facilities
  mac                MAC configuration
  mac-address-table  Configure the MAC address table
  no                 Negate a command or set its defaults
  port-channel       EtherChannel configuration
  privilege          Command privilege parameters
  service            Modify use of network based services
  snmp-server        Modify SNMP engine parameters
 --More-- 

查看配置模式中的24个端口:

思科怎么进入配置模式,工具分享,linux,网络,运维,CISCO,计算机组成原理

ps: FastEthernet0/1单词意为快速以太网0/1

全局配置模式转为接口配置模式:

Switch(config-if)#interface f0/1
Switch(config-if)#

全局配置模式转为vlan配置模式:

Switch(config)#vlan 4
Switch(config-vlan)#

5.模式切换图

思科怎么进入配置模式,工具分享,linux,网络,运维,CISCO,计算机组成原理

二.交换机名称,口令等设置

1.全局模式下-交换机改名

全局模式下:

Switch(config)#hostname song
song(config)#

2.接口模式下-配置端口速度和工作模式

2.1配置端口速度

思科怎么进入配置模式,工具分享,linux,网络,运维,CISCO,计算机组成原理

song(config-if)#speed ?
  10    Force 10 Mbps operation
  100   Force 100 Mbps operation
  auto  Enable AUTO speed configuration

ps:默认会自动地匹配式10Mbps,还是100Mbps

思科怎么进入配置模式,工具分享,linux,网络,运维,CISCO,计算机组成原理

song(config-if)#speed 10
song(config-if)#speed 100
song(config-if)#speed auto
song(config-if)#
2.2配置工作模式

思科怎么进入配置模式,工具分享,linux,网络,运维,CISCO,计算机组成原理

song(config-if)#duplex ?
  auto  Enable AUTO duplex configuration
  full  Force full duplex operation
  half  Force half-duplex operation

思科怎么进入配置模式,工具分享,linux,网络,运维,CISCO,计算机组成原理

3.特权模式下-查看交换机历史命令

原则上可以一个一个通过上键来上翻找到所有的历史命令,但是不方便

song#show running-conf
Building configuration...

Current configuration : 975 bytes
!
version 12.1
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname song
!
!
!
spanning-tree mode pvst
!
interface FastEthernet0/1
!
interface FastEthernet0/2
!
interface FastEthernet0/3
!
interface FastEthernet0/4
 --More-- 

4.命令的撤销

有些命令可以通过覆盖来达到撤销后再次写入的目的,但是有些命令只能通过撤销后再次写入来完成文章来源地址https://www.toymoban.com/news/detail-740750.html

song(config-if)#speed 100
song(config-if)#no speed 100
song(config-if)#

到了这里,关于【Cisco Packet Tracer| 一.交换机配置模式与基本参数配置】的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 【Cisco Packet Tracer| 二.telnet方式远程登录交换机】

    拖一台交换机,两台终端设备,其中一台终端采用直接连接交换机的方式,用的是console线,另一台终端采用telnet远程登录交换机的方式 一个用直接连接交换机 因为交换机是一个二层设备,是没有网络层的p地址,所以为了给交换机进行管理,所以要在交换机上设置一个inter

    2024年02月04日
    浏览(46)
  • 【Cisco Packet Tracer】VLAN通信 多臂/单臂路由/三层交换机

    在进行本文的实验之前,请确保掌握以下内容: 【Cisco Packet Tracer】交换机 学习/更新/泛洪/VLAN实验 【Cisco Packet Tracer】路由器实验 静态路由/RIP/OSPF/BGP 【Cisco Packet Tracer】路由器 NAT实验 本文介绍VLAN间的通信方法, 包括多臂/单臂路由/三层交换机。 请完成以下的拓扑结构:

    2024年02月04日
    浏览(48)
  • Packet Tracer - 配置交换机端口安全

    Packet Tracer - 配置交换机端口安全 地址分配表 设备 接口 IP 地址 子网掩码 S1 VLAN 1 10.10.10.2 255.255.255.0 PC1 NIC 10.10.10.10 255.255.255.0 PC2 NIC 10.10.10.11 255.255.255.0 非法笔记本电脑 NIC 10.10.10.12 255.255.255.0 目标 第 1 部分:配置端口安全 第 2 部分:验证端口安全 拓扑图   背景信息 在本练

    2024年02月06日
    浏览(42)
  • Packet Tracer - 交换机安全配置解析

    第一步先连线SW1连到SW2接口连接G0/2到G0/2 指令配置 SW-1 SW-1enable SW-1#conf t Enter configuration commands, one per line.  End with CNTL/Z. SW-1(config)#interface range G0/1-2 SW-1(config-if-range)#switchport mode  SW-1(config-if-range)#switchport nonegotiate SW-1(config-if-range)#vlan 100 SW-1(config-vlan)#name Native SW-1(config-vlan)#in

    2024年04月24日
    浏览(33)
  • Packet Tracer - 交换机端口安全故障排除

    Packet Tracer - 交换机端口安全故障排除 场景 通常使用 PC1 的员工将家里的笔记本电脑带来,然后断开 PC1 的连接并将笔记本电脑连接到电信插座。 在提醒此安全策略不支持在网络上使用个人设备后,您必须重新连接 PC1 并重新启用端口。 拓扑图   要求 ·           断开 家

    2024年02月08日
    浏览(43)
  • 交换机路由器网关配置的基本命令代码 Cisco思科

    以下是Cisco基本命令语句 0/0Router部分为主机名,默认路由器Router  ,交换机switch;部分为模式:不同模式具有不同的权限 以下为路由器的配置命令: Router  第一级模式:游客模式 Routerenable  进入授权 Router#     第二级别模式   查看所有 Router#configure terminal    配置终端 Ro

    2024年02月09日
    浏览(47)
  • 【路由交换技术】Cisco Packet Tracer配置静态路由

    PC0:192.168.1.1/24 PC1:192.168.4.1/24 PC2:192.168.4.2/24 Router0: Fa0/0:192.168.1.254/24 Fa0/1:192.168.2.1/24 Router1: Fa0/0:192.168.2.2/24 Fa0/1:192.168.3.1/24 Router2: Fa0/0:192.168.3.2/24 Fa0/1:192.168.4.254/24 完整版可前往:【路由交换技术】Cisco Packet Tracer基础入门教程(二) 什么是路由器的直连网段和非

    2024年02月10日
    浏览(47)
  • 思科Cisco交换机的基本命令

    1、用户模式 可以查看交换机的基本简单信息,且不能做任何修改配置! 2、特权模式 可以查看所有配置,且不能修改配置! 3、全局配置模式 默认不能查看配置!可以修改配置,且全局生效! 4、接口模式 默认不能查看配置!可以修改配置,且对该端口生效! 5、控制台模式

    2024年02月03日
    浏览(38)
  • VLAN基本配置(Cisco Packet Tracer )

    1.实验目的 (1)熟悉 VLAN的创建。 (2)把交换机接口划分到特定的VLAN。 (3)配置交换机的端口安全特性。 (4)配置管理VLAN。 2.实验拓扑 连接线:使用直通线连接 ​ 3.实验步骤 (1)在划分VLAN前﹐配置路由器Rl和R2的e0/0接口,从R1 上 ping 192.168.12.2进行测试。默认时,交换机的全部接口

    2024年02月05日
    浏览(44)
  • 【路由交换技术】Cisco Packet Tracer配置动态路由(RIP,OSPF,EIGRP)

    PC0:192.168.1.1/24 PC1:192.168.4.1/24 PC2:192.168.4.2/24 Router0: Fa0/0:192.168.1.254/24 Fa0/1:192.168.2.1/24 Router1: Fa0/0:192.168.2.2/24 Fa0/1:192.168.3.1/24 Router2: Fa0/0:192.168.3.2/24 Fa0/1:192.168.4.254/24 完整版可前往:【路由交换技术】Cisco Packet Tracer基础入门教程(二) 什么是路由器的直连网段和非

    2024年02月09日
    浏览(45)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包