Changes between Version 13 and Version 14 of OpenFlow/FOAM


Ignore:
Timestamp:
03/08/12 13:30:19 (12 years ago)
Author:
Josh Smift
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OpenFlow/FOAM

    v13 v14  
    194194You should generally only do this with the experimenter's permission, and if the experimenter can't delete their own sliver for some reason, so they're not confused about where their sliver went. (If you disable or reject it, they can still see it; if you delete it, it's essentially gone forever from their point of view.)
    195195
     196=== Compare two slivers ===
     197
     198This compares two slivers (called "old" and "new" here, since a common use case is to compare a new request from an experimenter to an existing old request).
     199
     200{{{
     201rm -rf old.txt new.txt
     202oldsliver=<old sliver URN>
     203newsliver=<new sliver URN>
     204foamctl show-sliver -s -u $oldsliver --passwd-file=/opt/foam/etc/foampasswd
     205foamctl show-sliver -s -u $newsliver --passwd-file=/opt/foam/etc/foampasswd
     206diff -u old.txt new.txt
     207}}}
     208
     209In the case of someone who deleted and then re-created a sliver, you could get the sliver URNs from the e-mail from FOAM, for example.
     210
     211We use 'show-sliver -s' because '-r' doesn't work at all on deleted slivers; and '-f' includes a priority value for approved slivers but not non-approved slivers, which clutters up the diff.
     212
    196213== Slice Authority trust configuration ==
    197214