Changes between Initial Version and Version 1 of UserGuidelines


Ignore:
Timestamp:
Oct 11, 2013 2:14:28 PM (11 years ago)
Author:
sunshine
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UserGuidelines

    v1 v1  
     1= User DOs and DON'Ts =
     2
     3Each DETER node has several network interfaces. One of those is always connected to the "control net" and used to send reboot signals, OS load and similar control info to the node. The other interfaces are for experimental use. These are connected in the topology you specified when you created the experiment. You should only use control network when absolutely necessary, i.e. there is no other way to achieve the effect you desire. Using it more often will create load for everyone on the testbed and will result in wrong results in many exercises.
     4Your instructor should've included in your exercise assignment all the guidelines to minimize traffic on the control network. Here are a few things to keep in mind as you proceed:
     5
     6Unless otherwise required in your exercise use "short" DNS names when you send traffic between your nodes. For example if you have node1 and node2 in your topology to ping node2 from node1 you would ssh into node1 from users.deterlab.net by doing:
     7ssh node1.YourExperiment.YourProject.isi.deterlab.net
     8and then issue a command on node1
     9ping node2
     10The first command (SSH) went over the control network, as this was the only way to go from users machine into your experiment. The second command (ping) went over the experimental network, which is what you wanted.
     11Traffic from experimental nodes to/from your home directory also travels over the control network (read more about this in the next section). To minimize this load please refrain from performing large (> 500 MB) or frequent (< 10 s) reads/writes that involve your experimental nodes and your home directory, unless absolutely necessary. If you need to log something, use a local directory on an experimental node, such as /tmp, and transfer the logs to your home directory before you swap out to save them.