-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
98 lines (65 loc) · 2.56 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
Copyright (c) 2013 University of Wisconsin-La Crosse.
All rights reserved.
Copyright (c) 2013 Cisco Systems, Inc. All rights reserved.
$COPYRIGHT$
See COPYING in top-level directory.
Additional copyrights may follow
$HEADER$
===========================================================================
Building netloc
---------------
The typical installation follows the following pattern:
--------------------------------------
shell$ ./configure [options...]
shell$ make
shell$ make install
--------------------------------------
There are a few configuration options available. See ./configure --help for
a complete list.
Common Configuration Options
--prefix=<directory>
Install netloc into the base directory specified.
Required Support Libraries
--with-jansson=<directory>
Installation directory of the Jansson JSON parsing library.
http://www.digip.org/jansson/
--with-hwloc=<directory>
Installation directory of the hwloc library.
http://www.open-mpi.org/projects/hwloc/
===========================================================================
Using netloc
------------
The netloc model separates network topology discovery mechanism from the
mechanism for querying that data via the netloc API.
Using netloc: Discovering the network topology
----------------------------------------------
The netloc reader tools provide the functionality to discover the network
topology for various types of networks. Below is a list and brief description
of the readers currently available in this release of netloc. Further
information about each of these tools can be found in their documentation.
- netloc_reader_ib
Reader for InfiniBand network data.
- netloc_reader_of
Reader for Ethernet network data managed by an OpenFlow controller.
Controllers currently supported:
- OpenDaylight
http://www.opendaylight.org/
- Floodlight
http://www.projectfloodlight.org/floodlight/
Using netloc: Query API
-----------------------
The user-facing API is defined in the following header files:
- include/netloc.h
- include/netloc_map.h
===========================================================================
Unit Tests
----------
A small number of unit tests and testing data have been made available
as part of this distribution. To compile these tests use the following
command:
-------------------
shell$ make check
-------------------
The tests can be run from the tests directory without any command line
parameters.
===========================================================================