使用telnet服務和ssh服務在真實機上訪問h3c模擬器中的路由器
阿新 • • 發佈:2019-03-10
add word 連接 pen putty client cmd ip地址 inb 要使用telnet服務和ssh服務訪問路由器,就要先ping通真實機與模擬路由器的ip地址,步驟如下:
1.在華三模擬器上添加並啟動MR36_20_1的路由器和host主機。 user-role network-admin
Public-key local create rsa
Int g0/0
ip add 192.168.1.2 24
un sh
quit
ssh server enable
line vty 0 4
authentication-mode scheme
protocol inbound ssh
quit
local-user sshclient
password simple abc
service-type ssh
authorization-attribute user-role network-admin
1.在華三模擬器上添加並啟動MR36_20_1的路由器和host主機。
2.在真實機上添加一塊新的網卡,win 10 的添加微軟的回環適配器即可,並將ip地址設置為192.168.1.10。
3.然後在華三模擬器上用線連接路由器和host主機的回環網卡。
4.在路由器上點擊右鍵選擇“配置終端命令”。
Sys
telnet server enable
int g0/0
ip add 192.168.1.2 24
un sh
quit
line vty 0 4
set authentication password simple 123456
5.配置終端命令使用超級終端putty這個軟件來進入到路由器。打開putty,我們將地址設置為與新添加的網卡同一網段(192.168.1.2),選擇telnet,其他不變,點擊最後下面的open打開路由器的終端即可。
6.然後進入路由器的終端即可配置路由器了。
7.這時可以打開真實機的命令提示符cmd,先做ping通性測試路由器ip,然後使用telnet登錄路由器即可。命令內容如下:
Ping 192.168.1.2
telnet 192.168.1.2
123456 //登錄密碼
8.Ssh服務登錄跟telnet差不多。
Int g0/0
ip add 192.168.1.2 24
un sh
quit
ssh server enable
line vty 0 4
authentication-mode scheme
protocol inbound ssh
quit
local-user sshclient
password simple abc
service-type ssh
authorization-attribute user-role network-admin
使用telnet服務和ssh服務在真實機上訪問h3c模擬器中的路由器