SOL006 augment: Simple strategy to allow address pairs for virtual IP 06/10106/1
authorgarciadeblas <gerardo.garciadeblas@telefonica.com>
Mon, 14 Dec 2020 15:18:16 +0000 (15:18 +0000)
committergarciadeblas <gerardo.garciadeblas@telefonica.com>
Mon, 14 Dec 2020 15:18:49 +0000 (15:18 +0000)
Change-Id: I7be4bb4363485beb51a27243535358079a2c6009
Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
models/augments/various.yang

index 23f86ca..71c10d1 100644 (file)
@@ -58,6 +58,16 @@ module various {
             type boolean;
             default true;
         }
+        leaf port-security-disable-strategy {
+            description "Strategy to disable port security, either Enables the port security for the port.
+                         full                : disable port security in the whole port
+                         allow-address-pairs : allow address pairs for virtual IP (any virtual IP can be configured)";
+            type enumeration {
+                enum full;
+                enum allow-address-pairs;
+            }
+            default full;
+        }
     }
 
     grouping extended-vdu {
@@ -117,4 +127,5 @@ module various {
     augment "/vnfd:vnfd/vnfd:virtual-storage-desc" {
         uses extended-device-bus;
     }
-}
\ No newline at end of file
+}
+