H3C S5510 Series Operating instructions

Type
Operating instructions

This manual is also suitable for

Operation Manual – SSH
H3C S5500-EI Series Ethernet Switches Table of Contents
i
Table of Contents
Chapter 1 SSH Configuration.......................................................................................................1-1
1.1 SSH2.0 Overview...............................................................................................................1-1
1.1.1 Algorithm and Key...................................................................................................1-1
1.1.2 Asymmetric Key Algorithm......................................................................................1-2
1.1.3 SSH Operating Process..........................................................................................1-2
1.2 Configuring the Device as an SSH Server ........................................................................1-6
1.2.1 SSH Server Configuration Task List .......................................................................1-6
1.2.2 Enabling SSH Server..............................................................................................1-6
1.2.3 Configuring the User Interfaces for SSH Clients.....................................................1-6
1.2.4 Configuring RSA and DSA Keys.............................................................................1-7
1.2.5 Configuring a Client Public Key...............................................................................1-9
1.2.6 Configuring an SSH User......................................................................................1-10
1.2.7 Setting the SSH Management Parameters...........................................................1-12
1.3 Configuring the Device as an SSH Client........................................................................1-13
1.3.1 SSH Client Configuration Task List.......................................................................1-13
1.3.2 Specifying a Source IP address/Interface for the SSH client................................ 1-13
1.3.3 Configuring Whether First-time Authentication is Supported................................1-13
1.3.4 Establishing a Connection Between the SSH Client and the Server....................1-15
1.4 Displaying and Maintaining SSH .....................................................................................1-15
1.5 SSH Server Configuration Examples...............................................................................1-16
1.5.1 When Using Password Authentication..................................................................1-16
1.5.2 When Using Publickey Authentication..................................................................1-18
1.6 SSH Client Configuration Examples................................................................................1-24
1.6.1 When Using Password Authentication..................................................................1-24
1.6.2 When Using Publickey Authentication..................................................................1-27
Chapter 2 SFTP Service................................................................................................................ 2-1
2.1 SFTP Overview..................................................................................................................2-1
2.2 Configuring an SFTP Server..............................................................................................2-1
2.2.1 Configuration Prerequisites.....................................................................................2-1
2.2.2 Enabling the SFTP Server ......................................................................................2-1
2.2.3 Configuring the SFTP Connection Idle Timeout Period..........................................2-2
2.3 Configuring an SFTP Client...............................................................................................2-2
2.3.1 Specifying a Source IP Address or Interface for the SFTP Client ..........................2-2
2.3.2 Establishing a Connection to the SFTP Server.......................................................2-3
2.3.3 Working with the SFTP Directories.........................................................................2-3
2.3.4 Working with SFTP Files.........................................................................................2-4
2.3.5 Displaying Help Information....................................................................................2-5
Operation Manual – SSH
H3C S5500-EI Series Ethernet Switches Table of Contents
ii
2.3.6 Terminating the Connection to the Remote SFTP Server ......................................2-6
2.4 SFTP Configuration Example............................................................................................2-6
Operation Manual – SSH
H3C S5500-EI Series Ethernet Switches Chapter 1 SSH Configuration
1-1
Chapter 1 SSH Configuration
When configuring SSH, go to these sections for information you are interested in:
z SSH2.0 Overview
z Configuring the Device as an SSH Server
z Configuring the Device as an SSH Client
z Displaying and Maintaining SSH
z SSH Server Configuration Examples
z SSH Client Configuration Examples
1.1 SSH2.0 Overview
Secure Shell (SSH) offers an approach to securely logging into a remote device. By
encryption and strong authentication, it protects devices against attacks such as IP
spoofing and plain text password interception.
The device can not only work as an SSH server to support connections with SSH
clients, but also work as an SSH client to allow users to establish SSH connections with
a remote device acting as the SSH server.
Note:
Currently, when acting as an SSH server, the device supports two SSH versions: SSH2
and SSH1. When acting as an SSH client, the device supports SSH2 only.
1.1.1 Algorithm and Key
Algorithm is a set of transformation rules for encryption and decryption. Information
without being encrypted is known as plain text, while information that is encrypted is
known as cipher text. Encryption and decryption are performed using a string of
characters called a key, which controls the transformation between plain text and cipher
text, for example, changing the plain text into cipher text or cipher text into plain text.
Figure 1-1 Encryption and decryption
Operation Manual – SSH
H3C S5500-EI Series Ethernet Switches Chapter 1 SSH Configuration
1-2
Key-based algorithm is usually classified into symmetric key algorithm and asymmetric
key algorithm.
1.1.2 Asymmetric Key Algorithm
Asymmetric key algorithm means that a key pair exists at both ends. The key pair
consists of a private key and a public key. The public key is effective for both ends,
while the private key is effective only for the local end.
Asymmetric key algorithm encrypts data using the public key and decrypts the data
using the private key, thus ensuring data security.
You can also use the asymmetric key algorithm for digital signature. For example, user
1 adds his signature to the data using the private key, and then sends the data to user 2.
User 2 verifies the signature using the public key of user 1. If the signature is correct,
this means that the data originates from user 1.
Revest-Shamir-Adleman Algorithm (RSA) and Digital Signature Algorithm (DSA) are
both asymmetric key algorithms. RSA can be used for data encryption and signature,
whereas DSA is used for signatures only.
Note:
Currently, SSH2 supports both RSA and DSA.
1.1.3 SSH Operating Process
The session establishment between an SSH client and the SSH server involves the
following five stages:
Table 1-1 Stages in establishing a session between the SSH client and the server
Stages Description
Version negotiation
SSH1 and SSH2 are supported. The two parties
negotiate a version to use.
Key and algorithm negotiation
SSH supports multiple algorithms. The two parties
negotiate an algorithm for communication.
Authentication
The SSH server authenticates the client in
response to the client’s authentication request.
Session request This client sends a session request to the server.
Interactive session
The client and the server start to communicate with
each other.
Operation Manual – SSH
H3C S5500-EI Series Ethernet Switches Chapter 1 SSH Configuration
1-3
I. Version negotiation
z The server opens port 22 to listen to connection requests from clients.
z The client sends a TCP connection request to the server. After the TCP
connection is established, the server sends the first packet to the client, which
includes a version identification string in the format of “SSH-<primary protocol
version number>.<secondary protocol version number>-<software version
number>”. The primary and secondary protocol version numbers constitute the
protocol version number, while the software version number is used for
debugging.
z The client receives and resolves the packet. If the protocol version of the server is
lower but supportable, the client uses the protocol version of the server; otherwise,
the client uses its own protocol version.
z The client sends to the server a packet that contains the number of the protocol
version it decides to use. The server compares the version carried in the packet
with that of its own to determine whether it can cooperate with the client.
z If the negotiation is successful, the server and the client proceed with key and
algorithm negotiation; otherwise, the server breaks the TCP connection.
Note:
All the packets involved in the above steps are transferred in plain text.
II. Key and algorithm negotiation
z The server and the client send key algorithm negotiation packets to each other,
which include the supported public key algorithm list, encryption algorithm list,
MAC algorithm list, and compression algorithm list.
z Based on the received algorithm negotiation packets, the server and the client
figure out the algorithms to be used.
z The server and the client use the DH key exchange algorithm and parameters
such as the host key pair to generate the session key and session ID.
Through the above steps, the server and the client get the same session key, which is
to be used to encrypt and decrypt data exchanged between the server and the client
later. The server and the client use session ID in the authentication stage.
Operation Manual – SSH
H3C S5500-EI Series Ethernet Switches Chapter 1 SSH Configuration
1-4
Caution:
Before the negotiation, the server must have already generated the RSA and DSA key
pairs, which are mainly used for generating the session key.
III. Authentication
z The client sends to the server an authentication request, which includes the
username, authentication method and information related to the authentication
method (the password in the case of password authentication).
z The server authenticates the client. If the authentication fails, the server informs
the client by sending a message, which includes a list of available methods for
re-authentication.
z The client selects a method from the list to initiate another authentication.
z The above process repeats until the authentication succeeds or the authentication
times timeout and the session is torn down.
SSH provides two authentication methods: password authentication and publickey
authentication.
In password authentication:
z The client encrypts the username and password, encapsulates them into a
password authentication request, and sends the request to the server.
z Upon receiving the request, the server decrypts the username and password,
compares them against those it maintains, and then informs the client of the
authentication result.
In publickey authentication:
z The server authenticates clients using digital signatures. Currently, the device
supports two publickey algorithms to implement digital signatures: RSA and DSA.
The client sends to the server a public authentication request containing its user
name, public key and algorithm. The server validates the public key. If the public
key is invalid, the authentication fails; otherwise, the server generates a digital
signature to authenticate the client, and then sends back a message to inform the
success or failure of the authentication.
Operation Manual – SSH
H3C S5500-EI Series Ethernet Switches Chapter 1 SSH Configuration
1-5
Note:
Besides password authentication and publickey authentication, SSH provides another
two authentication methods:
z password-publickey: Performs both password authentication and publickey
authentication of the client. A client running SSH1 client only needs to pass either
type of the two, while a client running SSH2 client must pass both of them to login.
z any: Performs either password authentication or publickey authentication. The
client tries publickey authentication first.
IV. Session request
After passing authentication, the client sends a session request to the server, while the
server listens to and processes the request from the client. If the client passes
authentication, the server sends back to the client an SSH_SMSG_SUCCESS packet
and goes on to the interactive session stage with the client. Otherwise, the server
sends back to the client an SSH_SMSG_FAILURE packet, indicating that the
processing fails or it cannot resolve the request.
V. Interactive session
In this stage, the server and the client exchanges data in this way:
z The client encrypts and sends the command to be executed to the server.
z The server decrypts and executes the command, and then encrypts and sends the
result to the client.
z The client decrypts and displays the result on the terminal.
Note:
z During interactive session, the client can send the commands to be performed by
pasting the text, which must be within 2000 bytes. It is recommended that the text
pasted be commands in the same view; otherwise, the server may not be able to
perform the commands.
z If the text exceeds 2000 bytes, you can upload the configuration file to the server
and use the configuration file to restart the server so that the server executes the
commands.
Operation Manual – SSH
H3C S5500-EI Series Ethernet Switches Chapter 1 SSH Configuration
1-6
1.2 Configuring the Device as an SSH Server
1.2.1 SSH Server Configuration Task List
Complete the following tasks to configure an SSH server:
Task Remarks
Enabling SSH Server Required
Configuring the User Interfaces for SSH Clients Required
Creating RSA or DSA key pairs Required
Exporting RSA or DSA key pairs Optional
Configuring
RSA and DSA
Keys
Destroying RSA or DSA key pairs Optional
Configuring a Client Public Key
Required for publickey
authentication users and
optional for password
authentication users
Configuring an SSH User Optional
Setting the SSH Management Parameters Optional
Note:
As a client uses either RSA or DSA algorithm for authentication and different clients
may support different algorithms, the server needs to generate both RSA and DSA key
pairs for successful authentication.
1.2.2 Enabling SSH Server
Follow these steps to enable SSH server:
To do… Use the command… Remarks
Enter system view
system-view
Enable the SSH server
function
ssh server enable
Required
Disabled by default
1.2.3 Configuring the User Interfaces for SSH Clients
An SSH client accesses the device through a VTY user interface. Therefore, you need
to configure the user interfaces for SSH clients to allow SSH login. Note that the
configuration takes effect at the next login.
Operation Manual – SSH
H3C S5500-EI Series Ethernet Switches Chapter 1 SSH Configuration
1-7
Follow these steps to configure the protocols for the current user interface to support:
To do… Use the command… Remarks
Enter system view
system-view
Enter user interface view
of one or more user
interfaces
user-interface vty number
[ ending-number ]
Required
Set the login
authentication method to
scheme
authentication-mode
scheme
[ command-authorization ]
Required
By default, the
authentication mode is
password.
Specify the protocols for
the user interfaces to
support
protocol inbound { all | ssh
| telnet }
Optional
All protocols are
supported by default.
Caution:
z For detailed information about the authentication-mode and protocol inbound
commands, refer to Login Commands.
z If you configure a user interface to support SSH, be sure to configure the
corresponding authentication method with the authentication-mode scheme
command.
z For a user interface configured to support SSH, you cannot configure the
authentication-mode password command and the authentication-mode none
command.
1.2.4 Configuring RSA and DSA Keys
I. Creating RSA or DSA key pairs
For successful SSH login, you must create the RSA or DSA key pairs first.
Follow these steps to create an RSA or DSA key pair:
To do… Use the command… Remarks
Enter system view
system-view
Create the local RSA key
pair
public-key local create
rsa
Create the local DSA key
pair
public-key local create
dsa
Required
Use either command.
By default, there is neither
RSA key pair nor DSA key
pair.
Operation Manual – SSH
H3C S5500-EI Series Ethernet Switches Chapter 1 SSH Configuration
1-8
Caution:
z Configuration of the rsa local-key-pair create and public-key local create dsa
command can survive a reboot. You only need to configure it once.
z The length of an RSA server/host key is in the range 512 to 2048 bits. With SSH2,
however, some clients require that the keys generated by the server must not be
less than 768 bits.
z The length of a DSA host key is in the range 512 to 2048 bits. With SSH2,
nevertheless, some clients require that the keys generated by the server must not
be less than 768 bits.
II. Exporting RSA or DSA key pairs
You can display or export the local RSA or DSA host key for setting the host key on the
remote end.
Follow these steps to display or export an RSA or DSA host key:
To do… Use the command… Remarks
Enter system view
system-view
Display the local RSA host key on
the screen in a specified format, or
export it to a specified file
public-key local export
rsa { openssh | ssh1 |
ssh2 } [ filename ]
Display the local DSA host key on
the screen in a specified format, or
export it to a specified file
public-key local export
dsa { openssh | ssh2 }
[ filename ]
Required
Use either
command.
III. Destroying RSA or DSA key pairs
Follow these steps to destroy an RSA or DSA key pair:
To do… Use the command… Remarks
Enter system view
system-view
Destroy the local RSA key
pair
public-key local destroy
rsa
Destroy the local DSA key
pair
public-key local destroy
dsa
Required
Use either command.
Operation Manual – SSH
H3C S5500-EI Series Ethernet Switches Chapter 1 SSH Configuration
1-9
1.2.5 Configuring a Client Public Key
Note:
This configuration task is only necessary for SSH users using publickey authentication.
For an SSH user that uses publickey authentication to login, the server must be
configured with the client RSA or DSA host public key in advance, and the
corresponding private key for the client must be specified on the client.
You can manually configure or import the publickey public key from a public key file. In
the former case, you can manually copy the client’s public key configuration to the
server. In the latter case, the system automatically converts the public key to a string
coded using the PKCS standard. Before importing the public key, you must upload the
public key file (in binary) to the server through FTP or TFTP.
Caution:
z When the device functions as the SSH server, you cannot use Secure CRT 4.07 to
upload the client public key to the server.
z You can configure at most 20 client pubic keys on an SSH server.
I. Configuring a client public key manually
Follow these steps to configure the client public key manually:
To do… Use the command… Remarks
Enter system view
System-view
Enter public key view
public-key peer
keyname
Enter public key code
view
public-key-code begin
Operation Manual – SSH
H3C S5500-EI Series Ethernet Switches Chapter 1 SSH Configuration
1-10
To do… Use the command… Remarks
Configure a client public
key
Enter the content of the
public key
Required
The content must be a
hexadecimal string that is
generated randomly by
the SSH-supported client
software and coded
compliant to PKCS.
Spaces and carriage
returns are allowed
between characters.
Return from public key
code view to public key
view
public-key-code end
When you exit public key
code view, the system
automatically saves the
public key.
Return from public key
view to system view
peer-public-key end
II. Importing a client public key from a public key file
Follow these steps to import a public key from a public key file:
To do… Use the command… Remarks
Enter system view
system-view
Import the public key from
a public key file
public-key peer
keyname import sshkey
filename
Required
1.2.6 Configuring an SSH User
This configuration allows you to create an SSH user and specify the service type and
authentication method.
Follow these steps to configure an SSH user:
Operation Manual – SSH
H3C S5500-EI Series Ethernet Switches Chapter 1 SSH Configuration
1-11
To do… Use the command… Remarks
Enter system view
system-view
For stelnet
users
ssh user username service-type
stelnet authentication-type
{ password | { any |
password-publickey | publickey }
assign publickey keyname }
Create an
SSH user,
and specify
the service
type and
authenticati
on method
For all
users or
sftp users
ssh user username service-type { all
| sftp } authentication-type
{ password | { any |
password-publickey | publickey }
assign publickey keyname
work-directory directory-name }
Required
Use either
command.
Caution:
z After passing AAA authentication, an AAA user without SSH user account still can
log on to the server using password authentication and Stelnet or SFTP service.
z An SSH server supports up to 1024 SSH users.
z The service type of an SSH user can be Stelnet or SFTP. stelnet, or the secure
Telnet protocol, refers to the traditional SSH service. For information about stelnet,
refer to
SSH2.0 Overview. sftp represents the secure FTP protocol. For information
about sftp, refer to
SFTP Overview.
z For successful login through SFTP, you must set the user service type to sftp or all.
z You can set the service type of an SSH user to stelnet or all if the user does not
need SFTP service.
z As SSH1 does not support service type sftp, if the client uses SSH1 to log in to the
server, you must set the service type to stelnet or all on the server. Otherwise, the
client will fail to log in successfully.
z The working folder of an SFTP user is subject to the user authentication method.
For a user using only password authentication, the working folder is the AAA
authorized one. For a user using only publickey authentication or using both the
publickey and password authentication methods, the working folder is the one set
by using the ssh user command.
z The configured authentication method takes effect when the user logs in next time.
Operation Manual – SSH
H3C S5500-EI Series Ethernet Switches Chapter 1 SSH Configuration
1-12
Note:
For users using publickey authentication:
z You must configure on the device the corresponding username and public keys.
z After login, the commands available for a user are determined by the user privilege
level, which is configured with the user privilege level command on the user
interface. By default, the command privilege level is 0.
For users using password authentication:
z You can configure the accounting information either on the device or on the remote
authentication server (such as RADIUS authentication server).
z After login, the commands available to a user are determined by AAA authorization.
1.2.7 Setting the SSH Management Parameters
SSH management includes:
z Enabling the SSH server to be compatible with SSH1
z Setting the server key pair update interval, applicable to users using SSH1 client.
z Setting the SSH user authentication timeout period
z Setting the maximum number of SSH authentication attempts
Setting the above parameters can help avoid malicious guess at and cracking of the
keys and usernames, securing your SSH connections.
Follow these steps to set the SSH management parameters:
To do… Use the command… Remarks
Enter system view
system-view
Enable the SSH server to
work with SSH1.x clients
ssh server
compatible-ssh1x
enable
Optional
By default, the SSH
server can work with
SSH1.x clients.
Set the RSA server key
pair update interval
ssh server
rekey-interval hours
Optional
0 by default, that is, the
RSA server key pair is not
updated.
Set the SSH user
authentication timeout
period
ssh server
authentication-timeout
time-out-value
Optional
60 seconds by default
Set the maximum number
of SSH authentication
attempts
ssh server
authentication-retries
times
Optional
3 by default
Operation Manual – SSH
H3C S5500-EI Series Ethernet Switches Chapter 1 SSH Configuration
1-13
Note:
Authentication will fail if the number of authentication attempts (including both
publickey and password authentication) exceeds that specified in the ssh server
authentication-retries command.
1.3 Configuring the Device as an SSH Client
1.3.1 SSH Client Configuration Task List
Complete the following tasks to configure an SSH client:
Task Remarks
Specifying a Source IP address/Interface for the SSH client Optional
Configuring Whether First-time Authentication is Supported Optional
Establishing a Connection Between the SSH Client and the Server Required
1.3.2 Specifying a Source IP address/Interface for the SSH client
This configuration task allows you to specify a source IP address or interface for the
client to access the SSH server, improving service manageability.
To do… Use the command… Remarks
Enter system view
system-view
Specify a source IPv4
address or interface for
the SSH client
ssh client source { ip
ip-address | interface
interface-type
interface-number }
Specify a
source IP
address or
interface
for the
SSH client
Specify a source IPv6
address or interface for
the SSH client
ssh client ipv6 source
{ ipv6 ipv6-address |
interface interface-type
interface-number }
Required
By default, the
address of the
interface
decided by the
routing is used
to access the
SSH server
1.3.3 Configuring Whether First-time Authentication is Supported
When the device connects to the SSH server as an SSH client, you can configure
whether the device supports first-time authentication.
Operation Manual – SSH
H3C S5500-EI Series Ethernet Switches Chapter 1 SSH Configuration
1-14
z With first-time authentication, when an SSH client not configured with the server
host public key accesses the server for the first time, the user can continue
accessing the server, and save the host public key on the client for use in
subsequent authentications.
z Without first-time authentication, a client not configured with the server host public
key will be denied of access to the server. To access the server, a user must
configure in advance the server host public key locally and specify the public key
name for authentication.
I. Enable the device to support first-time authentication
Follow these steps to enable the device to support first-time authentication:
To do... Use the command… Remarks
Enter system view
system-view
Enable the device to
support first-time
authentication
ssh client first-time enable
Optional
By default, first-time
authentication is
supported on a client.
II. Disable first-time authentication
For successful authentication of an SSH client not supporting first-time authentication,
the server host public key must be configured on the client and the public key name
must be specified.
Follow these steps to disable first-time authentication:
To do... Use the command… Remarks
Enter system view
system-view
Disable first-time
authentication support
undo ssh client first-time
Optional
By default, first-time
authentication is
supported on a client.
Configure the server
public key
Refer to 1.2.5 Configuring a
Client Public Key
Required
The method of configuring
server public key on the
client is similar to that of
configuring client public
key on the server.
Specify the host public
key name of the server
ssh client authentication
server server assign
publickey keyname
Required
Operation Manual – SSH
H3C S5500-EI Series Ethernet Switches Chapter 1 SSH Configuration
1-15
1.3.4 Establishing a Connection Between the SSH Client and the Server
Follow these steps to establish the connection between the SSH client and the server:
To do... Use the command… Remarks
Establish a
connection between
the SSH client and
the IPv4 server, and
specify the preferred
key exchange
algorithm,
encryption
algorithms, and
HMAC algorithms for
them
ssh2 server [ port-number ]
[ identity-key { dsa | rsa } |
prefer-ctos-cipher { aes128 |
des } | prefer-ctos-hmac
{ md5 | md5-96 | sha1 |
sha1-96 } | prefer-kex
{ dh-group-exchange |
dh-group1 | dh-group14 } |
prefer-stoc-cipher { aes128 |
des } | prefer-stoc-hmac
{ md5 | md5-96 | sha1 |
sha1-96 } ] *
Establish a
connection
between
the SSH
client and
the server,
and specify
the
preferred
key
exchange
algorithm,
encryption
algorithms,
and HMAC
algorithms
for them
Establish a
connection between
the SSH client and
the IPv6 server, and
specify the preferred
key exchange
algorithm,
encryption
algorithms, and
HMAC algorithms for
them
ssh2 ipv6 server
[ port-number ] [ identity-key
{ dsa | rsa } |
prefer-ctos-cipher { aes128 |
des } | prefer-ctos-hmac
{ md5 | md5-96 | sha1 |
sha1-96 } | prefer-kex
{ dh-group-exchange |
dh-group1 | dh-group14 } |
prefer-stoc-cipher { aes128 |
des } | prefer-stoc-hmac
{ md5 | md5-96 | sha1 |
sha1-96 } ] *
Required
Use either
command
in user
view.
1.4 Displaying and Maintaining SSH
To do… Use the command… Remarks
Display information about the
public keys of the local key pair
display public-key local
{ dsa | rsa } public
Available in any
view
Display information about the
public keys
display public-key peer
[ brief | name
publickey-name ]
Available in any
view
Display the source IP address or
interface currently set for the
SFTP client
display sftp client
source
Available in any
view
Display the source IP address or
interface currently set for the
SSH client
display ssh client
source
Available in any
view
Display the status information or
session information of an SSH
server
display ssh server
{ status | session }
Available in any
view
Operation Manual – SSH
H3C S5500-EI Series Ethernet Switches Chapter 1 SSH Configuration
1-16
To do… Use the command… Remarks
Display the mappings between
host public keys and SSH
servers saved on a client
display ssh server-info
Available in any
view
Display information about a
specified or all SSH users on the
SSH server
display ssh
user-information
[ username ]
Available in any
view
1.5 SSH Server Configuration Examples
1.5.1 When Using Password Authentication
I. Network requirements
z As shown in Figure 1-2, a local SSH connection is established between the host
(SSH client) and the switch (SSH server) for secure data exchange.
z Password authentication is required.
II. Network diagram
SSH client SSH server
Host Switch
192.168.0.2/24
Vlan-int1
192.168.0.1/24
Figure 1-2 Network diagram for SSH server configuration (using password
authentication)
III. Configuration procedure
Configure the SSH server
# Generate RSA and DSA key pairs and enable the SSH server.
<Switch> system-view
[Switch] public-key local create rsa
[Switch] public-key local create dsa
[Switch] ssh server enable
# Configure an IP address for VLAN interface 1. This address will serve as the
destination for the SSH client in connecting the server.
[Switch] interface vlan-interface 1
[Switch-Vlan-interface1] ip address 192.168.1.40 255.255.255.0
[Switch-Vlan-interface1] quit
# Set the authentication mode for the user interface to AAA.
[Switch] user-interface vty 0 4
Operation Manual – SSH
H3C S5500-EI Series Ethernet Switches Chapter 1 SSH Configuration
1-17
[Switch-ui-vty0-4] authentication-mode scheme
# Enable the user interface to support SSH.
[Switch-ui-vty0-4] protocol inbound ssh
[Switch-ui-vty0-4] quit
# Create local user client001, and set the user command privilege level to 3
[Switch] local-user client001
[Switch-luser-client001] password simple aabbcc
[Switch-luser-client001] service-type ssh level 3
[Switch-luser-client001] quit
# Specify the service type for user client001 as Stelnet, and the authentication
method as password.
[Switch] ssh user client001 service-type stelnet authentication-type password
Configure the SSH client
Note:
There are a variety of SSH client software, such as PuTTY, OpenSSH, and so on. The
following is an example of configuring SSH client using PuTT v0.58.
# Establish a connection with the SSH server
Launch PuTTY.exe to enter the following interface. In the Host Name (or IP address)
text box, enter the IP address of the server (192.168.1.40).
Operation Manual – SSH
H3C S5500-EI Series Ethernet Switches Chapter 1 SSH Configuration
1-18
Figure 1-3 SSH client configuration interface
From the window shown in
Figure 1-3, click Open. The following SSH client interface
appears. If the connection is normal, you will be prompted to enter the username
(client001) and password (aabbcc)
1.5.2 When Using Publickey Authentication
I. Network requirements
z As shown in Figure 1-4, a local SSH connection is established between the host
(SSH client) and the switch (SSH server) for secure data exchange.
z Publickey authentication is used, the algorithm is RSA.
II. Network diagram
SSH client SSH server
Host Switch
192.168.1.56/24
Vlan-int1
192.168.1.40/24
Figure 1-4 Network diagram of SSH server configuration (using publickey
authentication)
  • Page 1 1
  • Page 2 2
  • Page 3 3
  • Page 4 4
  • Page 5 5
  • Page 6 6
  • Page 7 7
  • Page 8 8
  • Page 9 9
  • Page 10 10
  • Page 11 11
  • Page 12 12
  • Page 13 13
  • Page 14 14
  • Page 15 15
  • Page 16 16
  • Page 17 17
  • Page 18 18
  • Page 19 19
  • Page 20 20
  • Page 21 21
  • Page 22 22
  • Page 23 23
  • Page 24 24
  • Page 25 25
  • Page 26 26
  • Page 27 27
  • Page 28 28
  • Page 29 29
  • Page 30 30
  • Page 31 31
  • Page 32 32
  • Page 33 33
  • Page 34 34
  • Page 35 35
  • Page 36 36
  • Page 37 37
  • Page 38 38
  • Page 39 39
  • Page 40 40
  • Page 41 41

H3C S5510 Series Operating instructions

Type
Operating instructions
This manual is also suitable for

Ask a question and I''ll find the answer in the document

Finding information in a document is now easier with AI