Skip to content

Commit 5481f0a

Browse files
committed
doc: Update ns-3 version in tutorial and installation
1 parent 58346a2 commit 5481f0a

File tree

3 files changed

+24
-24
lines changed

3 files changed

+24
-24
lines changed

doc/installation/source/quick-start.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ Download
8080

8181
There are two main options:
8282

83-
1. Download a release tarball. This will unpack to a directory such as ``ns-allinone-3.43``
83+
1. Download a release tarball. This will unpack to a directory such as ``ns-allinone-3.44``
8484
containing |ns3| and some other programs. Below is a command-line download using ``wget``,
8585
but a browser download will also work::
8686

87-
$ wget https://www.nsnam.org/releases/ns-allinone-3.43.tar.bz2
88-
$ tar xfj ns-allinone-3.43.tar.bz2
89-
$ cd ns-allinone-3.43/ns-3.43
87+
$ wget https://www.nsnam.org/releases/ns-allinone-3.44.tar.bz2
88+
$ tar xfj ns-allinone-3.44.tar.bz2
89+
$ cd ns-allinone-3.44/ns-3.44
9090

9191
2. Clone |ns3| from the Git repository. The ``ns-3-allinone`` can be cloned, as well as
9292
``ns-3-dev`` by itself. Below, we illustrate the latter::
@@ -99,7 +99,7 @@ you clone |ns3|, your directory will be named ``ns-3-dev``. By default, Git wil
9999
the |ns3| ``master`` branch, which is a development branch. All |ns3| releases are tagged
100100
in Git, so if you would then like to check out a past release, you can do so as follows::
101101

102-
$ git checkout -b ns-3.43-release ns-3.43
102+
$ git checkout -b ns-3.44-release ns-3.44
103103

104104
In this quick-start, we are omitting download and build instructions for optional |ns3| modules,
105105
the ``NetAnim`` animator, Python bindings, and ``NetSimulyzer``. The

doc/tutorial/source/getting-started.rst

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ the project provides an installation guide
6161
for various systems, available at
6262
https://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
6565
are 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

122122
Notice the use above of the ``wget`` utility, which is a command-line
123123
tool to fetch objects from the web; if you do not have this installed,
124124
you can use a browser for this step.
125125

126126
Following 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

135135
You are now ready to build the base |ns3| distribution and may skip ahead
136136
to 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

185185
After this step, the additional repositories of |ns3|, bake, pybindgen,
186186
and netanim will be downloaded to the ``ns-3-allinone`` directory.
@@ -249,9 +249,9 @@ distribution of your choice.
249249

250250
There 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
253253
2. ``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
256256
4. ``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>`_
270270
web 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

273273
We 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

302302
Next, we'll ask bake to check whether we have enough tools to download
303303
various 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

352352
The 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

361361
You 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

387387
If you downloaded
388388
using 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.
390390
Type 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

424424
There may be failures to build all components, but the build will proceed
425425
anyway if the component is optional.

doc/tutorial/source/quick-start.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ Downloading the Latest Release
6464

6565
::
6666

67-
$ tar xjf ns-allinone-3.43.tar.bz2
67+
$ tar xjf ns-allinone-3.44.tar.bz2
6868

6969
3) Change into the |ns3| directory directly; e.g.
7070

7171
::
7272

73-
$ cd ns-allinone-3.43/ns-3.43
73+
$ cd ns-allinone-3.44/ns-3.44
7474

7575
The ns-allinone directory has some additional components but we are skipping
7676
over them here; one can work directly from the |ns3| source code directory.
@@ -92,12 +92,12 @@ only to `cd` into ns-3-dev; the `master` branch is checked out by default.
9292

9393
$ cd ns-3-dev
9494

95-
If instead you want to try the most recent release (version 3.43 as of this
95+
If instead you want to try the most recent release (version 3.44 as of this
9696
writing), you can checkout a branch corresponding to that git tag:
9797

9898
::
9999

100-
$ git checkout -b ns-3.43-branch ns-3.43
100+
$ git checkout -b ns-3.44-branch ns-3.44
101101

102102
Building and testing ns-3
103103
*************************

0 commit comments

Comments
 (0)