您的当前位置:首页正文

H3C防火墙基础配置1-登录配置、安全域配置

2024-11-09 来源:个人技术集锦

1 登录配置

 

添加管理类本地用户

local-user test class manage  

  password simple string

  service-type {ftp|http|https|ssh|telnet|terminal}

 

添加网络接入类本地用户

local-user test2 class network

   password simple string

   service-type {advpn|ike|portal|ppp|sslvpn}

 

默认密码admin/admin

配置认证方式

line console 0

  authentication-mode shceme

  user-role network-adimin

line vty 0 4

  authentication-mode scheme

  user-role network-adimin

 

line console 0

   authentication-mode password

   set authentication password simple password

 

配置telnet:

telnet server enable

line vty 0 4

  authentication-mode scheme  //或者protocol inbound {all|ssh|telnet}

  user-role network-adimin

 

Top