| 60 | == Accessing Nodes == |
| 61 | |
| 62 | Nodes are accessed similarly to other DETER nodes. When you are on users, you can access a node named 'node-1' in YourPID/SomeEID using SSH: |
| 63 | |
| 64 | {{{ |
| 65 | users$ ssh node-1.someeid.yourpid |
| 66 | node-1$ echo hello from qemu |
| 67 | hello from qemu |
| 68 | }}} |
| 69 | |
| 70 | From within the experiment you can communicate with other nodes in the experiment using just the hostname, as in an ordinary DETER experiment: |
| 71 | |
| 72 | {{{ |
| 73 | node-2$ ping node-2 |
| 74 | PING node-2-big-lan (10.0.0.32) 56(84) bytes of data. |
| 75 | 64 bytes from node-2-big-lan (10.0.0.32): icmp_req=1 ttl=64 time=8.01 ms |
| 76 | 64 bytes from node-2-big-lan (10.0.0.32): icmp_req=2 ttl=64 time=10.6 ms |
| 77 | ^C |
| 78 | --- node-2-big-lan ping statistics --- |
| 79 | 2 packets transmitted, 2 received, 0% packet loss, time 1001ms |
| 80 | rtt min/avg/max/mdev = 8.015/9.318/10.622/1.307 ms |
| 81 | }}} |
| 82 | |