Changes between Version 2 and Version 3 of HowTo/DeleteRoutesInstalledByInstaGENI


Ignore:
Timestamp:
11/14/16 05:53:14 (7 years ago)
Author:
pjayanth@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowTo/DeleteRoutesInstalledByInstaGENI

    v2 v3  
    99(2) Turn on all the interfaces on the node that were shut down. [[BR]]
    1010
     11The following script was created to Delete Routes Installed by InstaGENI:
     12{{{
     13#!/bin/bash
     14#shut down the interfaces except eth0
     15ifconfig -a | grep eth | awk '{ if (substr($1,4,4) !=0) { print "sudo ifconfig " $1 " down"}}' |sh
     16#bring up the interfaces except eth0
     17ifconfig -a | grep eth | awk '{ if (substr($1,4,4) !=0) { print "sudo ifconfig " $1 " up"}}' |sh
     18}}}
     19
    1120The script to do this task can be found at ''' ''http://www.gpolab.bbn.com/experiment-support/Utilities/ClearRoutesIG.tar.gz'' '''.
     21
     22If you are using ''JACKS'' to create your slice, follow the following steps to Delete Routes Installed by InstaGENI:
    1223
    13241) Click on the node to be configured [[BR]]