doc/tutorial/source/getting-started.rst
changeset 11396 02c95df86484
parent 11217 3532680a19f5
child 11544 cfaf2d65b33c
--- a/doc/tutorial/source/getting-started.rst	Wed May 13 10:48:19 2015 -0700
+++ b/doc/tutorial/source/getting-started.rst	Wed May 13 11:12:28 2015 -0700
@@ -96,15 +96,15 @@
   $ cd
   $ mkdir workspace
   $ cd workspace
-  $ wget http://www.nsnam.org/release/ns-allinone-3.22.tar.bz2
-  $ tar xjf ns-allinone-3.22.tar.bz2
+  $ wget http://www.nsnam.org/release/ns-allinone-3.23.tar.bz2
+  $ tar xjf ns-allinone-3.23.tar.bz2
 
-If you change into the directory ``ns-allinone-3.22`` you should see a
+If you change into the directory ``ns-allinone-3.23`` you should see a
 number of files::
 
   $ ls
-  bake      constants.py   ns-3.22               README
-  build.py  netanim-3.105  pybindgen-0.16.0.886  util.py
+  bake      constants.py   ns-3.23               README
+  build.py  netanim-3.106  pybindgen-0.17.0.886  util.py
 
 You are now ready to build the base |ns3| distribution.
 
@@ -163,10 +163,10 @@
 
 There are a few configuration targets available:
 
-1.  ``ns-3.22``:  the module corresponding to the release; it will download
+1.  ``ns-3.23``:  the module corresponding to the release; it will download
     components similar to the release tarball.
 2.  ``ns-3-dev``:  a similar module but using the development code tree
-3.  ``ns-allinone-3.22``:  the module that includes other optional features
+3.  ``ns-allinone-3.23``:  the module that includes other optional features
     such as click routing, openflow for |ns3|, and the Network Simulation
     Cradle
 4.  ``ns-3-allinone``:  similar to the released version of the allinone
@@ -184,7 +184,7 @@
 `"ns-3 Releases"
 <http://www.nsnam.org/releases>`_
 web page and clicking on the latest release link.  We'll proceed in
-this tutorial example with ``ns-3.22``.
+this tutorial example with ``ns-3.23``.
 
 We are now going to use the bake tool to pull down the various pieces of 
 |ns3| you will be using.  First, we'll say a word about running bake.
@@ -210,7 +210,7 @@
 
 Step into the workspace directory and type the following into your shell::
 
-  $ ./bake.py configure -e ns-3.22
+  $ ./bake.py configure -e ns-3.23
 
 Next, we'l ask bake to check whether we have enough tools to download
 various components.  Type::
@@ -256,17 +256,17 @@
    >> Searching for system dependency pygoocanvas - OK
    >> Searching for system dependency python-dev - OK
    >> Searching for system dependency pygraphviz - OK
-   >> Downloading pybindgen-0.16.0.886 - OK
+   >> Downloading pybindgen-0.17.0.886 - OK
    >> Searching for system dependency g++ - OK
    >> Searching for system dependency qt4 - OK
-   >> Downloading netanim-3.105 - OK
-   >> Downloading ns-3.22 - OK    
+   >> Downloading netanim-3.106 - OK
+   >> Downloading ns-3.23 - OK    
 
 The above suggests that three sources have been downloaded.  Check the
 ``source`` directory now and type ``ls``; one should see::
 
   $ ls
-  netanim-3.105  ns-3.22  pybindgen-0.16.0.886
+  netanim-3.106  ns-3.23  pybindgen-0.17.0.886
 
 You are now ready to build the |ns3| distribution.
 
@@ -285,7 +285,7 @@
 
 If you downloaded
 using a tarball you should have a directory called something like 
-``ns-allinone-3.22`` under your ``~/workspace`` directory.  
+``ns-allinone-3.23`` under your ``~/workspace`` directory.  
 Type the following::
 
   $ ./build.py --enable-examples --enable-tests
@@ -301,7 +301,7 @@
 script builds the various pieces you downloaded.  Eventually you should see the
 following::
 
-   Waf: Leaving directory `/path/to/workspace/ns-allinone-3.22/ns-3.22/build'
+   Waf: Leaving directory `/path/to/workspace/ns-allinone-3.23/ns-3.23/build'
    'build' finished successfully (6m25.032s)
   
    Modules built:
@@ -323,7 +323,7 @@
    brite                     click                     openflow                 
    visualizer               
 
-   Leaving directory `./ns-3.22'
+   Leaving directory `./ns-3.23'
 
 Regarding the portion about modules not built::
 
@@ -349,9 +349,9 @@
 
 and you should see something like::
 
-  >> Building pybindgen-0.16.0.886 - OK
-  >> Building netanim-3.105 - OK
-  >> Building ns-3.22 - OK
+  >> Building pybindgen-0.17.0.886 - OK
+  >> Building netanim-3.106 - OK
+  >> Building ns-3.23 - OK
 
 *Hint:  you can also perform both steps, download and build by calling 'bake.py deploy'.*