Versions Compared

Key

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

...

Get the service IPs from portal-vnc from its the /etc/hosts file. 

Code Block
cat /etc/hosts
10.43.142.185 sdc.api.be.simpledemo.onap.org
10.43.180.235 portal.api.simpledemo.onap.org
10.43.227.25 sdc.api.simpledemo.onap.org
10.43.8.165 vid.api.simpledemo.onap.org
10.42.0.149 aai.api.simpledemo.onap.org

Then add host ip mappings to the host /etc/hosts  where the ssh session was initiated from. 

Warning

Don't just copy and paste the ip from this block post. The IPs are different on each ONAP deployment

Code Block
languagebash
sudo cat >> /etc/hosts << EOF
10.43.142.185 sdc.api.be.simpledemo.onap.org
10.43.180.235 portal.api.simpledemo.onap.org
10.43.227.25 sdc.api.simpledemo.onap.org
10.43.8.165 vid.api.simpledemo.onap.org
10.42.0.149 aai.api.simpledemo.onap.org
EOF

...