cisco思科如何進(jìn)行Telnet訪問?
cisco思科如何進(jìn)行Telnet訪問?跟我一起來看看吧。下面是小編為大家精心整理的關(guān)于cisco思科如何進(jìn)行Telnet訪問?,希望能夠幫助到你們。
方法/步驟
1搭建拓?fù)浣Y(jié)構(gòu),如圖1所示Router0與switch0之間的線路無法聯(lián)通,雙擊Router0---config--FastEthernet0/0--勾選ON,打開FastEthernet0/0的端口,1-2秒網(wǎng)絡(luò)慢慢聯(lián)通。
2在PC0計算機(jī)上使用Console對rouer0進(jìn)行配置,代碼如下:
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname R1 //修改Router0名字
R1(config)#line vty 0 4 //進(jìn)入路由器的Vty虛擬終端
R1(config-line)#password cisco //設(shè)置vty密碼也就是telnet密碼
R1(config-line)#login
R1(config)#enable password cisco //設(shè)置進(jìn)入路由器的特權(quán)模式密碼
R1(config)#int f0/0
R1(config-if)#ip address 172.16.68.88 255.255.255.0 //設(shè)置 F0/0的IP子網(wǎng)掩碼
R1(config-line)#exit
3雙擊PC2設(shè)置ip地址,config--IPconfiguration,詳細(xì)設(shè)置見下圖,使用Command Prompt,輸入ping 172.16.68.88測試router0與PC2是否聯(lián)通,如果聯(lián)通會出現(xiàn) 如下信息,Reply表示連接成功。
Pinging 172.16.68.88 with 32 bytes of data:
Reply from 172.16.68.88: bytes=32 time=0ms TTL=255
Reply from 172.16.68.88: bytes=32 time=6ms TTL=255
Reply from 172.16.68.88: bytes=32 time=0ms TTL=255
Reply from 172.16.68.88: bytes=32 time=0ms TTL=255
4接著步驟3內(nèi)容輸入
PC>telnet 172.16.68.88 //遠(yuǎn)程連接ROUTER0
Trying 172.16.68.88 ...Open //表示連接成功
User Access Verification
Password:
R1>en
Password:
R1#conf t
Enter configuration commands, one per line. End with CNTL/Z.
cisco思科如何進(jìn)行Telnet訪問?相關(guān)文章:
3.使用telnet遠(yuǎn)程管理命令連接交換機(jī)的教程