diff options
author | 2018-11-13 21:26:32 +0000 | |
---|---|---|
committer | 2018-11-13 21:26:32 +0000 | |
commit | b804a0524a40391584e88cf702a20b590530f343 (patch) | |
tree | e9fb0cb679b6c20d26851b362d90f0052595a32e /test/vcpe/vcpecommon.py | |
parent | b10132e33370aabef8cb4d95d37f1dfc8e15fcee (diff) | |
parent | 8076a87e542a67f321f84311350d20946bee14a2 (diff) |
Merge "fixes from vCPE testing"
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' |