- Community Home
- >
- Networking
- >
- Switching and Routing
- >
- Comware Based
- >
- How to enable SSH on H3C S5800?
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2015 12:07 PM
01-05-2015 12:07 PM
Hello folks,
I am trying to figure out how to enable a new user for SSH access.
<H3C> system-view
[H3C] interface vlan-interface 1
[H3C-Vlan-interface1] ip address 192.168.32.30 255.255.255.0
[H3C-Vlan-interface1] quit
# This command was not available!
[H3C] rsa local-key-pair create
# Set the authentication mode for the user interfaces to AAA.
[H3C] user-interface vty 0 4
[H3C-ui-vty0-4] authentication-mode scheme
# Enable the user interfaces to support SSH.
[H3C-ui-vty0-4] protocol inbound ssh
[H3C-ui-vty0-4] quit
# Create local client “client001â€, and set the authentication password to “abcâ€, protocol type to SSH, and command privilege level to 3 for the client.
[H3C] local-user sshuser
[H3C-luser-client001] password simple abc
[H3C-luser-client001] service-type ssh level 3
[H3C-luser-client001] quit
# Specify the authentication method of user client001 as password This command was not available.
[H3C] ssh user sshuser authentication-type password
# Instead I ran this command available.
[H3C] ssh user sshuser service-type all authentication-type password
I can ping it but connection is refused.
I am following this article example.
Anyone have a suggestion?
Solved! Go to Solution.
- Tags:
- ssh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2015 11:31 PM
01-06-2015 11:31 PM
SolutionYou should add:
[...]
ssh server enable
public local create rsa
local-user sshuser
password simple abc
service-type ssh
authorization-attribute level 3
[...]
That will solve your issue.
br
Manuel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2015 06:15 AM - edited 01-07-2015 02:28 PM
01-07-2015 06:15 AM - edited 01-07-2015 02:28 PM
Re: How to enable SSH on H3C S5800?
Thank you very much! That worked!!