mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-16 18:02:05 +02:00
10 lines
288 B
Bash
Executable File
10 lines
288 B
Bash
Executable File
#!/bin/bash
|
|
# -----------------------------------------------------------------------------
|
|
# Launches ONOS GUI on the specified node.
|
|
# -----------------------------------------------------------------------------
|
|
|
|
host=${1:-$OCI}
|
|
host=${host:-localhost}
|
|
|
|
open http://$host:8181/onos/ui
|