Updates to simon's uk cells.
Change-Id: I3299d991a7d53544cb81d74d31164140d7d36d06
Showing
2 changed files
with
50 additions
and
1 deletions
| ... | @@ -29,7 +29,9 @@ export ONOS_NIC="10.0.3.*" | ... | @@ -29,7 +29,9 @@ export ONOS_NIC="10.0.3.*" |
| 29 | export OC1=10.0.3.174 | 29 | export OC1=10.0.3.174 |
| 30 | export OC2=10.0.3.242 | 30 | export OC2=10.0.3.242 |
| 31 | export OC3=10.0.3.49 | 31 | export OC3=10.0.3.49 |
| 32 | -export OC4=10.0.3.132 | 32 | + |
| 33 | +## keep this out of the initial cluster... | ||
| 34 | +## export OC4=10.0.3.132 | ||
| 33 | 35 | ||
| 34 | ## default ONOS instance | 36 | ## default ONOS instance |
| 35 | export OCI=$OC1 | 37 | export OCI=$OC1 | ... | ... |
tools/test/cells/simon-uk4
0 → 100644
| 1 | +# 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) | ||
| 13 | +export OCVM=192.168.56.102 | ||
| 14 | + | ||
| 15 | +#============================================ | ||
| 16 | +# sdn@ocluster:~$ sudo lxc-ls --fancy | ||
| 17 | +# NAME STATE IPV4 IPV6 AUTOSTART | ||
| 18 | +# ------------------------------------------- | ||
| 19 | +# onos1 RUNNING 10.0.3.174 - YES | ||
| 20 | +# onos2 RUNNING 10.0.3.242 - YES | ||
| 21 | +# onos3 RUNNING 10.0.3.49 - YES | ||
| 22 | +# onos4 RUNNING 10.0.3.132 - YES | ||
| 23 | +#============================================ | ||
| 24 | + | ||
| 25 | +export ONOS_USE_SSH=true | ||
| 26 | +export ONOS_NIC="10.0.3.*" | ||
| 27 | + | ||
| 28 | +## ONOS instances (LXC containers) | ||
| 29 | +export OC1=10.0.3.174 | ||
| 30 | +export OC2=10.0.3.242 | ||
| 31 | +export OC3=10.0.3.49 | ||
| 32 | +export OC4=10.0.3.132 | ||
| 33 | + | ||
| 34 | +## default ONOS instance | ||
| 35 | +export OCI=$OC1 | ||
| 36 | + | ||
| 37 | +## credentials for logging into ONOS instances | ||
| 38 | +export ONOS_USER=sdn | ||
| 39 | + | ||
| 40 | +## the apps we want activated at startup | ||
| 41 | +export ONOS_APPS="drivers,openflow,proxyarp,drivermatrix" | ||
| 42 | + | ||
| 43 | +## mininet VM | ||
| 44 | +export OCN="192.168.56.103" | ||
| 45 | + | ||
| 46 | +export ONOS_WEB_USER=onos | ||
| 47 | +export ONOS_WEB_PASS=rocks |
-
Please register or login to post a comment