blob: d722ac558a20b987d97c0479ef300efa53c20833 [file] [log] [blame]
Simon Huntf5d433a2016-03-01 14:31:14 -08001# Simon's LXC-based multi ONOS instances & ONOS mininet VM.
2
3###
4### NOTE:
5### Assumes a route has been set up
6### from 192.168.56.0/24 -> 10.0.3.0/24
7###
8### {dest-net} {gateway} (i.e. container VM)
9### sudo route -n add 10.0.3.0/24 192.168.56.102
10###
11
Simon Hunta855a402016-03-02 14:41:52 -080012## ONOS Cluster VM (has LXC containers for cluster nodes)
13export OCVM=192.168.56.102
Simon Huntf5d433a2016-03-01 14:31:14 -080014
15#============================================
Simon Hunt3b955642016-03-07 15:03:30 -080016# sdn@ocluster:~$ sudo lxc-ls --fancy
Simon Huntf5d433a2016-03-01 14:31:14 -080017# NAME STATE IPV4 IPV6 AUTOSTART
18# -------------------------------------------
Simon Hunt1ebef9d2016-03-08 11:17:25 -080019# onos1 RUNNING 10.0.3.11 - YES
20# onos2 RUNNING 10.0.3.12 - YES
21# onos3 RUNNING 10.0.3.13 - YES
22# onos4 RUNNING 10.0.3.14 - YES
Simon Huntf5d433a2016-03-01 14:31:14 -080023#============================================
24
Simon Hunta855a402016-03-02 14:41:52 -080025export ONOS_USE_SSH=true
26export ONOS_NIC="10.0.3.*"
27
Simon Huntf5d433a2016-03-01 14:31:14 -080028## ONOS instances (LXC containers)
Simon Hunt1ebef9d2016-03-08 11:17:25 -080029export OC1=10.0.3.11
30export OC2=10.0.3.12
31export OC3=10.0.3.13
Simon Huntf810e522016-03-07 17:34:50 -080032
33## keep this out of the initial cluster...
Simon Hunt1ebef9d2016-03-08 11:17:25 -080034## export OC4=10.0.3.14
Simon Huntf5d433a2016-03-01 14:31:14 -080035
36## default ONOS instance
37export OCI=$OC1
38
39## credentials for logging into ONOS instances
40export ONOS_USER=sdn
41
Simon Hunt59f598c2016-03-04 15:15:13 -080042## the apps we want activated at startup
43export ONOS_APPS="drivers,openflow,proxyarp,drivermatrix"
Simon Huntf5d433a2016-03-01 14:31:14 -080044
45## mininet VM
46export OCN="192.168.56.103"
47
48export ONOS_WEB_USER=onos
49export ONOS_WEB_PASS=rocks