Changes between Version 13 and Version 14 of GENIExperimenter/Tutorials/GettingStarted_PartI/Procedure/Execute


Ignore:
Timestamp:
01/13/14 21:42:18 (10 years ago)
Author:
sedwards@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GENIExperimenter/Tutorials/GettingStarted_PartI/Procedure/Execute

    v13 v14  
    116116rtt min/avg/max/mdev = 91.156/109.579/183.129/36.775 ms
    117117}}}
    118     d. Now run `traceroute` to the server data IP address:
    119 {{{
    120     traceroute <server data IP addr>
    121 }}}
    122     e. From the client, now `ping` the server '''control plane interface''' and run `traceroute`. From the terminal window that is logged in to the client type :
     118    d. Now, `ping` the server '''control plane interface'''. From the terminal window that is logged in to the client type :
    123119{{{
    124120    ping <server control IP addr> -c 5
    125     traceroute <server data IP addr>
    126 }}}
    127 
    128 '' What is the difference in the routes to the server control and data interfaces?''
     121}}}
     122    e. From the server node, bring down the '''data plane interface''' and try to ping it from the client node:
     123{{{
     124    sudo /sbin/ifconfig <server data interface name> down
     125}}}
     126From the client node, try to ping the server '''data plane interface''':
     127{{{
     128    ping <server data IP addr> -c 5
     129}}}
     130''What happens?  Why?''
     131    e. From the server node, bring down the '''control plane interface''' and try to ping it from the client node:
     132{{{
     133    sudo /sbin/ifconfig <server control interface name> down
     134}}}
     135''What happens?  Why?''
     136
     137From the client node, try to ping the server '''control plane interface''':
     138{{{
     139    ping <server control IP addr> -c 5
     140}}}
     141''What happens?  Why?''
    129142
    130143=== 5.2 Take down the data interface ===