交换机的基本原理配置(二)

本文涉及的产品
密钥管理服务KMS,1000个密钥,100个凭据,1个月
简介:

1、设置进入特权模式的密码(加密形式)

在全局模式下输入命令 enable secret 密码 即设置完成。
jingshihai-01#
jingshihai-01#config terminal
Enter configuration commands, one per line.  End with CNTL/Z.
jingshihai-01(config)#enable secret 111111
jingshihai-01(config)#end
jingshihai-01#
%SYS-5-CONFIG_I: Configured from console by console
jingshihai-01#show running-config 
Building configuration...

Current configuration : 1204 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
enable secret 5 $1$mERr$gsT/Ol5GvccluWxu2cQ1I. (加密密码)
!
!

2、如果同时设置了明文密码和加密密码,那么加密密码起作用

(即:加密密码的优先级大于明文密码)

3、配置console密码

在全局模式下输入命令 line console 0 回车,在输入 password 123456 回车,在输入 login 即可
jingshihai-01#config termin
jingshihai-01#config terminal 
Enter configuration commands, one per line.  End with CNTL/Z.
jingshihai-01(config)#line console 0
jingshihai-01(config-line)#password 123456
jingshihai-01(config-line)#login
jingshihai-01(config-line)#end
jingshihai-01#show running-config 
Building configuration...

Current configuration : 1228 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
line con 0
password 999999
logging synchronous
login
jingshihai-01#
jingshihai-01#exit
jingshihai-01 con0 is now available
Press RETURN to get started.

User Access Verification

Password: (输入console密码)

jingshihai-01>enable
Password:  (输入特权模式密码)
jingshihai-01#

4、配置管理用IP地址与网关

console不是唯一的管理手段,有时还需要通过网络对设备进行远程操作。
每台交换机只能配置一个管理IP地址和网关,且只能在VLAN 1中配置。
在全局模式下,输入命令 interface vlan 1 进入vlan1中;然后输入管理IP地址和网关,命令为 ip address 192.168.1.1 255.255.255.0 回车后输入 no shutdown (激活) 配置完成。
jingshihai-01#
jingshihai-01#config terminal
Enter configuration commands, one per line.  End with CNTL/Z.
jingshihai-01(config)#interface vlan 1
jingshihai-01(config-if)#ip address 192.168.1.1 255.255.255.0
jingshihai-01(config-if)#no shutdown

jingshihai-01(config-if)#
%LINK-5-CHANGED: Interface Vlan1, changed state to up
jingshihai-01(config-if)#end
jingshihai-01#
%SYS-5-CONFIG_I: Configured from console by console

jingshihai-01#show running-
jingshihai-01#show running-config 
Building configuration...

Current configuration : 1241 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
interface Vlan1
  ip address 192.168.1.1 255.255.255.0
!
通过如上可以查看输入的命令是否有问题,也可以通过如下命令查看状态:
jingshihai-01# show interface vlan 1
Vlan1 is up, line protocol is down
  Hardware is CPU Interface, address is 00d0.ff07.0d95 (bia 00d0.ff07.0d95)
  Internet address is 192.168.1.1/24
  MTU 1500 bytes, BW 100000 Kbit, DLY 1000000 usec
相关文章
|
2月前
|
网络协议 安全 网络虚拟化
思科交换机配置命令归纳
【11月更文挑战第8天】本文总结了思科交换机的常见配置命令,包括模式转换、基本配置、查看命令、VLAN 配置、Trunk 配置、以太网通道配置、VTP 配置、三层交换机配置、生成树配置以及其他常用命令,适用于网络管理和维护。
183 2
|
3月前
|
安全 网络安全 数据安全/隐私保护
Cisco-交换机配置聚合端口
Cisco-交换机配置聚合端口
|
5月前
|
数据中心
配置案例 | CE交换机如何配置堆叠?
配置案例 | CE交换机如何配置堆叠?
|
5月前
盒式交换机又是如何配置堆叠的呢?
盒式交换机又是如何配置堆叠的呢?
|
5月前
|
前端开发 数据中心
数据中心框式交换机如何配置堆叠?
数据中心框式交换机如何配置堆叠?
|
5月前
|
Shell 网络安全 Python
网络工程师如何在ensp模拟器上玩python自动化配置交换机。
网络工程师如何在ensp模拟器上玩python自动化配置交换机。
290 0
|
5月前
|
网络虚拟化 数据安全/隐私保护
手把手教网络工程师2种方法如何恢复交换机配置
手把手教网络工程师2种方法如何恢复交换机配置
111 0
|
8月前
|
网络性能优化 网络虚拟化 网络架构
配置接口限速示例(盒式交换机)
接口限速简介 接口限速对通过整个端口的全部报文流量速率进行限制,不对具体流量进行区分,可以实现给某个接口分配固定的带宽,控制方式单一,配置简单。 入方向与出方向的接口限速属于并列关系,用户可以根据需要同时配置,也可以单独配置。
115 2
|
6月前
|
网络安全 数据安全/隐私保护 网络虚拟化
|
8月前
|
网络协议 网络虚拟化 网络架构
交换机入门快速配置
交换机入门快速配置

热门文章

最新文章