diff options
author | Matus Fabian <matfabia@cisco.com> | 2018-07-19 22:45:25 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-08-02 17:17:47 +0000 |
commit | c6c0d2a077a77a126d642ff12dd326222cf13a7a (patch) | |
tree | abcf965c9342a9fdb438e8c21386147850771b6a /src/plugins/nat/nat.api | |
parent | e4a9eb7873f140f88be7fffb83e1215fbf181116 (diff) |
NAT44: LB NAT - local backends in multiple VRFs (VPP-1345)
Add support for local backends in multiple VRFs for load-balancing NAT rules.
Change-Id: I64e6818bd67a7e69985003498cf1f16f7200c334
Signed-off-by: Matus Fabian <matfabia@cisco.com>
Diffstat (limited to 'src/plugins/nat/nat.api')
-rw-r--r-- | src/plugins/nat/nat.api | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/plugins/nat/nat.api b/src/plugins/nat/nat.api index 4192cf19e3a..26d0fbac094 100644 --- a/src/plugins/nat/nat.api +++ b/src/plugins/nat/nat.api @@ -13,7 +13,7 @@ * limitations under the License. */ -option version = "2.6.0"; +option version = "3.0.0"; /** * @file nat.api @@ -595,6 +595,7 @@ typeonly manual_endian define nat44_lb_addr_port { u8 addr[4]; u16 port; u8 probability; + u32 vrf_id; }; /** \brief Add/delete NAT44 load-balancing static mapping rule @@ -604,7 +605,6 @@ typeonly manual_endian define nat44_lb_addr_port { @param external_addr - external IPv4 address of the service @param external_port - external L4 port number of the service @param protocol - IP protocol number of the service - @param vrf_id - internal network VRF ID @param twice_nat - if 1 translate external host address and port @param self_twice_nat - if 1 translate external host address and port whenever external host address equals @@ -621,7 +621,6 @@ autoreply manual_endian define nat44_add_del_lb_static_mapping { u8 external_addr[4]; u16 external_port; u8 protocol; - u32 vrf_id; u8 twice_nat; u8 self_twice_nat; u8 out2in_only; @@ -645,7 +644,6 @@ define nat44_lb_static_mapping_dump { @param external_addr - external IPv4 address of the service @param external_port - external L4 port number of the service @param protocol - IP protocol number of the service - @param vrf_id - internal network VRF ID @param twice_nat - if 1 translate external host address and port @param self_twice_nat - if 1 translate external host address and port whenever external host address equals @@ -660,7 +658,6 @@ manual_endian define nat44_lb_static_mapping_details { u8 external_addr[4]; u16 external_port; u8 protocol; - u32 vrf_id; u8 twice_nat; u8 self_twice_nat; u8 out2in_only; |