cisco交換機設(shè)置telnet
cisco交換機設(shè)置telnet
思科(Cisco)路由器是一個集成多業(yè)務(wù)路由器,同事也是一個網(wǎng)絡(luò)路由器,那么cisco交換機設(shè)置telnet??有網(wǎng)友提到自己不會設(shè)置思科的設(shè)備,該怎么辦?學(xué)習(xí)啦小編在網(wǎng)上找了一些教程及命令,需要的朋友可以參考下。
以下是cisco交換機Telnet配置具體操作
switch>en ;第一次密碼為空
switch#conf t ;進入全局配置模式
switch(config)#hostname swa ;設(shè)置交換機名
swa(config)#enable secret 456 ;設(shè)置特權(quán)加密口令為(即:從普通模式進入特權(quán)(en)模式的口令為:456)
swa(config)#enable password 789 ;設(shè)置特權(quán)非密口令為:789
swa(config)#line console 0 ;進入控制臺口(Rs232)
swa(config-line)#password 999 ;設(shè)置登錄口令為:999(即:登錄到交換機的配置狀態(tài),就是普通用戶模式啦)舉個例子加入你現(xiàn)在在特權(quán)(en)模式想返回到普通模式下,呵呵是要輸入這個密碼的。
swa(config-line)#login ;登錄要求口令驗證
swa(config-line)#line vty 0 4 ;進入虛擬終端virtual tty
swa(config-line)#password 123 ;設(shè)置登錄口令(即:從遠程pc機Telnet到交換機時代登錄口令為:123)
swa(config-line)#login ;登錄要求口令驗證
swa(config-line)#exit ;返回上一層
swa(config)#exit ;返回上一層
swa#sh run ;看配置信息
swa#exit ;返回命令
(注:1.藍色字體的配置可以省略
2.另外:一般都是配enable secret 因為安全度高,如果你同時配了enable secret和enable password的時候,后者就失效了,登陸的時候,只需輸入enable secret的密碼即可。)
在配置之前要還要給交換機配置管理IP。配置如下
RA#
RA#conf t
RA(config)#interface vlan 1
RA(config-if)#ip address 192.168.2.100 255.255.255.0
RA(config-if)#no shutdown
%LINK-5-CHANGED: Interface Vlan1, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan1, changed state to up
RA(config-if)#exit
RA(config)#exit
RA#
以上內(nèi)容來自互聯(lián)網(wǎng),希望對大家有所幫助。