tom | 1a2908c | 2014-09-23 16:37:39 -0700 | [diff] [blame] | 1 | #!/bin/bash |
Pavlin Radoslavov | 9141379 | 2014-10-15 11:00:32 -0700 | [diff] [blame] | 2 | # ----------------------------------------------------------------------------- |
tom | 1a2908c | 2014-09-23 16:37:39 -0700 | [diff] [blame] | 3 | # Launches ONOS GUI on the specified node. |
Pavlin Radoslavov | 9141379 | 2014-10-15 11:00:32 -0700 | [diff] [blame] | 4 | # ----------------------------------------------------------------------------- |
tom | 1a2908c | 2014-09-23 16:37:39 -0700 | [diff] [blame] | 5 | |
tom | 1a2908c | 2014-09-23 16:37:39 -0700 | [diff] [blame] | 6 | host=${1:-$OCI} |
| 7 | host=${host:-localhost} |
| 8 | |
Thomas Vachuska | 477bf81 | 2014-11-11 20:54:35 -0800 | [diff] [blame] | 9 | open http://$host:8181/onos/ui |