Skip to content

Notes for frequently encountered problems

Bhuvan Sharma edited this page Oct 8, 2019 · 12 revisions

While editing VNF package in OSM, make sure no NS package is referencing to VNF package else it may produce errors and won't let you edit the file sometimes. --Harshita

On executing tango bench experiments, faced few configuration errors while connecting from local to Backflip1. Updating the ansible package helped in this case. --Suganthi

Unzip .tar.gz file: tar zxvf FILE_NAME
Zip folder to .tar.gz file: tar -czvf TAR_FILE_NAME.tar.gz FOLDER_NAME --Bhuvan

Ways to have additional interfaces working:

  • cloud-init script to get list of available ports (or if you know what would be the names of interfaces) and run dhclient INTERFACE: will make it temporarily up. Workaround: use bootcmd instead of runcmd in cloud-init file.
  • cloud-init script to get list of available ports (or if you know what would be the names of interfaces) and add that interface in /etc/network/interfaces.d/50-cloud-init.cfg in image (preload) or in deployed VM (afterload). [USED IN OUR IMPLEMENTATION WITH AUTOMATION - https://github.com/CN-UPB/tng-sdk-benchmark/issues/9#issuecomment-539397032] --Bhuvan