Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue 15: mention checksums in hybrid simulations #31

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions doc/source/dce-user-kernel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,12 @@ The next step would be writing |ns3| simulation scenario to use the applications
apps = process.Install (nodes.Get (1));
apps.Start (Seconds (1.5));

**Optional**
When running hybrid simulations, i.e. with both kernel and ns3 stacks, the kernel will drop packets with invalid checksums. You can enable ns3 checksums globally:

1. if you pass the argument '--ChecksumEnabled=1' to any program that includes CommandLine parsing.
2. if you export the environment variable NS_GLOBAL_VALUE="ChecksumEnabled=1" before launching your simulation

5. run it !
--------

Expand Down