Changes between Version 30 and Version 31 of GENIExperimenter/Tutorials/PortalSimpleLayer2Example/ExecuteExperiment


Ignore:
Timestamp:
03/13/13 20:41:14 (11 years ago)
Author:
sedwards@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GENIExperimenter/Tutorials/PortalSimpleLayer2Example/ExecuteExperiment

    v30 v31  
    8787    You should see at least two interfaces:
    8888      * The '''control interface'''. This is the interface you use to access the node, e.g. ssh into your host. The control interface is mainly used for control traffic, i.e. traffic for controlling the node and the experiment. The control interface usually has a publicly routable IP.
    89       * The '''data interface'''. This is the interface that is used for sending experimental traffic. This is the interface that connects to the other hosts of your experiment through GENI. The links between these interfaces are the ones that allow you to run non-IP experiments.
    90     i. Fill in the worksheet, noting the name and  IP address of the control and of the data interfaces for each node. The data interface is the one that has an IP that starts with 10.
     89      * The '''data interface'''. This is the interface that is used for sending experimental traffic. This is the interface that connects to the other hosts of your experiment through GENI. The links between these interfaces are the ones that allow you to run non-IP experiments. The data interface is the one that has an IP that starts with 10.
     90    i. Fill in the worksheet, noting the name and  IP address of the control and of the data interfaces for each node.
    9191    '''Note''': The "client" is the node in Utah and the "server" is the node at the GPO (in Massachusetts).  The command prompt on each node says "client" or "server" respectively.
    9292    i. When we reserved the resources, we did not specify the IP address for the data interfaces.  Instead, do this now.  Configure the IP address on the data interface of each node using the desired data IP address from the worksheet :
     
    9898    sudo /sbin/ifconfig mv7.90 10.10.1.1/24
    9999}}}
    100     i. Use `/sbin/ifconfig` to confirm the new IP address and mask for each node.
     100    i. Use `/sbin/ifconfig` to confirm the new IP address and mask for each node. The IP address should match what you set it to and the mask should be `255.255.255.0`.
    101101    i. From the client, ping the server. From the xterm that is logged in to the client type :
    102102{{{
     
    124124
    125125  2. '''Send non-IP traffic'''. GENI provides the capability of running non-IP experiments, since you can connect your hosts at Layer 2. For the purpose of this tutorial we have installed in all the hosts a very simple Layer 2 ping program that sends packets using a custom ethernet type.
    126     i. Disable the IP in your nodes. First of all we are going to completely disable IP on our nodes. In each of the terminals type:
     126    i. Disable the IP in your nodes being careful to disable it on the data interface NOT the control interface. In each of the terminals type:
    127127    {{{
    128128  sudo /sbin/ifconfig <data i/f name> 0.0.0.0
    129129  }}}
    130     '''Note''': Be extra careful to bring down the IP on the data interface, bringing down the IP on the control interface means that you will lose connectivity to your host.
     130     '''Note''': Be extra careful to bring down the IP on the data interface, bringing down the IP on the control interface means that you will lose connectivity to your host.
    131131    i. Try again to ping from the client to the server. In the xterm of the client type:
    132132{{{