File: case0.tcl

package info (click to toggle)
ns2 2.35%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 78,864 kB
  • sloc: cpp: 172,923; tcl: 107,130; perl: 6,391; sh: 6,143; ansic: 5,846; makefile: 818; awk: 525; csh: 355
file content (299 lines) | stat: -rw-r--r-- 8,291 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299

# a simple script to test working of ARQ/HDLC (goBackN and selrepeat)
# using a single TCP flow
# loss model for urban and rural(open) from Lincoln labs paper added  
#
set val(chan)           Channel/Sat                 ;#Channel Type
set val(netif)          Phy/Sat            ;# network interface type
set val(mac)            Mac/Sat                 ;# MAC type
set val(ifq)            Queue/DropTail  ;# interface queue type
#set val(ll)             LL/Sat/HDLC                    ;# link layer type
#set val(ll)             LL/Sat

#set val(err)            MarkovErrorModel
#set val(err)            UrbanComplexMarkovErrorModel
set val(err)            RuralComplexMarkovErrorModel
#set val(err)             UniformErrorProc

set val(bw_up)          10Mb
set val(bw_down)        10Mb
set val(x)		250
set val(y)		250

#set durlistA        "11.2 4.0"      ;# unblocked and blocked state duration avg value
set durlistA        "22.0 26.0 2.9 2.7" ; # for urban model
set durlistB        "27.0 12.0 0.4 0.4"  ;# for complexmarkoverror model


set BW 10; # in Mb/s
set delay 254; # in ms
# Set the queue length (in packets)
#set qlen [expr round([expr ($BW / 8.0) * $delay * 2])]; # set buffer to pipe size

# set sat link bandwidth and delay
Mac set bandwidth_ 10Mb
LL set delay_ 125ms

set val(bdp) [expr 10000/8.0 * 125/100]
LL/Sat/HDLC set window_size_ $val(bdp) 
LL/Sat/HDLC set queue_size_ $val(bdp)
LL/Sat/HDLC set timeout_ 0.26
#LL/Sat/HDLC set max_timeouts_ 5

# set selective repeat on; its GoBackN by default
#LL/Sat/HDLC set selRepeat_ 1

set qlen $val(bdp)
puts "queue len = $qlen"
set val(ifqlen) $qlen


proc start_time {} {return 0; }
# proc start_time {} {return [expr ([eval ns-random] / 2147483647.0) * 0.1]}


proc UniformErrorProc {} {
	global val
	set	errObj [new ErrorModel]
	$errObj unit bit
	#$errObj FECstrength $val(FECstrength) 
	#$errObj datapktsize 512
	#$errObj cntrlpktsize 80
	return $errObj
}

proc MarkovErrorModel {} {
	global durlistA
	
	puts [lindex $durlistA 0]
	puts [lindex $durlistA 1]

	set errmodel [new ErrorModel/TwoStateMarkov $durlistA time]
	
	#$errmodel drop-target [new Agent/Null]
	return $errmodel
}

proc UrbanComplexMarkovErrorModel {} {
	global durlistA
	set errmodel [new ErrorModel/ComplexTwoStateMarkov $durlistA time]
	
	#$errmodel drop-target [new Agent/Null] 
	return $errmodel
}

proc RuralComplexMarkovErrorModel {} {
	global durlistB
	set errmodel [new ErrorModel/ComplexTwoStateMarkov $durlistB time]
	
	#$errmodel drop-target [new Agent/Null] 
	return $errmodel
}

proc stop {} {
    global ns_ tracefd
    $ns_ flush-trace
    close $tracefd
}


proc setup {tcptype queuetype sources qlen duration file seed c_sources delay rate ecn run retries} {
	global val traces ns_ tracefd

	if {$retries == "NULL"} {
		set val(ll) LL/Sat
	} else {
		set val(ll) LL/Sat/HDLC
		LL/Sat/HDLC set max_timeouts_ $retries
	}
	# Initialize Global Variables
	ns-random $seed

	set ns_		[new Simulator]

	set tracefd     [open case0.tr w]
	$ns_ trace-all $tracefd
	$ns_ eventtrace-all

	$ns_ rtproto Static
	
	# Create sat n(0)
	
	# configure node, please note the change below.

	$ns_ node-config -satNodeType geo \
	    -llType $val(ll) \
	    -ifqType $val(ifq) \
	    -ifqLen $val(ifqlen) \
	    -macType $val(mac) \
	    -phyType $val(netif) \
	    -channelType $val(chan) \
	    -downlinkBW $val(bw_down) \
	    -wiredRouting ON \
	    -agentTrace ON
	
	set n(0) [$ns_ node]
	$n(0) set-position -95

	$ns_ node-config -satNodeType terminal

	#set n(100) [$ns_ node]
	#$n(100) set-position 37.9 -122.3; # Berkeley
	
	set n(101) [$ns_ node]
	$n(101) set-position 42.3 -71.1; # Boston

	# Add GSLs to geo satellites
	#$n(100) add-gsl geo $val(ll) $val(ifq) $val(ifqlen) $val(mac) $val(bw_up) \
	    #   $val(netif) [$n(0) set downlink_] [$n(0) set uplink_]
	
	$n(101) add-gsl geo $val(ll) $val(ifq) $val(ifqlen) $val(mac) $val(bw_up) \
	    $val(netif) [$n(0) set downlink_] [$n(0) set uplink_]
	$n(101) interface-errormodel [$val(err)]
	
	
	#$ns_ unset satNodeType_
	
	# create regular routers
	#set n(99) [$ns_ node]    ;#....node 3
	#set n(102) [$ns_ node]   ;#....node 4
	
	
	# determine the actual queutype and save the one asked for 
    # assign queueing parameters -- simulate random drop with RED
	if { [string match RandomDrop* $queuetype ] } then {
		set queuetype [join \
				   [concat "RED" \
					[string range $queuetype [string length "RandomDrop"] end ]]\
				   "" ]
		Queue/$queuetype set thresh_ [expr 2* $qlen]
		Queue/$queuetype set maxthresh_ [expr 2* $qlen]
		# added for ECN comparison
		Queue/$queuetype set setbit_ $ecn
	} elseif { [string match RED* $queuetype ] } then {
		#added by nirav
		Queue/$queuetype set bytes_ false
		Queue/$queuetype set queue_in_bytes_ false
		# Queue/$queuetype set q_weight_ = -1
		# Queue/$queuetype set max_p = 1
		Queue/$queuetype set gentle_ true
		#added by nirav
		#Queue/$queuetype set thresh_ [expr $qlen * 0.5]
		#Queue/$queuetype set maxthresh_ [expr $qlen * 0.75]
		Queue/$queuetype set thresh_ 0
		Queue/$queuetype set maxthresh_ 0
		# added for ECN comparison
		Queue/$queuetype set setbit_ $ecn
	}
	
	# UDP
	#set udp [new Agent/UDP]
 	# $ns_ attach-agent $n(0) $udp
#  	set cbr [new Application/Traffic/CBR]
#   	$cbr set packetSize_ 512
  	#$cbr set interval_ 3.75ms
  	# $cbr set rate_ 10Mb
#  	#$cbr set maxpkts_ 2000
  	# $cbr attach-agent $udp

#   	set null [new Agent/Null]
#   	$ns_ attach-agent $n(101) $null

#   	$ns_ connect $udp $null
#   	$ns_ at 0.0 "$cbr start"

	Agent/$tcptype set window_ $val(bdp)
# 	# TCP
 	set tcp [$ns_ create-connection $tcptype $n(0) TCPSink/Sack1 $n(101) 0]
 	set ftp [new Application/FTP]
 	$ftp attach-agent $tcp
 	$ns_ at 0.0 "$ftp start"


	# tracing for sat links
	$ns_ trace-all-satlinks $tracefd

	
	# setup routing
	set satrouteobject_ [new SatRouteObject]
	$satrouteobject_ compute_routes

	# trace for tcp parameters
	$tcp trace cwnd_
	$tcp trace t_seqno_
	#$tcp trace ndatapack_
	#$tcp trace nrexmitpack_
	set tracef [open "$file.tcp_trace.$run" "w"]
	$tcp attach $tracef 

	# trace queue
	#$ns_ trace-queue $n(0) $n(101) [open "$file.queue1" w]

	# Stop the sim at $duration

	puts "duration = $duration\n"
	$ns_ at $duration "stop"
	$ns_ at $duration "puts \"NS EXITING...\" ; $ns_ halt"
	
	# start up.
	puts "Starting Simulation..."
	$ns_ run
}
	

proc plot-ontime {} {
	exec rm -f ontime
	exec touch ontime
	global file tracef
	if [info exists tracef] { flush [set tracef] }
	exec awk -v field=STATE -v off=1 {
		{
			if (($5 == $field) && ($6 == $off)) {
				{ot += $8};
			} 
			{ print ot >> ontime; } 
		}
	} case0.tr
}

		         		  

# traces are the set of info to be put out
set traces [ list "TCP" "queue" ]

# this boring code sets the given parameters from teh command line in order or
# assigns defaults if they're not given.
if { [llength $argv]>0} then { set run [lindex $argv 0]}\
else {set run 1 }
if { [llength $argv]>1} then { set retries [lindex $argv 1]}\
else {set retries 50 }
if { [llength $argv]>2} then { set model [lindex $argv 2]}\
else {set model "urban" }
if { [llength $argv]>3} then { set sources [lindex $argv 3]}\
else {set sources 1}
if { [llength $argv]>4} then { set duration [lindex $argv 4]}\
else {set duration 300}
if { [llength $argv]>5} then { set file [lindex $argv 5]}\
else {set file "case0"}
if { [llength $argv]>6} then { set qlen [lindex $argv 6]}\
else {set qlen 50 }
if { [llength $argv]>7} then { set tcptype [lindex $argv 7]}\
else {set tcptype "TCP/Newreno"}
if { [llength $argv]>8} then { set queuetype [lindex $argv 8]}\
else {set queuetype "RED"}
if { [llength $argv]>9} then { set seed [lindex $argv 9]}\
else {set seed 12345}
if { [llength $argv]>10} then { set c_sources [lindex $argv 10]}\
else {set  c_sources 0}
if { [llength $argv]>11} then { set delay [lindex $argv 11]}\
else {set delay "10ms"}
if { [llength $argv]>12} then { set rate [lindex $argv 12]}\
else {set rate "100k"}
if { [llength $argv]>13} then { set ecn [lindex $argv 13]}\
else {set ecn 1 }


# Start the sim
puts "retries=$retries, sources=$sources, duration=$duration, file=$file, qlen=$qlen, tcptype=$tcptype, queuetype=$queuetype, seec=$seed, c_sources=$c_sources"
setup $tcptype $queuetype $sources $qlen $duration $file $seed $c_sources $delay $rate $ecn $run $retries