Skip to main content

ns-3 network simulator and visualizer

Project description

The Network Simulator, Version 3

codecov Gitlab CI Github CI

Latest Release

License

This software is licensed under the terms of the GNU General Public License v2.0 only (GPL-2.0-only). See the LICENSE file for more details.

Table of Contents

NOTE: Much more substantial information about ns-3 can be found at https://www.nsnam.org

Overview: An Open Source Project

ns-3 is a free open source project aiming to build a discrete-event network simulator targeted for simulation research and education. This is a collaborative project; we hope that the missing pieces of the models we have not yet implemented will be contributed by the community in an open collaboration process. If you would like to contribute to ns-3, please check the Contributing to ns-3 section below.

This README excerpts some details from a more extensive tutorial that is maintained at: https://www.nsnam.org/documentation/latest/

Building ns-3

The code for the framework and the default models provided by ns-3 is built as a set of libraries. User simulations are expected to be written as simple programs that make use of these ns-3 libraries.

To build the set of default libraries and the example programs included in this package, you need to use the ns3 tool. This tool provides a Waf-like API to the underlying CMake build manager. Detailed information on how to use ns3 is included in the quick start guide.

Before building ns-3, you must configure it. This step allows the configuration of the build options, such as whether to enable the examples, tests and more.

To configure ns-3 with examples and tests enabled, run the following command on the ns-3 main directory:

./ns3 configure --enable-examples --enable-tests

Then, build ns-3 by running the following command:

./ns3 build

By default, the build artifacts will be stored in the build/ directory.

Supported Platforms

The current codebase is expected to build and run on the set of platforms listed in the release notes file.

Other platforms may or may not work: we welcome patches to improve the portability of the code to these other platforms.

Testing ns-3

ns-3 contains test suites to validate the models and detect regressions. To run the test suite, run the following command on the ns-3 main directory:

./test.py

More information about ns-3 tests is available in the test framework section of the manual.

Running ns-3

On recent Linux systems, once you have built ns-3 (with examples enabled), it should be easy to run the sample programs with the following command, such as:

./ns3 run simple-global-routing

That program should generate a simple-global-routing.tr text trace file and a set of simple-global-routing-xx-xx.pcap binary PCAP trace files, which can be read by tcpdump -n -tt -r filename.pcap. The program source can be found in the examples/routing directory.

Running ns-3 from Python

If you do not plan to modify ns-3 upstream modules, you can get a pre-built version of the ns-3 python bindings. It is recommended to create a python virtual environment to isolate different application packages from system-wide packages (installable via the OS package managers).

python3 -m venv ns3env
source ./ns3env/bin/activate
pip install ns3

If you do not have pip, check their documents on how to install it.

After installing the ns3 package, you can then create your simulation python script. Below is a trivial demo script to get you started.

from ns import ns

ns.LogComponentEnable("Simulator", ns.LOG_LEVEL_ALL)

ns.Simulator.Stop(ns.Seconds(10))
ns.Simulator.Run()
ns.Simulator.Destroy()

The simulation will take a while to start, while the bindings are loaded. The script above will print the logging messages for the called commands.

Use help(ns) to check the prototypes for all functions defined in the ns3 namespace. To get more useful results, query specific classes of interest and their functions e.g., help(ns.Simulator).

Smart pointers Ptr<> can be differentiated from objects by checking if __deref__ is listed in dir(variable). To dereference the pointer, use variable.__deref__().

Most ns-3 simulations are written in C++ and the documentation is oriented towards C++ users. The ns-3 tutorial programs (first.cc, second.cc, etc.) have Python equivalents, if you are looking for some initial guidance on how to use the Python API. The Python API may not be as full-featured as the C++ API, and an API guide for what C++ APIs are supported or not from Python do not currently exist. The project is looking for additional Python maintainers to improve the support for future Python users.

ns-3 Documentation

Once you have verified that your build of ns-3 works by running the simple-global-routing example as outlined in the running ns-3 section, it is quite likely that you will want to get started on reading some ns-3 documentation.

All of that documentation should always be available from the ns-3 website: https://www.nsnam.org/documentation/.

This documentation includes:

Working with the Development Version of ns-3

If you want to download and use the development version of ns-3, you need to use the tool git. A quick and dirty cheat sheet is included in the manual, but reading through the Git tutorials found in the Internet is usually a good idea if you are not familiar with it.

If you have successfully installed Git, you can get a copy of the development version with the following command:

git clone https://gitlab.com/nsnam/ns-3-dev.git

However, we recommend to follow the GitLab guidelines for starters, that includes creating a GitLab account, forking the ns-3-dev project under the new account's name, and then cloning the forked repository. You can find more information in the manual.

Contributing to ns-3

The process of contributing to the ns-3 project varies with the people involved, the amount of time they can invest and the type of model they want to work on, but the current process that the project tries to follow is described in the contributing code website and in the CONTRIBUTING.md file.

Reporting Issues

If you would like to report an issue, you can open a new issue in the GitLab issue tracker. Before creating a new issue, please check if the problem that you are facing was already reported and contribute to the discussion, if necessary.

Asking Questions

ns-3 has an official ns-3-users message board where the community asks questions and share helpful advice. Additionally, ns-3 has the ns-3 Zulip chat, used to discuss development issues and questions among maintainers and the community.

Please use the above resources to ask questions about ns-3, rather than creating issues.

ns-3 App Store

The official ns-3 App Store is a centralized directory listing third-party modules for ns-3 available on the Internet.

More information on how to submit an ns-3 module to the ns-3 App Store is available in the ns-3 App Store documentation.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ns3-3.44.post0-cp313-cp313-manylinux_2_28_x86_64.whl (69.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

ns3-3.44.post0-cp312-cp312-manylinux_2_28_x86_64.whl (69.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

ns3-3.44.post0-cp311-cp311-manylinux_2_28_x86_64.whl (69.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

ns3-3.44.post0-cp310-cp310-manylinux_2_28_x86_64.whl (69.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

ns3-3.44.post0-cp39-cp39-manylinux_2_28_x86_64.whl (69.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

ns3-3.44.post0-cp38-cp38-manylinux_2_28_x86_64.whl (69.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

File details

Details for the file ns3-3.44.post0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ns3-3.44.post0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 897bda8ce579a05f17dde77ebde311b5177761db8d73cb53b1ed0e1e4f33da28
MD5 aa9097c8f249822b282d835f36d8a191
BLAKE2b-256 997d475daab3a5ac5cd207a428537e51f9a96e7318e86146cc1d3bdb1443540f

See more details on using hashes here.

File details

Details for the file ns3-3.44.post0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ns3-3.44.post0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d24fd23c9a2bfdb0ee158599c555e10ffdda37c09988c0b4efb577b3445c15b
MD5 5feb1dc5a08d31b56c0d9e58b0f65183
BLAKE2b-256 f7f8bb348a084d126d17f99cb79fc6c65ddd6843f35f36ba3d79db51def762aa

See more details on using hashes here.

File details

Details for the file ns3-3.44.post0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ns3-3.44.post0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2a98479a4a3a1bb819b95ce061871a9d068268b42351b8f0ef598160939ba7ce
MD5 00e29b99ca7d590b55d77cdcd82ae68e
BLAKE2b-256 6defbf334e536cad631e9f29b445231a55c024f915199976c6a30c541378ffc4

See more details on using hashes here.

File details

Details for the file ns3-3.44.post0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ns3-3.44.post0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7c10adec6be54d91658c00989fd1df5c54916fecc2a42b02d7fdf9d129d69d8a
MD5 778b56332e4baa9bcc08c04e725e73f9
BLAKE2b-256 2814f73051b24644dda262cd6c6754a6b04ebfb3d5a0efccf1d9ebf07888ded7

See more details on using hashes here.

File details

Details for the file ns3-3.44.post0-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ns3-3.44.post0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 64a4f5a3128f726b90ab3d5884068f7c4dc1223361ee2a290f8a62b05bcb10d6
MD5 0bbffb04b40ee4b3deefb7387df1ccbd
BLAKE2b-256 1c2e906a8dacc23323d3822ca31d6c94749a22533b1e6966efc5420281dd04bb

See more details on using hashes here.

File details

Details for the file ns3-3.44.post0-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ns3-3.44.post0-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 19e95da588744893c0d7724cda07eda7e76f8ec1e838984c9cf7d3d94295f6d7
MD5 5581fa6ef2d448ffc15002806f5a9bc2
BLAKE2b-256 b244feeee16eb5c356762afcfb28c460701fe47cbf5e9353f18aca8bf50eded7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page