Telnet Experiment
Telnet Experiment
Telnet Experiment
AIM : Using Free Open Source Software tools for network simulation – I Preliminary usage of
the tool ns3 Simulate telnet and ftp between N sources - N sinks (N = 1, 2, 3). Evaluate the effect
of increasing data rate on congestion.
Objectives
Get a basic understanding of the way objectives interact in ns.
Lay the foundations for more complicated simulations.
Create a script that simulates the simplest topology
Code :
#Create NS Object :
set ns [new Simulator]
n0 n0
udp
null
cbr
#start ns
$ns run
#stop ns
exit 0