1. 程式人生 > 其它 >配置SSH遠端管理

配置SSH遠端管理

技術標籤:網路

需求 :
R2允許R1通過SSH version2遠端管理,使用者名稱為wang,密碼為123456,域名為wang.cn。
拓撲圖如下:
在這裡插入圖片描述
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)#enable password 123456
R1(config)#int  s2/0
R1(config-if)#ip add 192.168.1.254 255.255.255.0
R1(config-if)#no sh

R2基本配置

R2(config)#no ip domain-lookup 
R2(config)#line console 0
R2(config-line)#logging synchronous 0 0
R2(config-line)#logging synchronous 
R2(config)#enable password 123456
R2(config)#int s2/0
R2(config-if)#ip add 192.168.1.1 255.255.255.0
R2(config-if)#no sh

在R2配置SSH

username wang password 123456
R2(config)#ip ssh v 2
R2(config)#ip domain-name wang.cn
R2(config)#crypto key generate rsa 
How many bits in the modulus [512]: 1024
R2(config)#line vty 0 4
R2(config-line)#transport input ssh 

SSH 測試
在這裡插入圖片描述
檢查SSH
在這裡插入圖片描述