Skip to main content

VLAN implementation using NS2

Installing ns-3.34 in Ubuntu 20.04

This post shows how to install ns 3.34 in Ubuntu 20.04 LTS

Prerequisites:
Follow the video link for complete step by step instructions on the installation. 



This version fixes the compilation issues of vanet-routing-compare.cc (bug in ns3.33) 

Issue the following commands after opening a terminal 

$ sudo apt update

$ sudo apt install g++ python3 python3-dev python-dev pkg-config sqlite3 python3-setuptools git qt5-default gir1.2-goocanvas-2.0 python3-gi python3-gi-cairo python3-pygraphviz gir1.2-gtk-3.0 ipython3 openmpi-bin openmpi-common openmpi-doc libopenmpi-dev autoconf cvs bzr unrar openmpi-bin openmpi-common openmpi-doc libopenmpi-dev tcpdump wireshark libxml2 libxml2-dev

Unzip or untar the ns-allinone-3.34.tar.bz2 in the home folder (in my case its /home/pradeepkumar)

$ cd ns-allinone-3.34/
$ ./build.py --enable-examples --enable-tests 

Once the installation is completed, you may get an output shown as below
ns3
ns-3.34 in Ubuntu 20.04


The following packages are installed
Visualizer
NetAnim
Python Bindings
Wireshark
ns3
GNU Scientific Library IEEE 802.11b 
MPI 

Please subcribe to my channel and share it to your friends..

There is membership options as well for my channel.

Thanks for watching...!!!!

In case, if you want to contribute to my work on Engineering Clinic, You can be part of my channel as a member.
Join my channel to get access to perks: https://www.youtube.com/channel/UCSckTbBIf39jf2dIbruS32A/join

Comments

  1. how we can use COAP and Quic protocol in ns2

    ReplyDelete
  2. Good Morning sir,
    Sir I am a Ph.D student in NIT Jalandhar.
    I have started my research in IoT MAC Layer. My research objective are energy optimization, reliability improvement, and scalability optimization. I am using NS 2.35 simulator for this. Sir would you please help me to download the source code or patch file for the above objective and how to modified the file to fulfill the above objective in IoT MAC layer.

    ReplyDelete
  3. hello sir, I'd message you many time but did not get response form your side.
    I've a question? please help me.

    ReplyDelete
  4. Dear Sir,
    greetings,
    I am a Ph.D student preparing a thesis on routing opimization for vanets.
    My research objective are routing optimization, reliability improvement, and scalability optimization. I am using NS 3.31 simulator and sumo 1.2.0.

    I am using meta heuristics approaches (ACO, GA,RTO,...)to optimize GPSR routing for vanet.

    I address the routing optimization issue for VANET to define the optimal and the most reliable path for communication among vehicles. We have defined a new route optimization metric for data packet transmission between a source vehicle and a destination one based on new metric link between any two different vehicles in the aim to improve V2V communication.

    I have designed an improved ACO based optimization routing algorithm for vanet (GPSR, OLSR, AODV) to determine optimal routes for data transmission between a source and a destination vehicle.

    Would you please help me to implement the source code for the above objective and how to modify ( GPSR, OLSR, AODV) to fulfill the above objective.

    Would you provide with the email address to contact you, sir.

    Thanks in advance.

    ReplyDelete
  5. Hi sir
    I'm trying to install ns3 using this video.
    But When i enter this command " ./build.py --enable-examples --enable-tests"
    it stucks in this line: " [2551/3008] compiling src/netanim/examples/star-animation.cc "
    and my system stops working.
    Can you please help me how can i fix this problem?

    ReplyDelete


  6. I was running the code ./build.py --enable-examples --enable-tests in ns3.34 in ubuntu 22.04 and it got this error :

    [2306/3014] Processing command (${PYTHON}): ../bindings/python/ns3modulegen-modular.py ../src/antenna/bindings/modulegen__gcc_LP64.py -> src/antenna/bindings/ns3module.cc src/antenna/bindings/ns3module.h src/antenna/bindings/ns3modulegen.log
    Waf: Leaving directory `/home/grimowl/Desktop/ns-allinone-3.34/ns-3.34/build'
    Build failed
    -> task in 'pybindgen(ns3 module antenna)' failed with exit status 1 (run with -v to display more information)
    Traceback (most recent call last):
    File "/home/grimowl/Desktop/ns-allinone-3.34/./build.py", line 175, in
    sys.exit(main(sys.argv))
    File "/home/grimowl/Desktop/ns-allinone-3.34/./build.py", line 166, in main
    build_ns3(config, build_examples, build_tests, args, build_options)
    File "/home/grimowl/Desktop/ns-allinone-3.34/./build.py", line 86, in build_ns3
    run_command([sys.executable, "waf", "build"] + build_options)
    File "/home/grimowl/Desktop/ns-allinone-3.34/util.py", line 25, in run_command
    raise CommandError("Command %r exited with code %i" % (argv, retval))
    util.CommandError: Command ['/usr/bin/python3', 'waf', 'build'] exited with code 1

    ReplyDelete

Post a Comment

Popular posts from this blog

Installing ns3 in Ubuntu 22.04 | Complete Instructions

In this post, we are going to see how to install ns-3.36.1 in Ubuntu 22.04. You can follow the video for complete details Tools used in this simulation: NS3 version ns-3.36.1  OS Used: Ubuntu 22.04 LTS Installation of NS3 (ns-3.36.1) There are some changes in the ns3 installation procedure and the dependencies. So open a terminal and issue the following commands Step 1:  Prerequisites $ sudo apt update In the following packages, all the required dependencies are taken care and you can install all these packages for the complete use of ns3. $ sudo apt install g++ python3 python3-dev pkg-config sqlite3 cmake python3-setuptools git qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools gir1.2-goocanvas-2.0 python3-gi python3-gi-cairo python3-pygraphviz gir1.2-gtk-3.0 ipython3 openmpi-bin openmpi-common openmpi-doc libopenmpi-dev autoconf cvs bzr unrar gsl-bin libgsl-dev libgslcblas0 wireshark tcpdump sqlite sqlite3 libsqlite3-dev  libxml2 libxml2-dev libc6-dev libc6-dev-i386 libclang-dev llvm-

Installation of NS2 (ns-2.35) in Ubuntu 20.04

Installation of NS2 (ns-2.35) in Ubuntu 20.04 LTS Step 1: Install the basic libraries like      $] sudo apt install build-essential autoconf automake libxmu-dev Step 2: install gcc-4.8 and g++-4.8 open the file using sudo mode $] sudo nano /etc/apt/sources.list Include the following line deb http://in.archive.ubuntu.com/ubuntu bionic main universe $] sudo apt update $] sudo apt install gcc-4.8 g++-4.8 Step 3:  Unzip the ns2 packages to home folder $] tar zxvf ns-allinone-2.35.tar.gz $] cd ns-allinone-2.35/ns-2.35 Modify the following make files. ~ns-2.35/Makefile.in Change @CC@ to gcc-4.8 change @CXX@ to g++-4.8 ~nam-1.15/Makefile.in ~xgraph-12.2/Makefile.in ~otcl-1.14/Makefile.in Change in all places  @CC@ to gcc-4.8 @CPP@ or @CXX@ to g++-4.8 open the file: ~ns-2.35/linkstate/ls.h Change at the Line no 137  void eraseAll() { erase(baseMap::begin(), baseMap::end()); } to This void eraseAll() { this->erase(baseMap::begin(), baseMap::end()); } All changes made Step 4: Open a new termi

Installation of NS2 in Ubuntu 22.04 | NS2 Tutorial 2

NS-2.35 installation in Ubuntu 22.04 This post shows how to install ns-2.35 in Ubuntu 22.04 Operating System Since ns-2.35 is too old, it needs the following packages gcc-4.8 g++-4.8 gawk and some more libraries Follow the video for more instructions So, here are the steps to install this software: To download and extract the ns2 software Download the software from the following link http://sourceforge.net/projects/nsnam/files/allinone/ns-allinone-2.35/ns-allinone-2.35.tar.gz/download Extract it to home folder and in my case its /home/pradeepkumar (I recommend to install it under your home folder) $ tar zxvf ns-allinone-2.35.tar.gz or Right click over the file and click extract here and select the home folder. $ sudo apt update $ sudo apt install build-essential autoconf automake libxmu-dev gawk To install gcc-4.8 and g++-4.8 $ sudo gedit /etc/apt/sources.list make an entry in the above file deb http://in.archive.ubuntu.com/ubuntu/ bionic main universe $ sudo apt update Since, it&#