diff options
author | Brian Freeman <bf1936@att.com> | 2018-11-13 11:34:48 -0500 |
---|---|---|
committer | Brian Freeman <bf1936@att.com> | 2018-11-13 12:34:20 -0500 |
commit | 8076a87e542a67f321f84311350d20946bee14a2 (patch) | |
tree | 1cb41c8b1093eadaf5178bfcaa92dd4bf7f3a91e /test/vcpe/vcpecommon.py | |
parent | ec9fe0e5a07ac2cdb650cd5cc9a9c883122da780 (diff) |
fixes from vCPE testing
Issue-ID: INT-717
Change-Id: If2c44e08288eee955b7a3548a802be37a15a601e
Signed-off-by: Brian Freeman <bf1936@att.com>
Diffstat (limited to 'test/vcpe/vcpecommon.py')
-rwxr-xr-x | test/vcpe/vcpecommon.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/vcpe/vcpecommon.py b/test/vcpe/vcpecommon.py index 89771707e..23d4a331d 100755 --- a/test/vcpe/vcpecommon.py +++ b/test/vcpe/vcpecommon.py @@ -71,8 +71,15 @@ class VcpeCommon: self.logger = logging.getLogger(__name__) self.logger.info('Initializing configuration') + # OOM: this is the address that the brg and bng will nat for config of brg - 10.0.0.x address of k8 host for sdnc + self.sdnc_brg_bng_ip = '10.0.0.17' + # OOM: this is a k8 host external IP self.oom_so_sdnc_aai_ip = '10.12.5.18' + # OOM: this is a k8 host external IP can be same as oom_so_sdnc_aai_ip self.oom_dcae_ves_collector = '10.12.5.18' + # OOM: this is a k8 host external IP can be same as oom_so_sdnc_aai_ip + self.mr_ip_addr = '10.12.5.18' + self.mr_ip_port = '30227' self.so_nbi_port = '30277' if self.oom_mode else '8080' self.sdnc_preloading_port = '30202' if self.oom_mode else '8282' self.aai_query_port = '30233' if self.oom_mode else '8443' |