Cisco设置各种密码

设置Console登录

命令如下

sh 复制代码
# 进入console  0
Router(config)#line console 0

# 设置密码
Router(config-line)#password 123456

# 启用登录需要密码
Router(config-line)#login

测试

退出后发现需要密码登录

sh 复制代码
User Access Verification

Password: 
Password: 

关闭密码

sh 复制代码
Router(config-line)#no login

设置进入特权模式的密码(设置进入enable模式密码)

命令

方式一

sh 复制代码
# 用于限制人员访问特权执行模式,密码没有加密,配置文件可以看到
Router(config)#enable password en_pass

方式二(常用)

sh 复制代码
Router(config)#enable secret ?
  0      Specifies an UNENCRYPTED password will follow
  5      Specifies a MD5 HASHED secret will follow
  8      Specifies a PBKDF2 HASHED secret will follow
  9      Specifies a SCRYPT HASHED secret will follow
  LINE   The UNENCRYPTED (cleartext) 'enable' secret
  level  Set exec level password
sh 复制代码
# 经加密,用于限制人员访问特权执行模式,密码已加密,配置文件看不到
Router(config)#enable secret en_secret
Router(config)#

查看配置文件如下

sh 复制代码
Router#show running-config 
Building configuration...

Current configuration : 1346 bytes
!
! Last configuration change at 18:30:12 UTC Sun Nov 12 2023
!
version 15.7
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Router
!
boot-start-marker
boot-end-marker
!
!
enable secret 5 $1$IHgn$b3ydJ0OZovLoELALjiDur/
enable password en_pass
!
no aaa new-model
!
!
!

可以看到enable secret的密码是加密的,当enable secret 和enable password同时存在时候,enable secret设置的密码生效

测试

sh 复制代码
# 从用户模式进入特权模式需要设置密码
Router>enable
Password: 
Password: 

vty密码

用于限制人员通过Telnet访问设备

sh 复制代码
# 配置vty
Router(config)#line  vty 0 4

# 设置Telnet登录密码为vty_pass
Router(config-line)#password vty_pass

# login表示登录时候需要密码验证
Router(config-line)#login
Router(config-line)#
相关推荐
zzzsde36 分钟前
【Linux】基础开发工具(3):编译器
linux·运维·服务器
..空空的人1 小时前
C++基于websocket的多用户网页五子棋 ---- 整合封装服务器模块设计实现
运维·服务器
愚戏师2 小时前
Python3 多线程
linux·运维·服务器·python
n***33352 小时前
linux redis简单操作
linux·运维·redis
xuchaoxin13754 小时前
cdn节点代理的副作用@fail2ban对接cdn封锁恶意请求ip@fail2ban封锁ip有效性问题
运维·网络·cdn·cloudflare
q***04635 小时前
Linux环境下Tomcat的安装与配置详细指南
linux·运维·tomcat
好奇的菜鸟5 小时前
在 WSL 中安装 Docker
运维·docker·容器
x***44015 小时前
linux 设置tomcat开机启动
linux·运维·tomcat
2301_804947585 小时前
nginx的https的搭建
运维·nginx·https
K***43065 小时前
httpslocalhostindex 配置的nginx,一刷新就报404了
运维·nginx