From 3c0282ee7e937e0225e48ccb4d712ccf0d6267f9 Mon Sep 17 00:00:00 2001 From: Marek Gradzki Date: Tue, 1 Aug 2017 12:50:31 +0200 Subject: HC2VPP-197: update interface-nat model to support post-routing NAT Change-Id: I009d790e21ff5019f94145e1aa1e08f87b6729ca Signed-off-by: Marek Gradzki --- .../src/main/yang/interface-nat@2016-08-01.yang | 63 ++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 nat/nat-api/src/main/yang/interface-nat@2016-08-01.yang (limited to 'nat/nat-api/src/main/yang/interface-nat@2016-08-01.yang') diff --git a/nat/nat-api/src/main/yang/interface-nat@2016-08-01.yang b/nat/nat-api/src/main/yang/interface-nat@2016-08-01.yang new file mode 100644 index 000000000..6906a67c1 --- /dev/null +++ b/nat/nat-api/src/main/yang/interface-nat@2016-08-01.yang @@ -0,0 +1,63 @@ +module interface-nat { + yang-version 1; + namespace "urn:opendaylight:params:xml:ns:yang:interface:nat"; + prefix "ifc-nat"; + + revision "2017-08-01" { + description "Added support for snat_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, snat_interface_add_del_output_feature message is used to enable NAT. + By default snat_interface_add_del_feature is used."; + reference + "https://git.fd.io/vpp/tree/src/plugins/snat/snat.api"; + } + } + + 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 -- cgit 1.2.3-korg