1楼:匿名用户
server password-encryption让密码以密文储存,比如你的vty密码、console密码,没有server password-encryption的话,这些在配置文件中都以明文显示,不够安全。
建议enable secret 不要enable password 7 +密码。
2楼:216的我
enable password 7 后面跟的是通过思科自己的加密算法加密后的密码。
那么怎么获得思科加密算法加密的密码呢,我们可以在全局模式下使用命令r1(config)# service password-encryption //这条命令使用的是7的加密方法//
然后show run,查看被思科加密后的密码,复制出来填在enable password 7的后面。;而如果直接使用enable password 7 +密码是根本就不通的;并且server password-encryption后会让你在机器里配置的所有密码都加密;如果要设置enable password;你可以使用enable secret +密码?这个是使用md5加密安全性更高;并且权限在enable password 之上
3楼:匿名用户
service 不是server
cisco交换机在不知密码的情况下,如何删除密码而不动配置?
4楼:你的喵掉了喵
通过超级终端或者其他软件用console连接到交换机:
第一步:拔下交换机电源线;
第二步:用手按在交换的mode按键上,插上电源线;
第三步:看到控制台后,松开mode键;
第四步:依次输入:flash_initload_helper;
第五步:输入: dir flash接著输入:
rename flash :config.text flash :
config.old(注:重新命名配置文件);
第六步:重启交换机,输入: boot;
第七步:交换机出现是否配置的对话,选择”no“命令;
第八步:进入特权模式查看flash文件。输入:
rename flash :config.old flash:
config.text(注:恢复配置文件);
第九步:把“config.text”考入系统的”running-config“switch# copy flash:
config.text system:running-config;
第十步:重新设置密码,并保存。
关于cisco 6500系列交换机usename密码设置问题
5楼:216的我
设置密码 password 后不要加那个7 ;就可以了直接password+密码;
使用了service password-encryption 命令其实就是使用7的加密方式也就是cisco自己的加密算法;
而password 7 后面是加入密文才有效。这个密文通常要在以前备份的配置里拷贝才行,用于配置恢复时使用。
比如你设置enable password cisco
然后使用service password-encryption命令开启加密
在sh run里面能够看到enable password 7 104d000a0618
104d000a0618这个值你就可以直接写在enable password 7后面,实际就是cisco密文加密的结果
求cisco 交换机 tel*** 用户名+密码方式配置 详细命令
6楼:大野瘦子
switch>en
switch#confi
configuring from terminal, memory, or ***work [terminal]?
enter configuration ***mands, one per line.endwith **tl/z.
switch(config)#username 123 password 123
switch(config)#enable password 123
switch(config)#line vty 0 4
switch(config-line)#login l
switch(config-line)#login local
switch(config-line)#int vlan 1
switch(config-if)#ip add 192.168.1.1 255.255.255.0
switch(config-if)#nosh
关于tel***的基本配置
r1:router>en //进入特权模式
router#conf t //进入全局模式
router(config)#int f0/0 //进入接口
router(config-if)#ip add 1.1.1.1 255.0.0.0 //配置ip地址
router(config-if)#no sh //开启端口
router(config-if)#ex
router(config)#line vty 0 4 /对连接会话进行设置,允许0-4tel***会话
router(config-line)#pas
router(config-line)#password 123 /设置连接密码
router(config-line)#login
router(config-line)#ex
router(config)#enable password ** /设置特权密码
/要实现tel***必须两个密码:特权密码和链接密码。否则将无法tel***。
实例:华为的基本配置
基本配置:
system-view
enter system view, return user view with ctrl+z.
[huawei]sys r1
[r1]aaa
[r1-aaa]local-user admin password cipher 123
[r1-aaa]local-user admin service-type tel***
[r1-aaa]local-user admin privilege level 3
[r1-aaa]quit
[huawei]user-inte***ce vty 0 4
[huawei-ui-vty0-4]authentication-mode aaa
[huawei-ui-vty0-4]qui
[huawei]int e0/0/0
[huawei-ether***0/0/0]ip add 1.1.1.1 255.0.0.0
[huawei-ether***0/0/0]quit
验证:huawei>tel*** 1.1.1.1
trying 1.1.1.1 ...
press ctrl+k to abort
connected to 1.1.1.1 ...
login authentication
username:1
password:
在此处验证的用户是本地创建的新用户:1
密码就是配置的密文123
7楼:匿名用户
楼上的你配置毛线!!你那个配置 能远程登录我把交换机吃了
switch>en
switch#confi
configuring from terminal, memory, or ***work [terminal]?
enter configuration ***mands, one per line. end with **tl/z.
switch(config)#username 123 password 123
switch(config)#enable password 123
switch(config)#line vty 0 4
switch(config-line)#login l
switch(config-line)#login local
switch(config-line)#int vlan 1
switch(config-if)#ip add 192.168.1.1 255.255.255.0
switch(config-if)#no sh
需要我为 每条命令解释一遍么??
8楼:匿名用户
配置登陆的用户名和密码
router(config)#username test password 0 test
配置line验证方式为local
router(config)#line vty 0 4router(config-line)#login localrouter(config-line)#endrouter#wr
building configuration...
[ok]
router#
思科怎么设置交换机管理密码
9楼:银领工作室
hostname zwj //主机名
enable password 123456//超级密码
aaa new-model
aaa authentication login tel*** local //定义一个名为telent的本地aaa认证
username zwj password 0 123456 //定义一个本地的用户用及密码
inte***ce fastether***0/10
switchport access vlan 100
switchport mode access
!//10接口划分至vlan100,以下同理
inte***ce fastether***0/11
switchport access vlan 200
switchport mode access
inte***ce fastether***0/12
switchport access vlan 300
switchport mode access
inte***ce fastether***0/13
switchport access vlan 400
switchport mode access
line con 0
login authentication tel***//con口通过上面定义本地的用户密码认证
line aux 0
line vty 0 4
login authentication tel***//vty口通过上面定义本地的用户密码认证
cisco交换机不配置enable密码可以吗
1楼 匿名用户 可以在vty试图下 line vty 0 4 输入login local 低端模拟器可能不支持 然后配上用户和权限就行了 enable并非强制配置项 思科交换机想修改enable密码,怎么改啊,我知道现在的密码,就是想换一个 2楼 曲臂三十三 全局模式enable secret ab...
为所有交换机和路由器配置进入控制口的密码
1楼 匿名用户 思科交换机 顺序及 和 解释如下 enable 进入特权模式的命令 特权模式也叫做enable模式 config terminal 进入到路由器配置模式,95 路由器配置修改在此模式及其子模式内完成 line console 0 进入console 线路配置模式login 允许输入密...