举例:H3C MSR 2600 V7平台
交换机管理IP为192.168.254.1/24 电脑能ping通交换机
说明:
SSH是密文传输,交换机需要创建本地秘钥对,协议要包含SSH
如图:
#1、创建VLAN 配置管理IP地址 保证PC与设备通信
vlan 254
quit
interface vlan 254
ip address 192.168.254.1 255.255.255.0
quit
#PC口加入VLAN254 确保PC能ping通交换机
int g0/1
port link-type access
port access vlan 254
quit
#2,开ssh服务
ssh server enable
#3,创建本地密钥对,直接回车,默认长度加密
public-key local create rsa
#
public-key local create dsa
#
#4,创建ssh管理 权限等信息
local-user admin
password simple admin
authorization-attribute level 3
service-type ssh
quit
#5,配置vty界面支持的登录协议
user-interface vty 0 4
authentication-mode scheme
user privilege level 3
protocol inbound all
quit
#6、添加默认路由指向网关,让其它网段能访问
ip route-static 0.0.0.0 0 192.168.254.254