还有设了enable secret ,enable password 就无效了

简介:

Cisco ios enable password 和 enable secret 的区别

6C3524_1#enable ?
<0-15> Enable level
<cr>

6C3524_1(config)#enable ?
last-resort Define enable action if no TACACS servers respond
password     Assign the privileged level password
secret       Assign the privileged level secret
use-tacacs   Use TACACS to check enable passwords

6C3524_1(config)#enable password ?
0      Specifies an UNENCRYPTED password will follow
7      Specifies a HIDDEN password will follow
LINE   The UNENCRYPTED (cleartext) 'enable' password
level Set exec level password

6C3524_1(config)#enable secret ?
0      Specifies an UNENCRYPTED password will follow
5      Specifies an ENCRYPTED secret will follow
LINE   The UNENCRYPTED (cleartext) 'enable' secret
level Set exec level password
//但是注意:在实际操作上enable password 0 passwordstr  enable password 7 passwordstr 都会出错的enable secret也同!所以只要记牢enable password 是不加密的,enable secret 是加密的就够了。还有设了enable secret enable password 就无效了。

http://blog.51cto.com/215363/934901
本文转自 bilinyee博客,原文链接:  http://blog.51cto.com/215363/934901        如需转载请自行联系原作者         
相关文章
|
3天前
|
数据库 数据安全/隐私保护
Access设置或取消密码
Access设置或取消密码
|
5月前
|
关系型数据库 MySQL 数据库连接
root用户数据库连接出现错误号码**** Access denied for ‘root‘@‘IP‘(using password:YES)
root用户数据库连接出现错误号码**** Access denied for ‘root‘@‘IP‘(using password:YES)
28 0
|
7月前
|
Docker 容器
dockers --cap-add 哪些值可以设置
`--cap-add` 参数可以用于向 Docker 容器添加不同的权限。除了 `NET_ADMIN`,还有一些其他常用的权限值,包括: 1. `SYS_ADMIN`:添加系统管理员权限,允许容器内的进程执行系统级别的管理操作,如挂载文件系统、设置时间、修改主机名等。 2. `SYS_PTRACE`:添加系统追踪权限,允许容器内的进程使用 `ptrace` 系统调用,用于调试和监视其他进程。 3. `SYS_CHROOT`:添加切换根目录权限,允许容器内的进程使用 `chroot` 系统调用,在指定的目录下创建一个新的根文件系统环境。 4. `SYS_MODULE`:添加模块加载/卸载
333 1
|
12月前
|
关系型数据库 MySQL 数据安全/隐私保护
mysql_config_editor 设置密码set --login_path
mysql_config_editor可以给指定的连接和密码生成一个加密文件.mylogin.cnf
107 0
|
数据安全/隐私保护 Docker 容器
MySQL8.0:报错caching_sha2_password Auth failed
MySQL8.0:报错caching_sha2_password Auth failed
197 0
|
SQL 关系型数据库 MySQL
Access denied for user ‘root‘ @‘123.233.244.218‘(using password:YES)的解决方法
Access denied for user ‘root‘ @‘123.233.244.218‘(using password:YES)的解决方法
171 1
Access denied for user ‘root‘ @‘123.233.244.218‘(using password:YES)的解决方法
|
Web App开发 JavaScript 安全
Please open the about:config page and disable the "security.fileuri.strict_origin_policy" option
Please open the about:config page and disable the "security.fileuri.strict_origin_policy" option
181 0
Please open the about:config page and disable the "security.fileuri.strict_origin_policy" option
|
NoSQL Java 程序员
记录:(error) NOAUTH Authentication required...【亲测有效】
记录:(error) NOAUTH Authentication required...【亲测有效】
640 0
|
XML 分布式计算 Hadoop
hiveserver2连接报错: User: root is not allowed to impersonate anonymous (state=08S01,code=0)
hiveserver2连接报错: User: root is not allowed to impersonate anonymous (state=08S01,code=0)
642 0
|
数据安全/隐私保护 关系型数据库 Oracle
使用PASSWORD_VERIFY_FUNCTION设置用户密码复杂度
依据PASSWORD_VERIFY_FUNCTION可以设置oracle用户的密码复杂度,比如密码长度>=10,必须包含字母/数字等首先需要创建一个密码验证的function,然后设置profile的PASSWORD_VERIFY_FUNCTION即可 SQL> s...
4297 0