home

Supported platforms

Vyatta documentation

Learn how to install, configure, and operate the Vyatta Network Operating System (Vyatta NOS) and Orchestrator, which help drive our virtual networking and physical platforms portfolio.

VRF support for SSH

An overview VRF support for SSH and example commands.

You can configure SSH on any routing instance. If you configure SSH without specifying a routing instance, the default routing instance is used.

The following example shows how to configure SSH for the default routing instance.
vyatta@R1# set service ssh listen-address 10.0.0.1 
vyatta@R1# set service ssh port 21
vyatta@R1# run show configuration
service {
    ssh {
        listen-address 10.0.0.1
        port 21
                        }
}

The following example shows the same configuration sequence for the BLUE routing instance.

vyatta@R1# set routing routing-instance BLUE service ssh listen-address 10.0.0.1 
vyatta@R1# set routing routing-instance BLUE service ssh port 21
vyatta@R1# commit
vyatta@R1# run show configuration
routing {
        routing-instance BLUE {
                service {
                        ssh {
                           listen-address 10.0.0.1
                           port 21
                        }
                
                }
        }
}

For more information about SSH and configuring SSH, see Ciena Vyatta Network OS Basic System Configuration Guide .