SlideShare a Scribd company logo
2
Most read
3
Most read
11
Most read
Wired	and	wireless	
example
T	S	PRADEEP	KUMAR	
VIT	University	–	Chennai	Campus	
http://www.pradeepkumar.org	
tspembedded@gmail.com	
www.facebook.com/tspradeep	
1
Wired	Example
2
Wired	Example….
• This	network	consists	of	4	nodes	(n0,	n1,	n2,	n3)	as	shown	in	
above	figure.		
• The	duplex	links	between	n0	and	n2,	and	n1	and	n2	have	2	
Mbps	of	bandwidth	and	10ms	of	delay.		
• The	duplex	link	between	n2	and	n3	has	1.7	Mbps	of	bandwidth	
and	20	ms	of	delay.		
• Each	node	uses	a	DropTail	queue,	of	which	the	maximum	size	is	
10.	
3
Wired	Example….
#Create	a	simulator	object	
set	ns	[new	Simulator]	
#Open	the	NAM	trace	file	
set	nf	[open	out.nam	w]	
$ns	namtrace-all	$nf	
#color	for	data	flow	
$ns	color	1	red	
$ns	color	2	blue		
#Create	four	nodes	
set	n0	[$ns	node]	
set	n1	[$ns	node]	
set	n2	[$ns	node]	
set	n3	[$ns	node]	
4
Wired	Example….
#Define	a	'finish'	procedure	
proc	finish	{}	{	
								global	ns	nf	
								$ns	flush-trace	
								#Close	the	NAM	trace	file	
								close	$nf	
								#Execute	NAM	on	the	trace	file	
								exec	nam	out.nam	&	
								exit	0	
}
5
Wired	Example….
#Create	links	between	the	nodes	
$ns	duplex-link	$n0	$n2	2Mb	10ms	DropTail	
$ns	duplex-link	$n1	$n2	2Mb	10ms	DropTail	
$ns	duplex-link	$n2	$n3	1.7Mb	20ms	DropTail	
#Set	Queue	Size	of	link	(n2-n3)	to	10	
$ns	queue-limit	$n2	$n3	10	
#Give	node	position	(for	NAM)	
$ns	duplex-link-op	$n0	$n2	orient	right-down	
$ns	duplex-link-op	$n1	$n2	orient	right-up	
$ns	duplex-link-op	$n2	$n3	orient	right	
#Monitor	the	queue	for	link	(n2-n3).	(for	NAM)	
$ns	duplex-link-op	$n2	$n3	queuePos	0.5	
6
Wired	Example….
#Setup	a	TCP	connection	
set	tcp	[new	Agent/TCP]	
$tcp	set	class_	2	
$ns	attach-agent	$n0	$tcp	
set	sink	[new	Agent/TCPSink]	
$ns	attach-agent	$n3	$sink	
$ns	connect	$tcp	$sink	
$tcp	set	fid_	1
7
Wired	Example….
#Setup	a	FTP	over	TCP	connection	
set	ftp	[new	Application/FTP]	
$ftp	attach-agent	$tcp	
$ftp	set	type_	FTP	
#Setup	a	UDP	connection	
set	udp	[new	Agent/UDP]	
$ns	attach-agent	$n1	$udp	
set	null	[new	Agent/Null]	
$ns	attach-agent	$n3	$null	
$ns	connect	$udp	$null	
$udp	set	fid_	2 8
Wired	Example….
#Setup	a	CBR	over	UDP	connection	
set	cbr	[new	Application/Traffic/CBR]	
$cbr	attach-agent	$udp	
$cbr	set	type_	CBR	
$cbr	set	packet_size_	1000	
$cbr	set	rate_	1mb	
$cbr	set	random_	false	
9
Wired	Example….
#Schedule	events	for	the	CBR	and	FTP	agents	
$ns	at	0.1	"$cbr	start"	
$ns	at	1.0	"$ftp	start"	
$ns	at	4.0	"$ftp	stop"	
$ns	at	4.5	"$cbr	stop"	
#Detach	tcp	and	sink	agents	(not	really	necessary)	
$ns	at	4.5	"$ns	detach-agent	$n0	$tcp	;	$ns	detach-agent	$n3	$sink"	
#Call	the	finish	procedure	after	5	seconds	of	simulation	time	
$ns	at	5.0	"finish"	
#Print	CBR	packet	size	and	interval	
puts	"CBR	packet	size	=	[$cbr	set	packet_size_]"	
puts	"CBR	interval	=	[$cbr	set	interval_]"	
#Run	the	simulation	
$ns	run	
10
Output
11

More Related Content

PDF
Transport layer services
PDF
Configuration of bus topology in cisco packet tracer by Tanjilur Rahman
PPT
Chapter 32
PPTX
Tcp IP Model
PPTX
Computer networks - Channelization
PPT
transport layer
PPSX
Transport layer services
Configuration of bus topology in cisco packet tracer by Tanjilur Rahman
Chapter 32
Tcp IP Model
Computer networks - Channelization
transport layer

What's hot (20)

PPT
Chap 12 tcp
PDF
Building Topology in NS3
PPTX
Lecture 13
PDF
Admission control
PPTX
TCP- Transmission Control Protocol
PDF
Metropolitan Area Network (MAN) Design with Cisco Packet Tracer
PPTX
TCP and UDP
PPTX
Carrier-sense multiple access with collision avoidance CSMA/CA
PPTX
Computer Network - Network Layer
PDF
شرح مبسط جدا لمنهج سيسكو CCNA
PPTX
TCP/IP Introduction
PPT
Chapter 4 data link layer
PPTX
Routing protocols
PPT
Chapter 10
PPTX
Media Access Control
PPTX
Data communication and networks by B. Forouzan
PPTX
The medium access sublayer
Chap 12 tcp
Building Topology in NS3
Lecture 13
Admission control
TCP- Transmission Control Protocol
Metropolitan Area Network (MAN) Design with Cisco Packet Tracer
TCP and UDP
Carrier-sense multiple access with collision avoidance CSMA/CA
Computer Network - Network Layer
شرح مبسط جدا لمنهج سيسكو CCNA
TCP/IP Introduction
Chapter 4 data link layer
Routing protocols
Chapter 10
Media Access Control
Data communication and networks by B. Forouzan
The medium access sublayer
Ad

Similar to Wired and Wireless Examples in ns2 (20)

PPTX
NS2 Demo PPT for configuring networks.pptx
PDF
Introduction to ns2
PDF
cscn1819.pdf
PDF
Cs757 ns2-tutorial-exercise
PPT
Ns network simulator
PPT
Ns 2 Network Simulator An Introduction
PPT
Ns fundamentals 1
PDF
Error Control in Multimedia Communications using Wireless Sensor Networks report
PDF
Virtual lab - Routing in Mobile Adhoc Networks
PDF
Glomosim scenarios
PDF
Ns2: OTCL - PArt II
PPT
Network Simulator Tutorial
PDF
NS2-tutorial.pdf
PDF
study-of-network-simulator.pdf
PPT
Venkat ns2
PPTX
Working with NS2
PDF
DCCN 2016 - Tutorial 2 - 4G for SmartGrid ecosystem
PPTX
Spring sim 2010-riley
NS2 Demo PPT for configuring networks.pptx
Introduction to ns2
cscn1819.pdf
Cs757 ns2-tutorial-exercise
Ns network simulator
Ns 2 Network Simulator An Introduction
Ns fundamentals 1
Error Control in Multimedia Communications using Wireless Sensor Networks report
Virtual lab - Routing in Mobile Adhoc Networks
Glomosim scenarios
Ns2: OTCL - PArt II
Network Simulator Tutorial
NS2-tutorial.pdf
study-of-network-simulator.pdf
Venkat ns2
Working with NS2
DCCN 2016 - Tutorial 2 - 4G for SmartGrid ecosystem
Spring sim 2010-riley
Ad

More from Pradeep Kumar TS (20)

PDF
Digital Portfolio and Footprint
PDF
Open book Examination
PDF
Software Define Networking (SDN)
PDF
What next - Career Enhancement of Graduates
PDF
Protothreads
PDF
PDF
Software Defined Networks
PDF
Higher Order Thinking - Question paper setting
PDF
IoT Communication Protocols
PDF
IoT Applications
PDF
RPL - Routing Protocol for Low Power and Lossy Networks
PDF
Mannasim for NS2
PDF
Recompiling network simulator 2
PDF
OTcl and C++ linkages in NS2
PDF
Installation of ns2
PDF
Introduction to ns2
PDF
Software Defined Networking - 1
PDF
Software Defined Networking - 2
PDF
Software Defined Networking - 3
PDF
Tracing and awk in ns2
Digital Portfolio and Footprint
Open book Examination
Software Define Networking (SDN)
What next - Career Enhancement of Graduates
Protothreads
Software Defined Networks
Higher Order Thinking - Question paper setting
IoT Communication Protocols
IoT Applications
RPL - Routing Protocol for Low Power and Lossy Networks
Mannasim for NS2
Recompiling network simulator 2
OTcl and C++ linkages in NS2
Installation of ns2
Introduction to ns2
Software Defined Networking - 1
Software Defined Networking - 2
Software Defined Networking - 3
Tracing and awk in ns2

Recently uploaded (20)

PPTX
Operating system designcfffgfgggggggvggggggggg
PDF
top salesforce developer skills in 2025.pdf
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PPTX
Reimagine Home Health with the Power of Agentic AI​
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PPTX
Odoo POS Development Services by CandidRoot Solutions
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PPTX
Essential Infomation Tech presentation.pptx
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PDF
System and Network Administration Chapter 2
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PDF
Softaken Excel to vCard Converter Software.pdf
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
Operating system designcfffgfgggggggvggggggggg
top salesforce developer skills in 2025.pdf
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
Reimagine Home Health with the Power of Agentic AI​
Navsoft: AI-Powered Business Solutions & Custom Software Development
Odoo POS Development Services by CandidRoot Solutions
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Essential Infomation Tech presentation.pptx
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
System and Network Administration Chapter 2
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
Upgrade and Innovation Strategies for SAP ERP Customers
Adobe Illustrator 28.6 Crack My Vision of Vector Design
How to Choose the Right IT Partner for Your Business in Malaysia
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
Softaken Excel to vCard Converter Software.pdf
2025 Textile ERP Trends: SAP, Odoo & Oracle

Wired and Wireless Examples in ns2