Skip to main content

Posts

Showing posts from November, 2008

VLAN implementation using NS2

05BCEE04 - Syllabus for Real Time Systems

Aim : The subject aims to assimilate the real time system technologies, covering programming languages and tools, database, communication and fault tolerance aspects. Objectives : The students would be able to understand the real time systems concepts to select architectures and programming languages, Analyze the Real Time systems requirements, Evaluate the fault tolerance techniques and systems reliability. Introduction : Issues in real-time system, task classes, architecture issues, operating system issues, performance measure for real time systems, estimating program run times, classical uniprocessor scheduling algorithm, uniprocessor scheduling of IRIS tasks, task assignment, mode changes, fault tolerance scheduling. Programming Languages and Tools : Introduction, desirable languages characteristics, data types, control structures, facilitating hierarchical decomposition packages, exception handling, overloading and generics, multitasking, low-level programming, task scheduling, ti

How to Recompile Network Simulator 2

Assumption :  I installed ns2 under the folder /opt/ The path in my system is /opt/ns-allinone2.33/ns2.33/ U nder the above said folder there are two Makefiles ( Makefile and Makefile.in ) Makefile.in is the input file (any addition or correction will be done in this file only). during compilation this file will be copied to Makefile . So dont try to modify Makefile . Once the changes are made to the Makefile.in, execute the command ./configure at the above said folder. (/opt/ns-allinone2.33/ns2.33# ./configure) Then execute make, if there are any errors during make, correct it .  For Sample Examples of recompilation and how to edit the Makefile.in, comment me, so that i will put it in the next post.

Tracegraph under Windows

Download tracegraph from the website. Download the Matlab run time library mglinstaller.exe unzip or untar the tracegraph.zip file. Tracegraph will be unzipped like " d:\ tracegraph202 " then put the mglinstaller.exe in the "tracegraph202" folder (d:\tracegraph202\) double click the mglinstaller.exe file, it will create a win32 folder and will generate .dll files under  D:\tracegraph202\bin\win32 Put the above directory in the PATH Variable The run trgraph.exe

Setting Root Password in MySQL and PhpMyAdmin

If you are using PhpMyAdmin as part of WAMP(Windows, Apache, MySQL and PHP), then you need to take care of the root password and hence follow the steps. If you change, only the MySQL password or PHPMyAdmin Password, then the PHPMyAdmin screen does not show the databases, files, etc (instead it will show access denied). So Both MySQL and PhpMyAdmin password should be changed and both password should be equal . Go to mysql command window (by default the MySQL has no password) Execute the command set password=password("abc123") ; find the config.inc.php file under phpmyadmin folder (usually in WAMP it will be unde r C:\wamp\apps\phpmyadmin2.11.6 ) and find the following line in the config.inc.php file $cfg['Servers'][$i]['password'] = ' '; // MySQL password Replace the line to $ cfg['Servers'][$i]['password'] = 'abc123'; (as the password the mysql is also "abc123". now restart the server and now

How to Run TCL File in Network Simulator 2

1. Install NS2 and set the path. 2. After Installing NS2, go the $prompt and run ns filename For example, ns tcp.tcl (if the file name is tcp.tcl) 3. after the previous statement automatically the .nam and .tr files will be created in the same folder (the tcl file should contain the provision of tracing the nam and trace file.. those examples we will discuss later in the blog) (nam means Network Animator and tr means Trace file) 4. to see the demo in GUI, run nam tcp.nam (a window will be opened and you can click the run button ) 5. .tr file is actual file helpful to see the performance factors like(throughput, packet drop, etc). You can parse the .tr file using softwares like tracegraph202 (need to download separately) or xgraph( which comes along with ns2)

Installation Instructions for Network Simulator 2

The ns2 version taken here is 2.31, if you downloaded any other version, please modify your version during installation 1)Uncompress the ns2 tar zxvf ns-allinone-2.31.tar.gz or gzip -d ns-allinone-2.31.tar.gz tar xvf ns-allinone-2.31.tar 2) cd /opt/ns-allinone-2.31 (since /opt is the folder which is unused, so i have selected that folder to install, however you can install that in any folder) 3) ./install (execute the command) 4) If the installation fails in the middle, then try to install the linux packages that are necessary to run NS2. (In any linux (ubuntu or fedora or redhat or suse), install the TCL/TK, Perl packages during the installation of linux...) 5) Once the installation succeeded, then the path information will be provided by the NS2 6) Set the path in the /root/.bash_profile (vi /root/.bash_profile) or If you are a user home/ /.bash_profile (for example, if your the username is tsp, then execute this command vi /home/tsp/.bash_profile ) 7) set the

Sample Files for Network Simulator 2

There are some example or sample files stored in the ns2 software itself 1. it is available in the following path /opt/ns-allinone-2.31/ns-2.33/tcl/ex the files can be running by issuing the command ns filename.tcl (only .tcl files can bu running using the command ns) execute the command ns wireless-mitf.tcl (this will create two files in the same folder wireless_mitf.nam and wireless_mitf.tr) nam files means Network Animator Files, these files can be executed by nam wireless_mitf.nam the Trace files can be executed by xgraph which is an inbuilt tool in NS2. But Tracegraph is a third party tool which will take .tr files as the source file and various waveforms will be plotted