cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1514
Views
20
Helpful
2
Replies

Is it possible to change the default CLI style to cisco?

Koji Yokoe
Cisco Employee
Cisco Employee

Hi.

When we ssh to NSO directly (port 2024), default CLI style is juniper

 

$ ssh -p 2024 -l admin 10.0.2.15
admin@10.0.2.15's password:

admin@ncs>

 

To change to cisco style, we need to enter "switch cli".

admin@ncs> switch cli
admin@ncs#

 

Is it possible to change the default CLI style to cisco?

2 Replies 2

Abdel el Anazi
Level 1
Level 1

You can do that by modifying the ncs.conf file:

Under the <CLI> section in the ncs.conf file, you can add <style>c</style>

This will change the CLI behavior to Cisco style as default.

 

<cli>
<style>c</style>
 
 

Thank you a_elanaz.

It worked.

It's preferable for many cisco users to change default cli style to cisco.

I really appreciate your advice.