【实操】配置Telnet与SSH
實驗目的
?
1.?理解Telnet與SSH的運行原理
2.?掌握Telnet與SSH的配置方法
?
實驗拓撲
?
?
實驗需求
?
1、根據實驗拓撲圖,完成設備的基本配置;
2、SW1允許R1通過Telnet遠程管理,VTY密碼為xmws;
3、R2允許R1通過SSH version2遠程管理,用戶名為xmws,密碼為wisdom,域名為xmws.cn。
?
實驗步驟
?
步驟1:設備的基本配置
配置R1:
Router>enable
Router#configure terminal
Router(config)#hostname R1
R1(config)#no ip domain-lookup
R1(config)#line console 0
R1(config-line)#exec-timeout 0 0
R1(config-line)#logging synchronous
R1(config-line)#exit
R1(config)#enable password xmws
R1(config)#interface ethernet0/0
R1(config-if)#ip address 192.168.1.254 255.255.255.0
R1(config-if)#no shutdown
R1(config-if)#exit
R1(config)#interface ethernet0/1
R1(config-if)#ip address 192.168.12.1 255.255.255.0
R1(config-if)#no shutdown
R1(config-if)#end
R1#
?
配置R2:
Router>enable
Router#configure terminal
Router(config)#hostname R2
R2(config)#no ip domain-lookup
R2(config)#line console 0
R2(config-line)#exec-timeout 0 0
R2(config-line)#logging synchronous
R2(config-line)#exit
R2(config)#enable password xmws
R2(config)#interface ethernet0/0
R2(config-if)#ip address 192.168.12.2 255.255.255.0
R2(config-if)#no shutdown
R2(config-if)#end
R2#
?
配置SW1:
Switch>enable
Switch#configure terminal
Switch(config)#hostname SW1
SW1(config)#no ip domain-lookup
SW1(config)#line console 0
SW1(config-line)#exec-timeout 0 0
SW1(config-line)#logging synchronous
SW1(config-line)#exit
SW1(config)#enable password xmws ??//必須設置,否則Telnet上SW1后無法進入特權模式
SW1(config)#interface vlan 1
SW1(config-if)#ip address 192.168.1.1 255.255.255.0
SW1(config-if)#no shutdown
SW1(config-if)#exit
SW1(config)#ip default-gateway 192.168.1.254
SW1(config)#end
SW1#
?
步驟2:配置Telnet
配置SW1:
SW1>enable
SW1#configure terminal
SW1(config)#line vty 0 4 ??//進入VTY
SW1(config-line)#password xmws ??//設置Telnet登錄的密碼為xmws
SW1(config-line)#login ??//啟用密碼
SW1(config-line)#transport input telnet ??//允許通過Telnet遠程登錄
SW1(config-line)#end
SW1#
?
步驟3:配置SSH
配置R2:
R2>enable
R2#configure terminal
R2(config)#username xmws password wisdom ??//創建用戶名和密碼
R2(config)#ip ssh version 2 ??//啟用SSH版本2
R2(config)#ip domain-name xmws.cn ??//定義域名
R2(config)#crypto key generate rsa ??//生成密鑰
The name for the keys will be: R2.xmws.cn
Choose the size of the key modulus in the range of 360 to 4096 for your
??General Purpose Keys. Choosing a key modulus greater than 512 may take
??a few minutes.
How many bits in the modulus [512]:?1024 ??//SSHv2密鑰長度至少768位
% Generating 1024 bit RSA keys, keys will be non-exportable...
[OK] (elapsed time was 0 seconds)
R2(config)#
R2(config)#line vty 0 4
R2(config-line)#login local ??//使用用戶名和密碼驗證
R2(config-line)# transport input ssh ??//允許通過SSH遠程登錄
R2(config-line)#end
R2#
?
實驗檢查
?
步驟1:Telnet測試
- ?
- ?
- ?
- ?
- ?
- ?
- ?
- ?
- ?
- ?
- ?
- ?
- ?
- ?
- ?
- ?
- ?
- ?
- ?
- ?
- ?
?
步驟2:檢查Telnet
- ?
- ?
- ?
- ?
- ?
- ?
- ?
- ?
- ?
- ?
- ?
- ?
- ?
- ?
?
步驟3:SSH測試
R1#ssh -l xmws 192.168.12.2
Password:
R2>enable
Password:
R2# ??//成功登錄到R2
?
步驟4:檢查SSH
- ?
- ?
- ?
- ?
總結
以上是生活随笔為你收集整理的【实操】配置Telnet与SSH的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 几个常见的网络故障分析
- 下一篇: 【必看】小公司如何做网络规划