summaryrefslogtreecommitdiffstats
path: root/nat/nat-api/src/main/yang/interface-nat@2016-08-16.yang
diff options
context:
space:
mode:
authorJan Srnicek <jsrnicek@cisco.com>2017-09-27 10:08:33 +0200
committerJan Srnicek <jsrnicek@cisco.com>2017-09-27 10:08:33 +0200
commit1ccfb17154bf025ac320ffea3433cd62bedc221c (patch)
tree2e11d03ddc71bfecdc32569c5a07cfbd293df50e /nat/nat-api/src/main/yang/interface-nat@2016-08-16.yang
parent45b04bcb9882b032328a18ecc135acf1f1717e09 (diff)
HC2VPP-236 - interface-nat model file name fix
Change-Id: Iaa8d8ccb6ade28f9b62c398610638f5ba465fffd Signed-off-by: Jan Srnicek <jsrnicek@cisco.com>
Diffstat (limited to 'nat/nat-api/src/main/yang/interface-nat@2016-08-16.yang')
-rw-r--r--nat/nat-api/src/main/yang/interface-nat@2016-08-16.yang83
1 files changed, 0 insertions, 83 deletions
diff --git a/nat/nat-api/src/main/yang/interface-nat@2016-08-16.yang b/nat/nat-api/src/main/yang/interface-nat@2016-08-16.yang
deleted file mode 100644
index 421d03944..000000000
--- a/nat/nat-api/src/main/yang/interface-nat@2016-08-16.yang
+++ /dev/null
@@ -1,83 +0,0 @@
-module interface-nat {
- yang-version 1;
- namespace "urn:opendaylight:params:xml:ns:yang:interface:nat";
- prefix "ifc-nat";
-
- revision "2017-08-16" {
- description "Added support for NAT64.";
- }
-
- revision "2017-08-01" {
- description "Added support for nat_interface_add_del_output_feature.";
- }
-
- revision "2016-12-14" {
- description "Initial revision of interface-nat model.";
- }
-
- import ietf-interfaces {
- prefix "if";
- }
- import ietf-nat {
- prefix "nat";
- }
- import yang-ext {
- prefix "ext";
- }
-
- description "Augmentations to interfaces model to connect interfaces with nat configuration.";
-
- grouping interface-nat-vpp-feature-attributes {
- leaf post-routing {
- type boolean;
- default false;
- description
- "Indicates whether NAT translation should be applied after routing.
- If true, nat_interface_add_del_output_feature message is used to enable NAT.
- By default nat_interface_add_del_feature is used.";
- reference
- "https://git.fd.io/vpp/tree/src/plugins/nat/nat.api";
- }
-
- leaf nat44-support {
- type boolean;
- default true;
- description
- "Indicates NAT44 support. Enabled by default in order to preserve compatibility with previous versions of the model.";
- }
-
- leaf nat64-support {
- type boolean;
- description
- "Indicates NAT64 support";
- }
-
- reference
- "https://wiki.fd.io/view/VPP/SNAT";
- }
-
- grouping interface-nat-attributes {
- container nat {
- container inbound {
- presence "Enables inbound NAT";
- uses interface-nat-vpp-feature-attributes;
- }
- container outbound {
- presence "Enables outbound NAT";
- uses interface-nat-vpp-feature-attributes;
- }
- }
- }
-
- augment /if:interfaces/if:interface {
- ext:augment-identifier "nat-interface-augmentation";
-
- uses interface-nat-attributes;
- }
-
- augment /if:interfaces-state/if:interface {
- ext:augment-identifier "nat-interface-state-augmentation";
-
- uses interface-nat-attributes;
- }
-} \ No newline at end of file