Changes between Version 3 and Version 4 of OpenFlow/Controllers/Floodlight


Ignore:
Timestamp:
12/11/12 14:44:58 (11 years ago)
Author:
tupty@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OpenFlow/Controllers/Floodlight

    v3 v4  
    1616||<rest_api_port>  || Port to which the REST server is bound      || 8080                 ||
    1717||<controller_url> || http://<host_url>:<rest_api_port>           || http://localhost:8080||
     18||<ip_address>     || IP address in A.B.C.D form                  || 192.168.1.2          ||
     19||<mac_address>    || MAC address in xx:xx:xx:xx:xx:xx form       || 12:de:ad:be:ef:90    ||
    1820
    1921==== Querying for Flow Stats ====
     
    3638
    3739==== Detecting where devices enter the OpenFlow network ====
     40These queries can let you know where a given MAC address or IP address is entering the network, as well as if there are things like multiple interfaces with the same IP address within the network (which is particularly useful in shared VLAN environments).
     41{{{
     42curl <controller_url>/wm/device/?ipv4=<ip_address> | python -m json.tool
     43curl <controller_url>/wm/device/?mac=<mac_address> | python -m json.tool
     44}}}
    3845
    3946==== Querying for Switch Features ====