blob: 58ea8298b1f52404bf17f157a8bc9e7d93cf5252 [file] [log] [blame]
Simon Huntf810e522016-03-07 17:34:50 -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
12## ONOS Cluster VM (has LXC containers for cluster nodes)
Simon Hunt4a24a3e2016-03-09 18:50:43 -080013export OCVM=192.168.56.98
Simon Huntf810e522016-03-07 17:34:50 -080014
15#============================================
16# sdn@ocluster:~$ sudo lxc-ls --fancy
17# 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 Huntf810e522016-03-07 17:34:50 -080023#============================================
24
Simon Huntf810e522016-03-07 17:34:50 -080025export ONOS_NIC="10.0.3.*"
26
27## ONOS instances (LXC containers)
Simon Hunt1ebef9d2016-03-08 11:17:25 -080028export OC1=10.0.3.11
29export OC2=10.0.3.12
30export OC3=10.0.3.13
31export OC4=10.0.3.14
Simon Huntf810e522016-03-07 17:34:50 -080032
33## default ONOS instance
34export OCI=$OC1
35
36## credentials for logging into ONOS instances
37export ONOS_USER=sdn
38
39## the apps we want activated at startup
Simon Hunt661d4102016-03-08 15:09:59 -080040export ONOS_APPS="drivers,openflow,proxyarp,drivermatrix,mlb"
Simon Huntf810e522016-03-07 17:34:50 -080041
42## mininet VM
Simon Hunt4a24a3e2016-03-09 18:50:43 -080043export OCN="192.168.56.99"
Simon Huntf810e522016-03-07 17:34:50 -080044
45export ONOS_WEB_USER=onos
46export ONOS_WEB_PASS=rocks
Simon Hunt4a24a3e2016-03-09 18:50:43 -080047
48# Verify route to LXC cluster
49netstat -nr | grep 10.0.3 | grep -q $OCVM && echo "Routes to LXC in place" || (
50 echo "Route to LXC not found. Adding...";
51 sudo bash -c "route -n delete 10.0.3.0/24; \
52 route -n add 10.0.3.0/24 192.168.56.98" >/dev/null 2>&1
53)