cisco2924交換機,忘記使用者名稱密碼,如何獲取其中的配置

2021-04-03 06:33:53 字數 5948 閱讀 5260

1樓:匿名使用者

如果 console口無密碼,可以直接接配置線複製出配置。如果有密碼進rom模式,重置密碼。 具體參考連線 http:

希望對你有幫助

2樓:匿名使用者

連線console口 直接恢復出廠

求cisco 交換機 telnet 使用者名稱+密碼方式配置 詳細命令

3樓:大野瘦子

switch>en

switch#confi

configuring from terminal, memory, or network [terminal]?

enter configuration commands, one per line. end with cntl/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

關於telnet的基本配置

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-4telnet會話

router(config-line)#pas

router(config-line)#password 123   /設定連線密碼

router(config-line)#login

router(config-line)#ex

router(config)#enable password qq  /設定特權密碼

/要實現telnet必須兩個密碼:特權密碼和鏈結密碼。否則將無法telnet。

例項:華為的基本配置

基本配置:

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 telnet

[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-ethernet0/0/0]ip add 1.1.1.1 255.0.0.0

[huawei-ethernet0/0/0]quit

驗證:huawei>telnet 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

4樓:匿名使用者

樓上的你配置毛線!!你那個配置 能遠端登入我把交換機吃了

switch>en

switch#confi

configuring from terminal, memory, or network [terminal]?

enter configuration commands, one per line. end with cntl/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

需要我為 每條命令解釋一遍麼??

5樓:匿名使用者

配置登陸的使用者名稱和密碼

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#

思科交換機忘記enable密碼 怎麼清除配置

6樓:小木a不傻

交換機上面有個恢復出廠設定的,應該。你戳一下試試

7樓:5分享

通過交換機串列埠工具,開機按住交換機正面"mode"按鈕,直到sys燈不閃動為止(即:常亮狀態),進入到交換機的底層模式switch:

輸入命令flash_init 回車,初始化flash檔案系統。

然後重新命名config.text檔案,就可以開機沒有密碼了。

rename flash:config.text flash:config.old

cisco 如何獲取本地使用者列表

8樓:匿名使用者

didi#show run | include username只好用show run過濾一下結果了。

9樓:匿名使用者

如果你的交換機是二層

交換機,也就是說工作於資料鏈路層,根據這一特點,我們只能在二層交換機上查到mac位址的動態表,如果是三層交換機,工作於網路層,可以查到ip的動態表。 show mac-address-table (查mac位址與交換機的埠對應,後面還可接具體的東西,加個「?」就出來了)show ip arp (三層交換機才有命令,查ip與mac位址還有交換埠的動態表) 交換機是沒辦法查計算機名的,因為這是工作於更上層的應用。

請教交換機配置aaa使用者名稱和密碼登入不上,如何解決

10樓:兄弟連教育北京總校

登入不bai上,有幾個原因:

1、使用者名稱

du和密碼zhi錯誤;

2、服務

沒dao開啟,比版如權

你用telnet登入,但是telnet服務沒開啟;

3、所使用的登入使用者名稱沒有對應服務,比如你使用telnet登入,但是你的使用者名稱沒有telnet登入的許可權;

4、服務開啟了,但是沒應用,比如telnet服務已經開啟,但是沒有應用在vty下面;

5、所使用的使用者名稱登入許可權不夠;

6、電腦和交換機不通訊。

具體配置如下:

aaalocal-user admin password cipher admin@123 //配置使用者名稱和密碼

local-user admin privilege level 15 //配置許可權

local-user admin service-type telnet //配置使用者名稱對應的登入方式

user-inte***ce vty 0 4 //應用在vty下面

authentication-mode aaa

telnet server enable//開啟telnet服務

這樣配置好之後,只要給交換機配置乙個位址,保證電腦和交換能夠通訊的情況下,就可以了

思科4507交換機,忘記特權密碼了,怎樣破解密碼,裡面的配置還不能丟?謝謝

11樓:日落於清晨

修改暫存器值繞過初始配置登入裝置,然後把startup配置copy為running配置,再修改密碼就可以了,教程很多搜一下即可。

cisco交換機如何設定不同使用者名稱和密碼telnet ????????????????????/ 10

12樓:海天盛筵

如下參考:

1.建立網路拓撲模型,對r2進行telnet認證,對r1進行aaa認證,r1的ip位址等級為:192.

168.1.1/24r2:

192.168.1.

2/24。

2.修改r1和r2的基本資訊,在介面模式下新增ip位址,ping測試通訊。

3.在r2:1上配置telnet身份驗證)呼叫虛擬介面0,4,2)將身份驗證模式設定為版本密碼驗證,3)將密碼設定為huawei1,4)將使用者許可權級別設定為3。

4.在r1上輸入telnet192.168.1.2的使用者名稱和密碼,成功登入r2。

13樓:

如果是使用的本地驗證,即使用如下命令:

>enable

#configure terminal

username cisco password cisco 設定使用者名稱和密碼

enable secret cisco 設定enable密碼line vty 0 - ? 問號下就能知道上限是多少 進入vty程序

login local 設定telnet的認證方式為本地驗證

14樓:龔正初閆木

樓上的你配置毛線!!你那個配置

能遠端登入我把交換機吃了

switch>en

switch#confi

configuring

from

terminal,

memory,

ornetwork

[terminal]?

enter

configuration

commands,

oneper

line.

endwith

cntl/z.

switch(config)#username12**assword

123switch(config)#enablepassword

123switch(config)#linevty0

4switch(config-line)#loginlswitch(config-line)#loginlocal

switch(config-line)#intvlan

1switch(config-if)#ipadd192.168.1.1

255.255.255.0

switch(config-if)#no

sh需要我為

每條命令解釋一遍麼??

思科cisco交換機有哪些型號cisco常見路由交換機的型號有那些

思科精睿 就是原先linksys系列 思科精睿 srw208 交換機思科精睿 srw224g4 交換機 思科精睿 srw248g4 交換機 思科精睿 srw2024 交換機 思科精睿 srw2048 交換機 思科精睿 slm224g2 交換機 思科精睿 sd208 交換機 思科精睿 sd2008 交...

CISCO交換機PING命令引數

1 使用ciscoping命令最簡單的方法是直接使用ip位址ping。2 高階ping的另一種方法是按照下面的步驟,輸入ping,輸入並選擇相應的選項。protocol ip 此處為協議選擇預設即可 targetipaddress 此處為ip位址。repeat count 5 此處為重得次數 dat...

cisco交換機模擬器裡,交換機一欄有好幾種型號該怎麼選

29xx的實驗中沒區別,真機才有區別,29xx和3560有區別,3560是三層。思科思科模擬器,擴充套件列表 怎麼做?cisco交換機模擬器哪個好用?至於交換機,沒有什麼比較好的模擬器,只能使用packet tracer,思科官方的模擬器,只能做一些很簡單的交換的實驗 交換機的命令,最好是需要真機。...