Versions Compared

Key

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

...

This will  behave like a regular ssh session to portal-vnc.  Closing the session will close the proxy server too.     

Code Block
languagebash
Welcome to Ubuntu 16.04.4 LTS (GNU/Linux 4.9.78-rancher2 x86_64)

 * Documentation:  https://help.ubuntu.com
 * Management:     https://landscape.canonical.com
 * Support:        https://ubuntu.com/advantage
Last login: Mon Jun  4 16:56:31 2018 from 10.42.0.0
root@portal-vnc-59679d7f99-gbrlf:~# 


Warning

Closing the ssh session will close the proxy server too.   


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

The proxy server can be configured with most web bowsers.  Here is an easy way to configure it in Firefox.  Just open Firefox preferences by typing 'about:preferences' in the address bar.  Then  search for proxy and click on the settings button that appears.  Finally enter the SOCKs details.  

Tip

The port 32003 in the following screen shot is the-D <PROXY-PORT> it the entered in the ssh command above.



Once configured just enter the 'http://portal.api.simpledemo.onap.org:8989/ONAPPORTAL/login.htm'   and then firefox will open up the ONAP portal.  Firefox will have access to any of the onap service IP.   Firefox must run on the same host where the ssh session was initiated from and were the /etc/hosts modified.  

...