配置stelnet登录系统

配置stelnet登录系统_第1张图片

  1. 按照图示配置网络拓扑,并ping测试连通性。
  2. 配置SSH server
    相比于telnet协议,ssh协议支持对报文加密传输,而非明文传送。
    在R2上生成本地RSA主机密钥对。
    rsa local-key-pair create
    查看本地密钥对中的公钥部分信息。
    display rsa local-key-pair public
    在R2上配置VTY用户界面,设置用户验证方式AAA。指定VTY类型用户界面只支持SSH协议,设备将自动禁止telnet功能。
    user-interface vty 0 4
    authentication-mode aaa
    protocol inbound ssh
    使用local-user 命令创建本地用户和口令,并以密文方式显示用户口令,指定用户名为luoluo,密码为123456
    aaa
    local-user luoluo password cipher 123456

    配置本地用户的接入类型为ssh
    local-user luoluo service-type ssh
    使用ssh user 命令新建ssh用户,用户名为luoluo,指定ssh用户的认证方式为password,密码认证方式
    ssh user luoluo authentication-type password
    配置用户优先级
    local-user luoluo privilege level 0-15
    ssh默认关闭,在R2上开启ssh功能
    stelnet server enable
    查看ssh用户配置
    display ssh user-information luoluo
    查看全局配置信息
    display ssh server status
  3. 配置 SSH client
    ssh client first-time enable
    stelnet 10.1.1.2
  4. 登录成功后使用display ssh server session命令查询ssh服务器端的当前会话连接信息。
  5. 配置SFTP server与client
    在R2上进入aaa视图,创建luoluo2用户,配置密码123456密文显示。
    aaa
    local-user luoluo2 password cipher 123456

    配置本地用户接入类型为ssh
    local-user luoluo2 service-type ssh
    配置优先级
    local-user luoluo2 privilege level 0-15
    配置ftp可访问目录。
    local-user luoluo2 ftp-directory flash:
    新建ssh用户,指定密码认证方式。
    ssh user luoluo2 authentication-type password
    开启sftp服务器功能
    sftp server enable
    配置完成后,查看ssh服务器的配置信息
    display ssh server status
    在R1上使用sftp命令连接ssh服务器。
    sftp 10.1.1.2

你可能感兴趣的:(计算机原理,深信服网络竞赛,网络原理,华为网络竞赛)