test-suite-simple.tcl

来自「ns gpsr路由协议 在ns2平台下实现的 对大家很有好处」· TCL 代码 · 共 1,143 行 · 第 1/2 页

TCL
1,143
字号
	set ftp1 [$tcp1 attach-app FTP]	set ftp2 [$tcp2 attach-app FTP]	$ns_ at 1.0 "$ftp1 start"	$ns_ at 1.75 "$ftp2 produce 100"	$self tcpDump $tcp1 1.0	# Trace only the bottleneck link	$self traceQueues $node_(r1) [$self openTrace 6.0 $testName_]	$ns_ run}Class Test/bug -superclass TestSuiteTest/bug instproc init topo {	$self instvar net_ defNet_ test_	set net_	$topo	set defNet_	net1	set test_	bug	$self next}Test/bug instproc run {} {	$self instvar ns_ node_ testName_	$ns_ delay $node_(s1) $node_(r1) 3ms	$ns_ delay $node_(r1) $node_(s1) 3ms	set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 0]	$tcp1 set window_ 50	$tcp1 set bugFix_ false	set tcp2 [$ns_ create-connection TCP $node_(s2) TCPSink $node_(k1) 1]	$tcp2 set window_ 50	$tcp2 set bugFix_ false	set ftp1 [$tcp1 attach-app FTP]	set ftp2 [$tcp2 attach-app FTP]	$ns_ at 1.0 "$ftp1 start"	$ns_ at 1.75 "$ftp2 produce 100"	$self tcpDump $tcp1 1.0	# Trace only the bottleneck link	$self traceQueues $node_(r1) [$self openTrace 6.0 $testName_]	$ns_ run}Class Test/reno1 -superclass TestSuiteTest/reno1 instproc init topo {	$self instvar net_ defNet_ test_	set net_	$topo	set defNet_	net0	set test_	reno1	$self next}Test/reno1 instproc run {} {	$self instvar ns_ node_ testName_	set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink $node_(k1) 0]	$tcp1 set window_ 14	set ftp1 [$tcp1 attach-app FTP]	$ns_ at 1.0 "$ftp1 start"	$self tcpDump $tcp1 1.0	# trace only the bottleneck link	$self traceQueues $node_(r1) [$self openTrace 5.0 $testName_]	$ns_ run}Class Test/reno -superclass TestSuiteTest/reno instproc init topo {	$self instvar net_ defNet_ test_	set net_	$topo	set defNet_	net0	set test_	reno	$self next}Test/reno instproc run {} {	$self instvar ns_ node_ testName_	set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink $node_(k1) 0]	$tcp1 set window_ 28	$tcp1 set maxcwnd_ 14	set ftp1 [$tcp1 attach-app FTP]	$ns_ at 1.0 "$ftp1 start"	$self tcpDump $tcp1 1.0	# trace only the bottleneck link	$self traceQueues $node_(r1) [$self openTrace 5.0 $testName_]	$ns_ run}Class Test/renoA -superclass TestSuiteTest/renoA instproc init topo {	$self instvar net_ defNet_ test_	set net_	$topo	set defNet_	net0	set test_	renoA	$self next}Test/renoA instproc run {} {	$self instvar ns_ node_ testName_	$ns_ queue-limit $node_(r1) $node_(k1) 8	set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink $node_(k1) 0]	$tcp1 set window_ 28	set tcp2 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink $node_(k1) 1]	$tcp2 set window_ 4	set tcp3 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink $node_(k1) 2]	$tcp3 set window_ 4	set ftp1 [$tcp1 attach-app FTP]	$ns_ at 1.0 "$ftp1 start"	set ftp2 [$tcp2 attach-app FTP]	$ns_ at 1.2 "$ftp2 produce 7"	set ftp3 [$tcp3 attach-app FTP]	$ns_ at 1.2 "$ftp3 produce 7"	$self tcpDump $tcp1 1.0	$self tcpDump $tcp2 1.0	$self tcpDump $tcp3 1.0	# Trace only the bottleneck link	$self traceQueues $node_(r1) [$self openTrace 5.0 $testName_]	$ns_ run}Class Test/reno2 -superclass TestSuiteTest/reno2 instproc init topo {	$self instvar net_ defNet_ test_	set net_	$topo	set defNet_	net0	set test_	reno2	$self next}Test/reno2 instproc run {} {	$self instvar ns_ node_ testName_	$ns_ queue-limit $node_(r1) $node_(k1) 9	set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink $node_(k1) 0]	$tcp1 set window_ 50	set tcp2 [$ns_ create-connection TCP/Reno $node_(s2) TCPSink $node_(k1) 1]	$tcp2 set window_ 20	set ftp1 [$tcp1 attach-app FTP]	set ftp2 [$tcp2 attach-app FTP]	$ns_ at 1.0 "$ftp1 start"	$ns_ at 1.0 "$ftp2 start"	$self tcpDump $tcp1 1.0	# Trace only the bottleneck link	$self traceQueues $node_(r1) [$self openTrace 10.0 $testName_]	$ns_ run}Class Test/reno3 -superclass TestSuiteTest/reno3 instproc init topo {	$self instvar net_ defNet_ test_	set net_	$topo	set defNet_	net0	set test_	reno3	$self next}Test/reno3 instproc run {} {	$self instvar ns_ node_ testName_	$ns_ queue-limit $node_(r1) $node_(k1) 8	$ns_ queue-limit $node_(k1) $node_(r1) 8	set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink $node_(k1) 0]	$tcp1 set window_ 100	set tcp2 [$ns_ create-connection TCP/Reno $node_(s2) TCPSink $node_(k1) 1]	$tcp2 set window_ 16	set ftp1 [$tcp1 attach-app FTP]	set ftp2 [$tcp2 attach-app FTP]	$ns_ at 1.0 "$ftp1 start"	$ns_ at 0.5 "$ftp2 start"	$self tcpDump $tcp1 1.0	# Trace only the bottleneck link	$self traceQueues $node_(r1) [$self openTrace 8.0 $testName_]	$ns_ run}Class Test/reno4 -superclass TestSuiteTest/reno4 instproc init topo {	$self instvar net_ defNet_ test_	set net_	$topo	set defNet_	net2	set test_	reno4	$self next}Test/reno4 instproc run {} {	$self instvar ns_ node_ testName_	$ns_ queue-limit $node_(r1) $node_(r2) 29	set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink/DelAck $node_(r2) 0]	$tcp1 set window_ 80	$tcp1 set maxcwnd_ 40	set ftp1 [$tcp1 attach-app FTP]	$ns_ at 0.0 "$ftp1 start"	$self tcpDump $tcp1 1.0	# Trace only the bottleneck link	$self traceQueues $node_(s1) [$self openTrace 2.0 $testName_]	$ns_ run}Class Test/reno4a -superclass TestSuiteTest/reno4a instproc init topo {	$self instvar net_ defNet_ test_	set net_	$topo	set defNet_	net2	set test_	reno4a	$self next}Test/reno4a instproc run {} {	$self instvar ns_ node_ testName_	$ns_ queue-limit $node_(r1) $node_(r2) 29	set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink/DelAck $node_(r2) 0]	$tcp1 set window_ 40	$tcp1 set maxcwnd_ 40	set ftp1 [$tcp1 attach-app FTP]	$ns_ at 0.0 "$ftp1 start"	$self tcpDump $tcp1 1.0	# Trace only the bottleneck link	$self traceQueues $node_(s1) [$self openTrace 2.0 $testName_]	$ns_ run}Class Test/reno5 -superclass TestSuiteTest/reno5 instproc init topo {	$self instvar net_ defNet_ test_	set net_	$topo	set defNet_	net0	set test_	reno5	$self next}Test/reno5 instproc run {} {	$self instvar ns_ node_ testName_	$ns_ queue-limit $node_(r1) $node_(k1) 9	set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink $node_(k1) 0]	$tcp1 set window_ 50	$tcp1 set bugFix_ false	set tcp2 [$ns_ create-connection TCP/Reno $node_(s2) TCPSink $node_(k1) 1]	$tcp2 set window_ 20	$tcp2 set bugFix_ false	set ftp1 [$tcp1 attach-app FTP]	set ftp2 [$tcp2 attach-app FTP]	$ns_ at 1.0 "$ftp1 start"	$ns_ at 1.0 "$ftp2 start"	$self tcpDump $tcp1 1.0	# Trace only the bottleneck link	$self traceQueues $node_(r1) [$self openTrace 10.0 $testName_]	$ns_ run}Class Test/telnet -superclass TestSuiteTest/telnet instproc init topo {	$self instvar net_ defNet_ test_	set net_	$topo	set defNet_	net0	set test_	telnet	$self next}Test/telnet instproc run {} {	$self instvar ns_ node_ testName_	$ns_ queue-limit $node_(r1) $node_(k1) 8	$ns_ queue-limit $node_(k1) $node_(r1) 8	set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink $node_(k1) 0]	set tcp2 [$ns_ create-connection TCP/Reno $node_(s2) TCPSink $node_(k1) 1]	set tcp3 [$ns_ create-connection TCP/Reno $node_(s2) TCPSink $node_(k1) 2]	set telnet1 [$tcp1 attach-app Telnet]; $telnet1 set interval_ 1	set telnet2 [$tcp2 attach-app Telnet]; $telnet2 set interval_ 0	# Interval 0 designates the tcplib telnet interarrival distribution	set telnet3 [$tcp3 attach-app Telnet]; $telnet3 set interval_ 0	$ns_ at 0.0 "$telnet1 start"	$ns_ at 0.0 "$telnet2 start"	$ns_ at 0.0 "$telnet3 start"	$self tcpDump $tcp1 5.0	# Trace only the bottleneck link	$self traceQueues $node_(r1) [$self openTrace 50.0 $testName_]	# use a different seed each time	#puts seed=[$ns_ random 0]	$ns_ run}Class Test/delayed -superclass TestSuiteTest/delayed instproc init topo {	$self instvar net_ defNet_ test_	set net_	$topo	set defNet_	net0	set test_	delayed	$self next}Test/delayed instproc run {} {	$self instvar ns_ node_ testName_	set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink/DelAck $node_(k1) 0]	$tcp1 set window_ 50	# lookup up the sink and set it's delay interval	[$node_(k1) agent [$tcp1 dst-port]] set interval 100ms	set ftp1 [$tcp1 attach-app FTP];	$ns_ at 1.0 "$ftp1 start"	$self tcpDump $tcp1 1.0	# Trace only the bottleneck link	$self traceQueues $node_(r1) [$self openTrace 4.0 $testName_]	$ns_ run}Class Test/phase -superclass TestSuiteTest/phase instproc init topo {	$self instvar net_ defNet_ test_	set net_	$topo	set defNet_	net0	set test_	phase	$self next}Test/phase instproc run {} {	$self instvar ns_ node_ testName_	$ns_ delay $node_(s2) $node_(r1) 3ms	$ns_ delay $node_(r1) $node_(s2) 3ms	$ns_ queue-limit $node_(r1) $node_(k1) 16	$ns_ queue-limit $node_(k1) $node_(r1) 100	set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 0]	$tcp1 set window_ 32 	set tcp2 [$ns_ create-connection TCP $node_(s2) TCPSink $node_(k1) 1]	$tcp2 set window_ 32 	set ftp1 [$tcp1 attach-app FTP]	set ftp2 [$tcp2 attach-app FTP]	$ns_ at 5.0 "$ftp1 start"	$ns_ at 1.0 "$ftp2 start"	$self tcpDump $tcp1 5.0	# Trace only the bottleneck link	$self traceQueues $node_(r1) [$self openTrace 25.0 $testName_]	$ns_ run}Class Test/phase1 -superclass TestSuiteTest/phase1 instproc init topo {	$self instvar net_ defNet_ test_	set net_	$topo	set defNet_	net0	set test_	phase1	$self next}Test/phase1 instproc run {} {	$self instvar ns_ node_ testName_	$ns_ delay $node_(s2) $node_(r1) 9.5ms	$ns_ delay $node_(r1) $node_(s2) 9.5ms	$ns_ queue-limit $node_(r1) $node_(k1) 16	$ns_ queue-limit $node_(k1) $node_(r1) 100	set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 0]	$tcp1 set window_ 32 	set tcp2 [$ns_ create-connection TCP $node_(s2) TCPSink $node_(k1) 1]	$tcp2 set window_ 32 	set ftp1 [$tcp1 attach-app FTP]	set ftp2 [$tcp2 attach-app FTP]	$ns_ at 5.0 "$ftp1 start"	$ns_ at 1.0 "$ftp2 start"	$self tcpDump $tcp1 5.0	# Trace only the bottleneck link	$self traceQueues $node_(r1) [$self openTrace 25.0 $testName_]	$ns_ run}Class Test/phase2 -superclass TestSuiteTest/phase2 instproc init topo {	$self instvar net_ defNet_ test_	set net_	$topo	set defNet_	net0	set test_	phase2	$self next}Test/phase2 instproc run {} {	$self instvar ns_ node_ testName_	$ns_ delay $node_(s2) $node_(r1) 3ms	$ns_ delay $node_(r1) $node_(s2) 3ms	$ns_ queue-limit $node_(r1) $node_(k1) 16	$ns_ queue-limit $node_(k1) $node_(r1) 100	set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 0]	$tcp1 set window_ 32 	$tcp1 set overhead_ 0.01	set tcp2 [$ns_ create-connection TCP $node_(s2) TCPSink $node_(k1) 1]	$tcp2 set window_ 32 	$tcp2 set overhead_ 0.01	set ftp1 [$tcp1 attach-app FTP]	set ftp2 [$tcp2 attach-app FTP]	$ns_ at 5.0 "$ftp1 start"	$ns_ at 1.0 "$ftp2 start"	$self tcpDump $tcp1 5.0	# Trace only the bottleneck link	$self traceQueues $node_(r1) [$self openTrace 25.0 $testName_]	$ns_ run}Class Test/timers -superclass TestSuiteTest/timers instproc init topo {	$self instvar net_ defNet_ test_	set net_	$topo	set defNet_	net0	set test_	timers	$self next}Test/timers instproc run {} {	$self instvar ns_ node_ testName_	$ns_ queue-limit $node_(r1) $node_(k1) 2	$ns_ queue-limit $node_(k1) $node_(r1) 100	set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink/DelAck $node_(k1) 0]	$tcp1 set window_ 4	# look up the sink and set its delay interval	[$node_(k1) agent [$tcp1 dst-port]] set interval_ 100ms	set tcp2 [$ns_ create-connection TCP $node_(s2) TCPSink/DelAck $node_(k1) 1]	$tcp2 set window_ 4	# look up the sink and set its delay interval	[$node_(k1) agent [$tcp2 dst-port]] set interval_ 100ms	set ftp1 [$tcp1 attach-app FTP]	set ftp2 [$tcp2 attach-app FTP]	$ns_ at 1.0 "$ftp1 start"	$ns_ at 1.3225 "$ftp2 start"	$self tcpDump $tcp1 5.0	# Trace only the bottleneck link	$self traceQueues $node_(r1) [$self openTrace 10.0 $testName_]	$ns_ run}Class Test/stats -superclass TestSuiteTest/stats instproc init topo {	$self instvar net_ defNet_ test_	set net_	$topo	set defNet_	net0	set test_	stats	$self next}Test/stats instproc printpkts { label tcp } {	puts "tcp $label total_packets_acked [$tcp set ack_]"}Test/stats instproc printdrops { fid fmon } {	set fcl [$fmon classifier]; # flow classifier	#	# look up the flow using the classifier.  Because we are	# using a Fid classifier, the src/dst fields are not compared,	# and can thus be just zero, as illustrated here.  The "auto"	# indicates we don't already know which bucket in the classifier's	# hash table to find the flow we're looking for.	#	set flow [$fcl lookup auto 0 0 $fid]	puts "fid: $fid per-link total_drops [$flow set pdrops_]"	puts "fid: $fid per-link total_packets [$flow set pdepartures_]"	puts "fid: $fid per-link total_bytes [$flow set bdepartures_]"	#	# note there is much more date available in $flow and $fmon	# that isn't being printed here.	#}Test/stats instproc printstop { stoptime } {	puts "stop-time $stoptime"}Test/stats instproc printall { fmon } { 	puts "aggregate per-link total_drops [$fmon set pdrops_]"	puts "aggregate per-link total_packets [$fmon set pdepartures_]"}Test/stats instproc run {} {	$self instvar ns_ node_ testName_ 	$ns_ delay $node_(s2) $node_(r1) 200ms	$ns_ delay $node_(r1) $node_(s2) 200ms	$ns_ queue-limit $node_(r1) $node_(k1) 10	$ns_ queue-limit $node_(k1) $node_(r1) 10	set slink [$ns_ link $node_(r1) $node_(k1)]; # link to collect stats on	set fmon [$ns_ makeflowmon Fid]	$ns_ attach-fmon $slink $fmon	set stoptime 10.1 	set tcp0 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 0]	$tcp0 set window_ 30	set tcp1 [$ns_ create-connection TCP $node_(s2) TCPSink $node_(k1) 1]	$tcp1 set window_ 30	set ftp0 [$tcp0 attach-app FTP]	set ftp1 [$tcp1 attach-app FTP]	$ns_ at 1.0 "$ftp0 start"	$ns_ at 1.0 "$ftp1 start"	$self tcpDumpAll $tcp0 5.0 tcp0	$self tcpDumpAll $tcp1 5.00001 tcp1	set almosttime [expr $stoptime - 0.001]	$ns_ at $almosttime "$self printpkts 0 $tcp0"	$ns_ at $almosttime "$self printpkts 1 $tcp1"	$ns_ at $stoptime "$self printdrops 0 $fmon; $self printdrops 1 $fmon"	$ns_ at $stoptime "$self printall $fmon"	# trace only the bottleneck link	$self traceQueues $node_(r1) [$self openTrace $stoptime $testName_]	$ns_ run}TestSuite runTest### Local Variables:### mode: tcl### tcl-indent-level: 8### tcl-default-application: ns### End:

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?