'''Simple Static Routing Experiment''' '''Overview''' In this experiment you will learn how to set up static routing with the {{{route}}} command. We will use the following network topology for this experiment: {{{picture goes here}}} '''Set Up''' This experiment assumes you have completed {{{lab 0}}}. Join the Project: 1. Go to [https://portal.geni.net/] press the “Use GENI” button and log in with your UMass OIT credentials. 2. Click “Join a Project” and select “UMASS-ECE374”. 3. You will then get a notification inviting you to join the project. Get Your Credentials: 1. Open a browser and go to [https://portal.geni.net/] 2. Log in using your UMass OIT credentials. 3. When you are logged in, select “Profile” from the top right menu. 4. Next, click on “Generate SSH keypair” and enter your passphrase. [[BR]] Make sure you remember that passphrase. 5. On the next page click on “Download Private Key” and save the key to {{{~/.ssh}}} locally. 6. In the browser, still on the same page under “My Stuff, Configure Omni” click on the link “create an SSL certificate”. 7. Download the certificate to {{{~/.ssl}}} locally. 8. Make sure the files that hold your secret keys are adequately protected. To make sure that’s the case you can execute the following commands: {{{ chmod 0600 .ssh/id_geni_ssh_rsa }}} 9. Run {{{ ssh-add keypath .ssh/id_geni_ssh_rsa }}} to add your key to the ssh agent 10. Run {{{ curl http://the/location/of/the/rspec -o ECE375.rspec }}} to save a copy of the rspec locally. In Portal or Flack, create a new slice and use this rspec '''Experiment''' The goal of your final experiment is to setup the routing as indicated in Figure 1. You might want to review the slides on IPv4 addressing and routing (also chapter 4.4 in the book) After you have set up the routing correctly, packets from A send to IP address 192.168.2.12 on node C should be routed via node B. Packets from A send to IP address 192.168.3.12 on node C should be directly forwarded to C. You can verify this by performing a traceroute to the respective IP addresses of node C from node A. Since we’re not using a routing algorithm but set the route statically, we will make use of the “route” command. The following link gives you an introduction on how to use the command: [http://www.hscripts.com/tutorials/linux-commands/route.html route command] Remember that you can use “ifconfig” to determine which Ethernet interface (e.g., eth0) is bound to what IP address at each of the nodes. To enable forwarding of packets on node B you have to execute the following command: {{{ echo 1 > /proc/sys/net/ipv4/ip_forward }}} To demonstrate that you have set up the routing correctly you have to submit a screenshot from node A that shows traceroutes for both IP addresses of node C. Note: You should document the steps you perform to set up the static routes since all configurations will be lost when your slice is deleted. A new slice will always be in its initial state with NO routing set up! '''Finish''' 1. Return to the Slice page on Portal. On the row in the aggregate table for the aggregate you used, press the Delete Resources button. 2. When prompted, confirm that you want to delete this sliver. Then, make sure you see a message that you have successfully deleted resources at this aggregate. 3. Do this for as many aggregates as you got resources from.