思科模擬器如何恢復各裝置enable密碼

2021-03-08 21:59:17 字數 4881 閱讀 1625

1樓:匿名使用者

1、啟動路由器,啟動過程中,按住「ctrl+break」鍵。這時系統會進入災難恢復模式,其提示符為:

rommon 1 >

2、修改暫存器的值為0x2142

rommon 2 >confreg 0x2142

3、重啟路由器,重啟後由於不再讀nvram中的配置檔案

rommon 3 >reset

3、進入特權模式,將naram中的配置檔案裝載到ram中

router#copy startup-config running-config

4、進入全域性配置模式,修改或者刪除密碼

router(config)#enable password [密碼]

router(config)#enable secret [密碼]

router(config)#no enable password

router(config)#no enable secret

5、還原暫存器的值為0x2102

router(config)#config-register 0x2102

6、儲存修改後的配置

router#copy running-config startup-config

ps:配置暫存器值命令:config-register

暫存器值共16位,以4位16進製制數表示。

格式:0xabcd 賦值範圍從0x0到0xffff

0x2102 :標準預設值

0x2142 :從flash中啟動,但不使用nvram中的配置檔案(用於口令恢復)

0x2101 :從boot ram中啟動,應用於更新系統檔案

0x2141 :從boot ram中啟動,但不使用nvram中的配置檔案

其中c位的第三位為1時表示關閉break鍵,反之表示開啟break鍵。

0x141:表示關閉break鍵,不使用nvram中的配置檔案,並且從系統預設的rom中的系統中啟動。

0x0040:表示允許路由器讀取nvram中的配置檔案。

config-register中各位的含義

位 十六進製制值 含義

00-03 0x0000-0x000f 啟動位

05 0x0020 使用擴充套件的console速率,19200bps以上

06 0x0040 使得系統軟體忽略nvram中的內容

07 0x0080 oem位開啟

08 0x0100 break鍵關閉

10 0x0400 ip廣播到所有域

11-12 0x0800-0x1000 console口速率

13 0x2000 如果網路啟動失敗,預設從rom中啟動

14 0x4000 不包含網路號的ip廣播

15 0x8000 啟動診斷資訊同時忽略nvram內容

2樓:

和物理機一樣的步驟,或者直接重啟。

使用cisco模擬器配置路由器的使用者名稱及密碼?

3樓:匿名使用者

router>enable //進入配置模式

router#config terminal //進入特權模式

router(config)#hostname r1 //更改裝置名稱為r1

router(config)#username cisco password 123 //設定使用者名稱cisco 密碼123

router(config)#line console 0

router(config-line)#login local//在本地使用設定的使用者名稱和密碼

r1(config)#line vty 0 4 // 設定tel***許可權

r1(config-line)#password 456 // 設定tel***下的密碼為456

r1(config-line)#login //確認

r1(config)#enable password 789 //設定 enable 密碼為789

r1#copy running-config startup-config copy run//儲存到nvram

4樓:匿名使用者

router(config)#line console 0 //配置控制口

router(config-line)#password 456 //配置密碼

router(config-line)#login //開啟密碼生效

router(config-line)#exit

router(config)#enable password 123 //配置特權模式密碼

router(config)#username be*** password cisco //建立本地使用者be***和密碼cisco

router(config)#line vty 0 4 //配置vty 埠 0-4

router(config-line)#login local //設定遠端登入使用本地使用者名和密碼

router(config-line)#exit

router(config)#service password-encryption //加密所有密碼

router(config)#int f0/0

router(config-if)#ip add 192.168.1.100 255.255.255.0 //設定乙個介面當管理ip

遠端登入必須要滿足三個條件:

特權密碼,vty密碼還有管理ip位址

5樓:匿名使用者

依次是特權使用者密碼、控制口密碼、遠端登入

注意別忘了使用login命令

6樓:匿名使用者

enable //進入配置模式

config terminal //進入特權模式hostname //更改裝置名稱

username // 設定使用者名稱

password // 設定密碼

line vty 0 4 // 設定tel***許可權password // 設定tel***下的密碼enable password //設定 enable 密碼write // 儲存

yes // 同意儲存

7樓:匿名使用者

router(

config)#username cisco password cisco

建立使用者名稱cisco 密碼是cisco

router(config)#line vty 0 4配置遠端登入(tel***)

router(config-line)#password cisco配置tel***密碼為cisco

router(config-line)#loggin開啟tel***

router(config-line)#login local在tel***上開啟本地使用者認證也就是開啟username認證router(config)#enable secret cisco配置特權密碼

8樓:傑

router>enable   //進入特權模式

router#config terminal   //進入全域性配置模式

router(config)#hostname r1   //更改裝置名稱

r1(config)#username cisco password 123456   //設定使用者名稱cisco 密碼123456

r1(config)#line console 0   //配置控制口

r1(config-line)#login local   //在本地使用設定的使用者名稱和密碼

r1(config)#service password-encryption   //加密所有密碼

r1#copy running-config startup-config   //儲存當前的配置

思科模擬器中路由器如何設定password secret密碼

9樓:安靜沒幾天

r1(config)#enable password (這裡是密碼)

r1(config)#enable secret (這裡是密碼)

兩個都是設定密碼,不過下面一條的命令安全性更高,兩個任意設定乙個密碼就行了。

10樓:匿名使用者

你好;設定乙個八位數的密碼就可以了。

11樓:網路板藍根

r1(config)#enable password

看的明白麼?

思科模擬器中路由器如何設定password secret密碼

12樓:闕亭晚關甲

r1(config)#enable

password

(這裡是密碼)

r1(config)#enable

secret

(這裡是密碼)

兩個都是設定密碼,不過下面一條的命令安全性更高,兩個任意設定乙個密碼就行了。

思科模擬器tel***登陸特權模式密碼問題

13樓:匿名使用者

就是在全域性模式配置啊

enable password ***xx這個是明文密碼 在sh run 可以看到。

enable secret 是密文密碼.

14樓:不書桃文墨

password

後面輸入的就是密碼,不過密碼不顯示而已,輸入密碼的時候游標會隨著輸入往後移動的,等你輸完的時候按回車鍵就ok了

思科模擬器配置在思科模擬器上怎麼進行交換機的基本配置

樓主,你好 很簡單,我手動敲一下 f0 0為出口埠 f0 1為內網介面 配置如下 router inte ce f0 0 no shu ip nat outside exit inte ce f0 1 no shu exit inter f0 1.10 encap dot1q 10 封裝 dot1q...

思科模擬器交換機怎麼配置ip在思科模擬器上如何進行交換機的基本配置?

int f0 1 no switchport ip add x.x.x.x x.x.x.x二層交換機配不了ip 模擬器裡面安裝個我們軟體 很多都可以用 但效果可能不太一樣 找到適合自己的才是最好的。可以測試一下。軟體名稱 兔子,動態。ip 軟體語言 簡體中文 軟體類別 網路加速 執行環境 winxp...

求乙份思科模擬器做的拓撲圖,用思科模擬器如何搭建求大神指教命令與拓撲圖

你好 風煙俱淨附上你所需求的,使用思科pt 5.3.0模擬器完成你的實驗需求,附件就是了 滿意請採納 ip mic 什麼都沒有 用思科模擬器如何搭建求大神指教命令與拓撲圖 大致的網路拓撲就如圖,不同人不同思想有點不同,但意思一樣,基本配置你應該懂,我這裡傳不了配置好的檔案給你,所以說一下關鍵配置 1...