10-20-2018 05:56 PM - edited 03-01-2019 04:13 AM
Is there a substatement for setting the help message provided for a node when using the CLI? description and reference seem to be the obvious choices, but they don't seem to populate.
admin@ncs(config)# vpc-distribution EAST ? Possible completions: peer-link aggregate-prefix check-sync Check if device config is according to the service
leaf aggregate-prefix { description "This pool is used to pull the /24's needed for VLANs, this prefix is also advertised northbound of the distribution block"; type inet:ipv4-prefix; mandatory true; } container peer-link { reference "Configure Peer link interfaces/properties"; list interface { key interface; leaf interface { type string; } } }
Solved! Go to Solution.
10-20-2018 11:01 PM
Hi,
You can use tailf:info for that.
You'll need to import tailf-common before you use it.
import tailf-common {
prefix tailf;
}
leaf customer-name {
tailf:info "Put your message here";
mandatory true;
type string;
}
10-20-2018 11:01 PM
Hi,
You can use tailf:info for that.
You'll need to import tailf-common before you use it.
import tailf-common {
prefix tailf;
}
leaf customer-name {
tailf:info "Put your message here";
mandatory true;
type string;
}
10-21-2018 09:17 AM
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide