Specify MSDP authentication specification model.
Signed-off-by: Rafael Zalamena <rzalamena@opensourcerouting.org>
}
}
+ grouping msdp-authentication {
+ description
+ "MSDP authentication options.";
+
+ leaf authentication-type {
+ type enumeration {
+ enum None {
+ value 0;
+ description
+ "No authentication.";
+ }
+ enum MD5 {
+ value 1;
+ description
+ "Use MD5 digest.";
+ }
+ }
+ default None;
+ description
+ "Authentication method.";
+ }
+
+ leaf authentication-key {
+ when "../authentication-type = 'MD5'";
+ mandatory true;
+ type string;
+ description
+ "Authentication key.";
+ }
+ }
+
grouping global-pim-config-attributes {
description
"A grouping defining per address family pim global attributes";
description
"Access list name used to filter the outgoing SAs exchanged.";
}
+
+ uses msdp-authentication;
}
container mlag {