79 | | $ ./src/omni.py -a exosm createsliver experiment1 ./exorspec/EG-EXP-4_exp1.rspec |
| 80 | $ ./src/omni.py createsliver -a exosm EG-EXP-4-exp1 --api-version 2 ./exorspec/EG-EXP-4-exp1.rspec |
| 81 | }}} |
| 82 | |
| 83 | Verify that sliver status is ready: |
| 84 | {{{ |
| 85 | $ ./src/omni.py sliverstatus -a exosm EG-EXP-4-exp1 --api-version 2 |
| 86 | }}} |
| 87 | Determined which VMs are allocated to this sliver: |
| 88 | {{{ |
| 89 | $ ./src/omni.py listresources -a exosm EG-EXP-4-exp1 --api-version 2 -o |
| 90 | $ egrep hostname EG-EXP-4-exp1-rspec-geni-renci-org-11443-orca.xml |
| 91 | <login authentication="ssh-keys" hostname="152.54.14.4" port="22" username="root"/> |
| 92 | <login authentication="ssh-keys" hostname="192.1.242.6" port="22" username="root"/> |
| 97 | Connect to the RENCI VM and send traffic to the BBN VM: |
| 98 | {{{ |
| 99 | $ ssh root@152.54.14.4 |
| 100 | Linux debian 2.6.32-5-amd64 #1 SMP Mon Jan 16 16:22:28 UTC 2012 x86_64 |
| 101 | |
| 102 | The programs included with the Debian GNU/Linux system are free software; |
| 103 | the exact distribution terms for each program are described in the |
| 104 | individual files in /usr/share/doc/*/copyright. |
| 105 | |
| 106 | Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent |
| 107 | permitted by applicable law. |
| 108 | Last login: Mon Jun 4 16:47:08 2012 from arendia.gpolab.bbn.com |
| 109 | root@debian:~# ifconfig|grep 172 |
| 110 | inet addr:172.16.1.2 Bcast:172.16.1.255 Mask:255.255.255.0 |
| 111 | root@debian:~# ping 172.16.1.1 |
| 112 | PING 172.16.1.1 (172.16.1.1) 56(84) bytes of data. |
| 113 | 64 bytes from 172.16.1.1: icmp_req=1 ttl=64 time=47.5 ms |
| 114 | 64 bytes from 172.16.1.1: icmp_req=2 ttl=64 time=17.9 ms |
| 115 | 64 bytes from 172.16.1.1: icmp_req=3 ttl=64 time=17.8 ms |
| 116 | }}} |
| 117 | |
| 118 | Connect to the BBN VM and send traffic to the RENCI VM: |
| 119 | {{{ |
| 120 | $ ssh root@192.1.242.6 |
| 121 | Linux debian 2.6.32-5-amd64 #1 SMP Mon Jan 16 16:22:28 UTC 2012 x86_64 |
| 122 | |
| 123 | The programs included with the Debian GNU/Linux system are free software; |
| 124 | the exact distribution terms for each program are described in the |
| 125 | individual files in /usr/share/doc/*/copyright. |
| 126 | |
| 127 | Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent |
| 128 | permitted by applicable law. |
| 129 | Last login: Mon Jun 4 16:47:34 2012 from arendia.gpolab.bbn.com |
| 130 | root@debian:~# ifconfig|grep 172 |
| 131 | inet addr:172.16.1.1 Bcast:172.16.1.255 Mask:255.255.255.0 |
| 132 | root@debian:~# ping 172.16.1.2 |
| 133 | PING 172.16.1.2 (172.16.1.2) 56(84) bytes of data. |
| 134 | 64 bytes from 172.16.1.2: icmp_req=1 ttl=64 time=21.6 ms |
| 135 | 64 bytes from 172.16.1.2: icmp_req=2 ttl=64 time=19.4 ms |
| 136 | }}} |
| 137 | |