Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

1. Architecture

The high-level architecture of the simulator and its interface to ONAP is shown below.  

2. Description

The simulator exposes standard NSSMF northbound api for 5G network slicing use case. Including allocate, deallocate, activate, deactivate etc. this simulator api exposed only support https.


3. Precondition

  1. Make sure the node where simulator installed can support ssh.  
  2.  jdk 1.8 or higher is also required. 

4. Installation Steps:

there is a packge: simulator.tar.gz below need to be downloaded. 

...

     5. run the commandjava -jar simulator-0.0.1-SNAPSHOT.jar >/dev/null &


4. Register sndc info in AAI-ESR-GUI:

K8S='172.19.0.50' # depned on your k8s
THIRDPARTY_SDNC_ID='12345' # dont' care, anyting ok
ESR_SYSTEM_INFO_ID='12345' # dont' care, anyting ok
VENDER='HW' # only HW
TYPE='cn' # only cn
SIM_IP='172.19.0.11' # depned on your sim

curl -k -X PUT "https://AAI:AAI@${K8S}:30233/aai/v19/external-system/esr-thirdparty-sdnc-list/esr-thirdparty-sdnc/${THIRDPARTY_SDNC_ID}/esr-system-info-list/esr-system-info/${ESR_SYSTEM_INFO_ID}" \
-H 'Accept: application/json' \
-H 'X-FromAppId: AAI' \
-H 'X-TransactionId: 1' \
-H 'Content-Type: application/json' \
-d '{
"system-name": "E2E",
"vendor": "${VENDER}",
"type": "${TYPE}",
"service-url": "",
"user-name": "",
"password": "",
"system-type": "thirdparty_SDNC",
"ip-address": "${SIM_IP}",
"port": "11111"
}'

NSMF-NSSMF API Prososal:


View file
nameNSMF-NSSMF API Proposal.pptx
height250

...