<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jason's Computer Science Blog &#187; Heron</title>
	<atom:link href="http://www.jasonernst.com/tag/heron/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jasonernst.com</link>
	<description>By Jason Ernst</description>
	<lastBuildDate>Wed, 25 Jan 2012 14:04:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Ns-3.2 on Ubuntu 8.04 Hardy Heron</title>
		<link>http://www.jasonernst.com/2008/11/22/ns-32-on-ubuntu-804-hardy-heron/</link>
		<comments>http://www.jasonernst.com/2008/11/22/ns-32-on-ubuntu-804-hardy-heron/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 18:18:22 +0000</pubDate>
		<dc:creator>Jason Ernst</dc:creator>
				<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Simulation]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[8.04]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[Hardy]]></category>
		<category><![CDATA[Heron]]></category>
		<category><![CDATA[NS-3.2]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://www.jasonernst.com/?p=203</guid>
		<description><![CDATA[For the next stage of my thesis instead of using the well known ns-2 simulator as originally planned, I have opted to instead use ns-3. I have chosen this particular environment because it seems to be designed from the ground up to be a wireless simulation tool while ns-2 was originally designed solely for wired [...]]]></description>
			<content:encoded><![CDATA[<p>For the next stage of my thesis instead of using the well known ns-2 simulator as originally planned, I have opted to instead use ns-3. I have chosen this particular environment because it seems to be designed from the ground up to be a wireless simulation tool while ns-2 was originally designed solely for wired network simulation. I have made some use of ns-2 however, so if you are looking for a guide to getting that working in Ubuntu see my post &#8220;<a href="http://www.jasonernst.com/2008/06/11/ns-233-and-nam-on-ubuntu-804-hardy-heron/">NS-2.33 on Ubuntu 8.04 Hardy Heron</a>&#8220;.  In addition to this, ns-3 no longer uses the tcl scripting language.  Instead the choice of pure c++ or a combination of c++ and python may be used to define the simulation parameters. I prefer this approach because I have no desire to learn tcl and find the c++ ns-3 ot be more intuitive than ns-2. Additionally, this guide will be used as a reference for myself while I learn the ns-3 environment. Check back for regular updates and useful infromation.</p>
<p><span id="more-203"></span></p>
<p>So back to the point of this article, a guide on how to install ns-3.2 on Ubuntu 8.04 Hardy Heron. Ns-3 installation is quite simple since an automatic build tool named waf is used to build the project. Enter the following in the terminal to download, untar and build ns-3.2.<br />
<pre><code>
wget http://www.nsnam.org/releases/ns-3.2.tar.bz2
tar -xvf ns-3.2.tar.bz2
./waf -d debug configure
</code></pre>
</p>
<h3>How to start working with NS-3</h3>
<p>So from here on out, all you have to do is use the waf tool for compiling and running your ns3 simulations. There are many example scenarios located in the /examples folder. You can run a simulation with any of the scenarios using the waf command. For example if you wanted to run a scenario file named first.cc you would enter the following command:<br />
<pre><code>
./waf --run=first
</code></pre><br />
Notice that you do not need to include the .cc on the filename. If you do happen to misspell the file, ns3 will provide you with a list of all of the scenarios you are able to run. One other important note is that the /scratch folder automatically includes the .cc files as scenarios which you can run. This is likely where you will want to place your new scenarios when working on them. (If you try to put them in the examples folder you will need to edit the wscript file (see <a href="#links">NS3 tutorial</a> on how to do this). On other important thing to note is that ns3 supports improved logging / output compared with ns2 using the pcap file format which can be read using tcpdump or wireshark. These types of files were originally used for packet capturing in real working networks so it makes alot of sense to include this ability in simulation as well.
</p>
<h3>How to display exactly what is going on to the screen (Logging)</h3>
<p>Sometimes when making changes and implementing something new, it is helpful to show everything that is happening on the screen. You can achieve this by entering the following at the linux command line:<br />
<pre><code>
export &#039;NS_LOG=*=level_all|prefix_func|prefix_time&#039;
</code></pre><br />
If you want to restrict the information to only certain parts of the simulation, for example the MAC layer of a wifi AP you could do something like this:<br />
<pre><code>
export &#039;NS_LOG=NqapWifiMac=level_all|prefix_func|prefix_time&#039;
</code></pre><br />
For more information on how to configure the logging to do exactly what you want, see the <a href="http://www.nsnam.org/docs/tutorial.html#SEC42" target="_blank">NS3 Tutorial</a> section on logging.
</p>
<p>If you have turned on logging, you have likely noticed that ns3 generates so much information that it scrolls by way to fast to be of any use. So you will probably want to output the results to a file. For example if you were running the first.cc file again and you have turned on logging you could do this:<br />
<pre><code>
./waf --run=first &gt;&amp; first.txt
</code></pre><br />
which would send the logging output to the file first.txt where you could easily read it.
</p>
<h3>Useful Functions</h3>
<p>So far I have found these functions make debugging scenarios easier:<br />
<pre><code>
static Vector
GetPosition (Ptr&lt;Node&gt; node)
{
&nbsp;&nbsp;Ptr&lt;MobilityModel&gt; mobility = node-&gt;GetObject&lt;MobilityModel&gt; ();
&nbsp;&nbsp;return mobility-&gt;GetPosition ();
}
</code></pre><br />
<pre><code>
static Ipv4Address
GetAddress (Ptr&lt;Node&gt; node, uint32_t interface)
{
&nbsp;&nbsp;Ptr&lt;Ipv4&gt; ipv4 = node-&gt;GetObject&lt;Ipv4&gt; ();
&nbsp;&nbsp;return ipv4-&gt;GetAddress(interface);
}
</code></pre></p>
<h3 id="tips">Tips</h3>
<p>The following are a few important things I&#8217;ve discovered that may save you time when trying to work with ns3 on certain tasks:</p>
<ul>
<li>When simulating an ad-hoc or wireless mesh network using OLSR, make sure you set your mobility model <strong>before</strong> you install the OLSR routing on the nodes. If you do not do this, OLSR may generate link pairs for links which are actually too far away to communicate because before the mobility model is installed on the nodes they are all close enough to communicate.<br/></li>
<li>Also with OLSR, make sure you give OLSR enough time to determine the network topology before you allow the applications to start running on the network. I have read that about 100s of waiting time before starting is enough, however I imagine as the network size grows this may also grow (I have tested with a size of 4&#215;4 and this is enough time &#8211; I will adjust this as I play with the numbers as well)</li>
</ul>
<h3 id="links">Useful Links</h3>
<ul>
<li><a href="http://www.nsnam.org/doxygen-release/index.html" target="blank">NS3 Doxygen Documentation</a></li>
<li><a href="http://www.nsnam.org/docs/tutorial.html" target="_blank">NS3 Tutorial</a></li>
<li><a href="http://www.nsnam.org/docs/release/manual.html" target="_blank">NS3 Manual</a></li>
<li><a href="http://www.nsnam.org/wiki/index.php/Main_Page" target="_blank">NS3 Wiki</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonernst.com/2008/11/22/ns-32-on-ubuntu-804-hardy-heron/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Tutorial: Ns-2.33 (and nam) on Ubuntu 8.04 (Hardy Heron)</title>
		<link>http://www.jasonernst.com/2008/06/11/ns-233-and-nam-on-ubuntu-804-hardy-heron/</link>
		<comments>http://www.jasonernst.com/2008/06/11/ns-233-and-nam-on-ubuntu-804-hardy-heron/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 14:57:54 +0000</pubDate>
		<dc:creator>Jason Ernst</dc:creator>
				<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Simulation]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wireless Networks]]></category>
		<category><![CDATA[8.04]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[Hardy]]></category>
		<category><![CDATA[Heron]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Install]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[NS-2.33]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://www.jasonernst.com/?p=29</guid>
		<description><![CDATA[Since I have been working with ns2 for the last few months in preparation for my thesis I have decided to write a guide on how to install the most recent version of ns2 on the most recent version of ubuntu (at the time of this writing, Monday June 9th, 2008). I have found many [...]]]></description>
			<content:encoded><![CDATA[<p>Since I have been working with ns2 for the last few months in preparation for my thesis I have decided to write a guide on how to install the most recent version of ns2 on the most recent version of ubuntu (at the time of this writing, Monday June 9th, 2008). </p>
<p>I have found many people already who have had difficulty setting it up so maybe this will be of some help to someone.  For this tutorial I am assuming you have installed the most recent version of Ubuntu (8.04). (At the time of writing)</p>
<p><span id="more-29"></span></p>
<h3>Step 1: Update Ubuntu</h3>
<p>Since it has already been a month or so since Hardy Heron has been released its probably best, if you haven&#8217;t already done so to update Ubuntu. The easiest way I&#8217;ve found is to go to System&gt;&gt;Administration&gt;&gt;Update Manager. Alternatively, you can enter this into the terminal:</p>
<div class="snippet">
<div class="snippet-shell">
<pre><code>sudo apt-get update
sudo apt-get upgrade
</code></pre></div>
</div>
<div class="image" style="float:right;"><a href="http://www.jasonernst.com/wp-content/uploads/2008/06/update.png"><img class="alignnone size-medium wp-image-30" title="Ubuntu - Update" src="http://www.jasonernst.com/wp-content/uploads/2008/06/update-300x187.png" alt="Update Manager - Ubuntu Hardy Heron" width="300" height="187" /></a></div>
<h3>Step 2: Download all of the required pieces to make ns2 work</h3>
<p>Here is a list of archives required for ns2 to work properly (you can download them by clicking the links or just enter all of the commands in the code sections below for automatic download and untar). I saved each archive to the desktop so I could find each one easily but you could use anywhere you like.</p>
<ol class="list">
<li><a title="tcl 8.4.14" href="http://www.jasonernst.com/wp-content/uploads/2008/06/tcl8.4.19-src.tar.gz" target="_self">tcl 8.4.14</a></li>
<li><a title="tk 8.4.14" href="http://www.jasonernst.com/wp-content/uploads/2008/06/tk8.4.19-src.tar.gz" target="_self">tk 8.4.14</a></li>
<li><a title="otcl 1.13" href="http://www.jasonernst.com/wp-content/uploads/2008/06/otcl-src-1.13.tar.gz" target="_self">otcl 1.13</a></li>
<li><a title="tclcl 1.19" href="http://www.jasonernst.com/wp-content/uploads/2008/06/tclcl-src-1.19.tar.gz" target="_self">tclcl 1.19</a></li>
<li><a title="ns-2.33" href="http://www.jasonernst.com/wp-content/uploads/2008/06/ns-2.33.tar.gz" target="_self">ns 2.33</a></li>
<li><a title="nam 1.13" href="http://www.jasonernst.com/wp-content/uploads/2008/06/nam-src-1.13.tar.gz" target="_self">nam 1.13</a></li>
</ol>
<h3>Step 2.5: Install Ubuntu Packages</h3>
<p>Before installing everything else, I have found that it is helpful to get a few packages from the ubuntu repositories or else it wont build correctly. Grab a cup of coffee it might take a while since kdebase-dev is somewhat large. I&#8217;m sure there is a way to do this with fewer packages however I know this works. If anyone figures out exactly which packages are required let me know so I can update this.</p>
<div class="snippet">
<div class="snippet-shell">
<code>sudo apt-get install libx11-dev kdebase-dev</code>
</div>
</div>
<h3>Step 3: Install tcl</h3>
<div class="snippet">
<div class="snippet-shell">
<pre><code >wget http://www.jasonernst.com/wp-content/uploads/2008/06/tcl8.4.19-src.tar.gz
tar xvf tcl8.4.19-src.tar.gz
cd tcl8.4.19/unix
./configure
make
sudo make install
</code></pre></div>
</div>
<h3>Step 4: Install tk</h3>
<div class="snippet">
<div class="snippet-shell">
<pre><code>cd ..
cd ..
wget http://www.jasonernst.com/wp-content/uploads/2008/06/tk8.4.19-src.tar.gz
tar xvf tk8.4.19-src.tar.gz
cd tk8.4.19/unix
./configure
make
sudo make install</code></pre>
</div>
</div>
<h3>Step 5: Install oTcl</h3>
<p><em>Important Note:</em> The &#8216;./configure &#8211;with-tcl=&#8217; portion of the following two code fragments should point to the source files for tcl. If you have been following the guide by copying and pasting the previous commands what we have here will work just fine. Otherwise you will need to change this to point to the correct location of your tcl source files. </p>
<div class="snippet">
<div class="snippet-shell">
<pre><code>cd ..
cd ..
wget http://www.jasonernst.com/wp-content/uploads/2008/06/otcl-src-1.13.tar.gz
tar xvf otcl-src-1.13.tar.gz
cd otcl-1.13
./configure --with-tcl=../tcl*/
make
sudo make install</code></pre>
</div>
</div>
<h3>Step 6: Install tclcl</h3>
<div class="snippet">
<div class="snippet-shell">
<pre><code>cd ..
wget http://www.jasonernst.com/wp-content/uploads/2008/06/tclcl-src-1.19.tar.gz
tar xvf tclcl-src-1.19.tar.gz
cd tclcl-1.19
./configure --with-tcl=../tcl*/
make
sudo make install</code></pre></div>
</div>
<h3>Step 7: Install ns2</h3>
<div class="snippet">
<div class="snippet-shell">
<pre><code>cd ..
wget http://www.jasonernst.com/wp-content/uploads/2008/06/ns-2.33.tar.gz
tar xvf ns-2.33.tar.gz
cd ns-2.33
./configure
make
sudo make install</code></pre>
</div>
</div>
<p>You will likely get alot of warnings for deprecated conversions. Just ignore these or if you really are concerned about them visit the <a href="http://nsnam.isi.edu/nsnam/index.php/Troubleshooting#ns-2_not_building_with_gcc.2Fg.2B.2B_4.3.2">nsnam troubleshooting page</a>. If you want to make sure your version of ns-2 is working correctly after the install you can run the validation test from within the ns2 source directory. You can do this by entering:</p>
<div class="snippet">
<div class="snippet-shell">
<code>./validate</code>
</div>
</div>
<p>You should see that the test output agrees with the reference output. Congratulations you have a working version of ns-2 installed.</p>
<h3>Step 8: (optional) Install nam</h3>
<div class="snippet">
<div class="snippet-shell">
<pre><code>cd ..
wget http://www.jasonernst.com/wp-content/uploads/2008/06/nam-src-1.13.tar.gz
tar xvf nam-src-1.13.tar.gz
cd nam-1.13
./configure
make
sudo make install</code></pre>
</div>
</div>
<p>Note: if you get this error:</p>
<div class="snippet">
<div class="snippet-shell">
<code>error: X11/Xmu/WinUtil.h: No such file or directory</code></div>
</div>
<p>it may be necesary to do this: </p>
<div class="snippet">
<div class="snippet-shell">
<code>sudo apt-get install libxmu-dev</code></div>
</div>
<p>You are now ready to start working with ns2 and nam. If you are like me and working on a new protocol or something you will want to start modifying the ns-2 source code and recompile again so you might want to keep that folder handy. The rest of the source can be safely removed as far as i know. Keep in mind after you have modified the source you will want to do another make install so that when you type ns in your terminal the version you just compiled is used. </p>
<h3>Getting Started with NS2</h3>
<p>These are some quick tips to get you started using ns2 if you are a beginner.</p>
<p>All example files are located in ns/tcl/ex. You can run these scenarios on ns2 using <code>ns filename.tcl</code> The best way to start is probably changing things in these files until you understand what is happening more thoroughly.</p>
<p>The output will usually be a trace file with a similar name: ex) filename.tr. Trace files can usually be viewed with a text-editor program. There are also tools to analyze the trace files and pull stats from them. These may require some tweaking however depending on the format of the trace file. Additionally, a nam output file for visualization may be generated as well. This will usually be named filename.nam. To view the visualization use: <code>nam filename.nam</code></p>
<h3>Useful Links</h3>
<p>I thought it might be useful to add a section on useful links here since this article has become quite popular. If you would like to suggest a link feel free to contact me.</p>
<ul class="list">
<li><a href="http://nsnam.isi.edu/nsnam/index.php/Main_Page">Ns2 Wiki</a></li>
<li><a href="http://isi.edu/nsnam/ns/tutorial/index.html">Marc Greis&#8217; Tutorial</a></li>
<li><a href="http://isi.edu/nsnam/ns/ns-documentation.html">NS Manual</a></li>
<li><a href="http://www-sop.inria.fr/maestro/personnel/Eitan.Altman/COURS-NS/n3.pdf">NS for Beginners</a> (pdf)</li>
<li><a href="http://isi.edu/nsnam/ns/ns-problems.html">Common NS2 Installation Problems</a></li>
<li><a href="http://nsnam.isi.edu/nsnam/index.php/Contributed_Code#Wireless_and_Mobility">NS2 Wireless and Mobility Modules</a></li>
<li><a href="http://www.nabble.com/Network-Simulator-ns-2-f15582.html">NS2 Mailing Lists</a></li>
<li><a href="http://dsn.tm.uni-karlsruhe.de/english/Overhaul_NS-2.php">NS2.33 Wireless MAC and PHY improvements</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonernst.com/2008/06/11/ns-233-and-nam-on-ubuntu-804-hardy-heron/feed/</wfw:commentRss>
		<slash:comments>103</slash:comments>
		</item>
	</channel>
</rss>

