From 0b4894085bcbb0101ba7101c3b7a7ec019c988a7 Mon Sep 17 00:00:00 2001 From: Michal Kelner Mishali Date: Thu, 7 Mar 2019 14:55:28 +0200 Subject: [PATCH] NSX|T: Add NSX limit of IP address association to port Adding parameter that notes limit on number of allowed address pairs per port, excluding fixed IP. Change-Id: I1ce3fe17b089967fcab26d5466c65c317f58bc74 Signed-off-by: Michal Kelner Mishali --- vmware_nsxlib/v3/nsx_constants.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vmware_nsxlib/v3/nsx_constants.py b/vmware_nsxlib/v3/nsx_constants.py index bbf965fa..d14461ee 100644 --- a/vmware_nsxlib/v3/nsx_constants.py +++ b/vmware_nsxlib/v3/nsx_constants.py @@ -110,6 +110,9 @@ LOCAL_IP_PREFIX = 'local_ip_prefix' LOGGING = 'logging' +# Allowed address pairs +NUM_ALLOWED_IP_ADDRESSES = 128 + # QoS directions egress/ingress EGRESS = 'egress' INGRESS = 'ingress'