@@ -61,7 +61,7 @@ the project provides an installation guide
6161for various systems, available at
6262https://www.nsnam.org/docs/installation/html/index.html.
6363
64- As of the most recent |ns3 | release (ns-3.43 ), the following tools
64+ As of the most recent |ns3 | release (ns-3.44 ), the following tools
6565are needed to get started with |ns3 |:
6666
6767============ ===========================================================
@@ -116,21 +116,21 @@ get a copy of a release by typing the following into your Linux shell
116116 $ cd
117117 $ mkdir workspace
118118 $ cd workspace
119- $ wget https://www.nsnam.org/release/ns-allinone-3.43 .tar.bz2
120- $ tar xjf ns-allinone-3.43 .tar.bz2
119+ $ wget https://www.nsnam.org/release/ns-allinone-3.44 .tar.bz2
120+ $ tar xjf ns-allinone-3.44 .tar.bz2
121121
122122Notice the use above of the ``wget `` utility, which is a command-line
123123tool to fetch objects from the web; if you do not have this installed,
124124you can use a browser for this step.
125125
126126Following these steps, if you change into the directory
127- ``ns-allinone-3.43 ``, you should see a number of files and directories
127+ ``ns-allinone-3.44 ``, you should see a number of files and directories
128128
129129.. sourcecode :: text
130130
131- $ cd ns-allinone-3.43
131+ $ cd ns-allinone-3.44
132132 $ ls
133- bake build.py constants.py netanim-3.109 ns-3.43 README.md util.py
133+ bake build.py constants.py netanim-3.109 ns-3.44 README.md util.py
134134
135135You are now ready to build the base |ns3 | distribution and may skip ahead
136136to the section on building |ns3 |.
@@ -180,7 +180,7 @@ release number:
180180
181181.. sourcecode :: console
182182
183- $ python3 download.py -n ns-3.43
183+ $ python3 download.py -n ns-3.44
184184
185185After this step, the additional repositories of |ns3 |, bake, pybindgen,
186186and netanim will be downloaded to the ``ns-3-allinone `` directory.
@@ -249,9 +249,9 @@ distribution of your choice.
249249
250250There are a few configuration targets available:
251251
252- 1. ``ns-3.43 ``: the code corresponding to the release
252+ 1. ``ns-3.44 ``: the code corresponding to the release
2532532. ``ns-3-dev ``: a similar module but using the development code tree
254- 3. ``ns-allinone-3.43 ``: the module that includes other optional features
254+ 3. ``ns-allinone-3.44 ``: the module that includes other optional features
255255 such as bake build system, netanim animator, and pybindgen
2562564. ``ns-3-allinone ``: similar to the released version of the allinone
257257 module, but for development code.
@@ -268,7 +268,7 @@ code either by inspection of the repository list or by going to the
268268`"ns-3 Releases"
269269<https://www.nsnam.org/releases> `_
270270web page and clicking on the latest release link. We'll proceed in
271- this tutorial example with ``ns-3.43 ``.
271+ this tutorial example with ``ns-3.44 ``.
272272
273273We are now going to use the bake tool to pull down the various pieces of
274274|ns3 | you will be using. First, we'll say a word about running bake.
@@ -297,7 +297,7 @@ Step into the workspace directory and type the following into your shell:
297297
298298.. sourcecode :: console
299299
300- $ ./bake.py configure -e ns-allinone-3.43
300+ $ ./bake.py configure -e ns-allinone-3.44
301301
302302Next, we'll ask bake to check whether we have enough tools to download
303303various components. Type:
@@ -347,7 +347,7 @@ should yield something like:
347347 >> Downloading click-ns-3.37 - OK
348348 >> Downloading BRITE - OK
349349 >> Downloading openflow-dev - OK
350- >> Downloading ns-3.43 (target directory:ns-3.43 ) - OK
350+ >> Downloading ns-3.44 (target directory:ns-3.44 ) - OK
351351
352352The above suggests that three sources have been downloaded. Check the
353353``source `` directory now and type ``ls ``; one should see:
@@ -356,7 +356,7 @@ The above suggests that three sources have been downloaded. Check the
356356
357357 $ cd source
358358 $ ls
359- BRITE click-ns-3.37 netanim-3.109 ns-3.43 openflow-dev
359+ BRITE click-ns-3.37 netanim-3.109 ns-3.44 openflow-dev
360360
361361You are now ready to build the |ns3 | distribution.
362362
@@ -386,7 +386,7 @@ native |ns3| build system, CMake, to be introduced later in this tutorial.
386386
387387If you downloaded
388388using a tarball you should have a directory called something like
389- ``ns-allinone-3.43 `` under your ``~/workspace `` directory.
389+ ``ns-allinone-3.44 `` under your ``~/workspace `` directory.
390390Type the following:
391391
392392.. sourcecode :: console
@@ -419,7 +419,7 @@ and you should see something like:
419419.. sourcecode :: text
420420
421421 >> Building netanim-3.109 - OK
422- >> Building ns-3.43 - OK
422+ >> Building ns-3.44 - OK
423423
424424There may be failures to build all components, but the build will proceed
425425anyway if the component is optional.
0 commit comments