A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
topology.h
Go to the documentation of this file.
1/**
2 * \defgroup topology Topology Input Readers
3 *
4 * \section topologyOverview Topology Input Readers Overview
5 *
6 * The topology modules aim at reading a topology file generated by an automatic topology generator.
7 *
8 * The process is divided in two steps:
9 * - running a topology generator to build a topology file
10 * - reading the topology file and build a ns-3 simulation
11 *
12 * Hence, model is focused on being able to read correctly the various topology formats.
13 *
14 * Currently there are three models:
15 * - ns3::OrbisTopologyReader for Orbis 0.7 traces
16 * (https://web.archive.org/web/20181102004219/http://sysnet.ucsd.edu/~pmahadevan/topo_research/topo.html)
17 * - ns3::InetTopologyReader for Inet 3.0 traces
18 * (https://web.archive.org/web/20210308100536/http://topology.eecs.umich.edu/inet/)
19 * - ns3::RocketfuelTopologyReader for Rocketfuel traces
20 * (http://www.cs.washington.edu/research/networking/rocketfuel/)
21 *
22 * See the ns-3 modules manual for further information.
23 *
24 * Examples can be found in the directory src/topology-read/examples/
25 */