SSHΒΆ

Secure Shell (SSH) server can be configured for remote login to the router, giving a secure connection from standard SSH clients.

Independent SSH servers can be started in any vrf. At boot time, SSH is started by default in the main VRF if not configured.

Users can configure the address and port on which SSH listens on.

Here is an example of configuration that will start a SSH server in the main vrf:

vsr running config# vrf main
vsr running vrf main# ssh-server
vsr running ssh-server# commit
Configuration applied.

To display the SSH server state:

vsr running config# show state vrf main ssh-server
ssh-server
   port 22
   enabled true
   ..

The same configuration can be made using this NETCONF XML configuration:

vsr running config# show config xml absolute vrf main ssh-server
<config xmlns="urn:6wind:vrouter">
  <vrf>
    <name>main</name>
    <ssh-server xmlns="urn:6wind:vrouter/ssh-server">
      <enabled>true</enabled>
      <port>22</port>
    </ssh-server>
  </vrf>
</config>

See also

The command reference for details.