A homepage subtitle here And an awesome description here!

23 April 2013

Print the Congestion Window Graph in NS2

Congestion window size is a major factor in predicting the performance of a TCP Network. NS2 handles the Congestion window like a variable cwnd_ and it can be printed to a graph and as well printed as values at various intervals of time.
The following tcl script will let you understand the working of the network (TCP Reno Protocol) and also helps you in plotting the characteristics of Congestion window value.
Xgraph is used to plot the congestion window. To install xgraph, one can use the ns-allinone-2.3x package or directly install using
yum install xgraph (fedora) and
sudo apt-get install xgraph (Ubuntu, Linux Mint and Debian families)
Each and every line of the code is explained with comments. Still any doubts, please post your queries in the comment section.
When you copy and paste the following lines in your editor, see whether the characters are ASCII or else download here.

#create simulator
set ns [new Simulator]        
#to create nodes
set n0 [$ns node]
set n1 [$ns node]
set n2 [$ns node]
set n3 [$ns node]
set n4 [$ns node]
set n5 [$ns node]

# to create the link between the nodes with bandwidth, delay and queue
$ns duplex-link $n0 $n2   2Mb  10ms DropTail
$ns duplex-link $n1 $n2   2Mb  10ms DropTail
$ns duplex-link $n2 $n3 0.3Mb 200ms DropTail
$ns duplex-link $n3 $n4 0.5Mb  40ms DropTail
$ns duplex-link $n3 $n5 0.5Mb  30ms DropTail

# Sending node is 0 with agent as Reno Agent
set tcp1 [new Agent/TCP/Reno]
$ns attach-agent $n0 $tcp1

# receiving (sink) node is n4
set sink1 [new Agent/TCPSink]
$ns attach-agent $n4 $sink1

# establish the traffic between the source and sink
$ns connect $tcp1 $sink1

# Setup a FTP traffic generator on "tcp1"
set ftp1 [new Application/FTP]
$ftp1 attach-agent $tcp1
$ftp1 set type_ FTP               

# start/stop the traffic
$ns at 0.1   "$ftp1 start"
$ns at 40.0 "$ftp1 stop"

# Set simulation end time
$ns at 50.0 "finish"            
# procedure to plot the congestion window
proc plotWindow {tcpSource outfile} {
   global ns
   set now [$ns now]
   set cwnd [$tcpSource set cwnd_]

# the data is recorded in a file called congestion.xg (this can be plotted # using xgraph or gnuplot. this example uses xgraph to plot the cwnd_
   puts  $outfile  "$now $cwnd"
   $ns at [expr $now+0.1] "plotWindow $tcpSource  $outfile"
}

set outfile [open  "congestion.xg"  w]
$ns  at  0.0  "plotWindow $tcp1  $outfile"
proc finish {} {
exec xgraph congestion.xg -geometry 300x300 &
   exit 0
}
# Run simulation 
$ns run
Here is the output looks like
Run the above file using "ns congestion.tcl"
xgraph

19 April 2013

NS2 Scenario Generator - Lecture 7

If you are tired of writing code using .tcl files, here is a solution for that. This software is a little bit old, as it released sometime during 2007, still some of the students/Researchers are not aware of this software.
So, you need not waste your time in editing the tcl files. And since this software is written in java, it works well with almost any Operating System (With JRE installed on the System).

Refer this video for more information



You can download the software from this link https://sites.google.com/site/pengjungwu/nsg
Some features of this software

  1. wired and wireless nodes will be created
  2. establish connection between the nodes
  3. Creating links (Duplex-Link and Simplex-Link)
  4. TCP and UDP agents are supported
  5. Creating applications (CBR and FTP)
  6. Node movement
And still there are lot more as the developer of this software is actively maintaining the software and you can expect lot more in the future also.

You can download the software from this link directly. https://sites.google.com/site/pengjungwu/nsg/NSG2.1.jar?attredirects=0

To run this file, type the command in any OS
java -jar NSG2.1.jar

Here is the screenshot of the Application

NSG

NSG2.1



02 April 2013

Top 10 Networking Commands in Linux

There are many network commands linux supports but there are only a few commands that explore the major things in a network. There are 10 such networking commands in Linux to explore the routing, packets, etc.
if you want to know about the commands use "man commandname" (without Quotes)
Command 1:
# ifconfig
you may use the options to configure ifconfig -v (for showing the verbose mode)
command to configure the given network interface (wlan0, eth0, etc)
Command 2 :
# ping 172.16.1.10

To send ICMP, Echo request to hosts

Here is the output
PING 172.16.1.10 (172.16.1.10) 56(84) bytes of data.
64 bytes from 172.16.1.10: icmp_req=1 ttl=128 time=0.735 ms
64 bytes from 172.16.1.10: icmp_req=2 ttl=128 time=0.871 ms

--- 172.16.1.10 ping statistics ---

2 packets transmitted, 2 received, 0% packet loss, time 999ms
rtt min/avg/max/mdev = 0.735/0.803/0.871/0.068 ms
Command 3: 
traceroute domainname or IP Address
print the route packets trace to network host
Ex: 
traceroute www.vit.ac.in
See the image below for output
Command 4: 
route -n
 show / manipulate the IP routing table
it displays the kernel routing table with the default address and next hop address as given below
Output:
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         172.16.0.10     0.0.0.0         UG    0      0        0 wlan0
169.254.0.0     0.0.0.0         255.255.0.0     U     1000   0        0 wlan0
172.16.0.0      0.0.0.0         255.255.192.0   U     9      0        0 wlan0
172.16.29.0     0.0.0.0         255.255.255.0   U     0      0        0 vmnet8
172.16.33.0     0.0.0.0         255.255.255.0   U     0      0        0 vmnet1
Command 5: 
# nslookup domainname
it querys Internet name servers interactively
Command 6: 
telnet ipaddress
user interface to the TELNET protocol
it uses to connect to other machines using the TELNET protocol
Command 7: 
ssh ipaddress
OpenSSH SSH client (remote login program)
the usage is
ssh username@ipaddress
you need to enter the password of the user
Ex: ssh pradeepkumar@172.16.49.132
if you want to use it with graphical interface, "ssh -X pradeepkumar@172.16.49.132"
Command 8: 
host ipaddress or domainname (DNS lookup utility)
Here is the output for the following 
host nsnam.com
Command 9: 
dig ipaddress mx   (DNS lookup utility (domain information groper))
dig nsnam.com mx (mx for mail exchange)
Command 10: 
netstat -a
Print network connections, routing tables, interface statistics, masquerade connections, and multicast memberships

01 April 2013

How to Access Wordpress from two URLs (IP)

If you have developed a wordpress Site to be configured for internet and Intranet. The following script will let you access the wordpress site from two different IP address or URLs.
The home folder of wordpress contains a wp-config.php file.

Include the following lines into the wp-config.php file

$LAN_PREFIX = '172.16.';
if(substr($_SERVER['REMOTE_ADDR'], 0, strlen($LAN_PREFIX)) == $LAN_PREFIX) {
    define('WP_HOME','
http://172.16.1.10/glug');
    define('WP_SITEURL','http://172.16.1.10/glug');     // The local IP
} else {
    define('WP_HOME','
http://10.21.15.2/glug');
    define('WP_SITEURL','http://10.21.15.2/glug');     // The public IP
}
this will be suitable for those who needs to conserve the bandwidth inside your campus (Use Intranet) and can access outside the campus (Use Internet).

NB: Once this setting is enabled and restart the server, inside the wordpress dashboard-> settings –> General –> The HOME and SITEURL will be blocked (Uneditable).

Powered by Blogger.

About Me

Featured Post

5G Network Simulation in NS3 using mmWave | NS3 Tutorial 2024

5G Network Simulation in NS3 Using mmWave This post shows the installation of ns3mmwave in Ubuntu 24.04 and simulates 5G networks in ns3. In...

Contact form

Name

Email *

Message *

Total Pageviews

Search This Blog

Pages

Pages

Pages - Menu

Most Popular

Popular Posts