TCL脚本 - 将接收多少字节的数据?

时间:2017-12-03 17:49:16

标签: networking ns2

我最近在计算机网络学习期间,其中一个问题是:

“此模拟结束时节点n2将接收多少字节数据?(数据包大小以字节为单位)”

set ns [new Simulator]
set n0 [$ns node]
set n1 [$ns node]
set n2 [$ns node]
$ns duplex-link $n0 $n1 1Mb 20ms DropTail
$ns duplex-link $n1 $n2 1Mb 20ms DropTail
set udp0 [new Agent/UDP]
$ns attach-agent $n0 $udp0
set cbr0 [new Application/Traffic/CBR]
$cbr0 set packetSize_ 500
$cbr0 set interval_ 0.010
$cbr0 attach-agent $udp0
set sink0 [new Agent/Null]
$ns attach-agent $n2 $sink0
$ns connect $udp0 $sink0
$ns at 1.0 "$cbr0 start"
$ns at 4.0 "$cbr0 stop"
$ns at 5.0 "finish"

我向我的教授询问了正确的答案,但他在课堂上完成了解决方案而我错过了那个,所以我想知道你们中是否有人为我解决了问题。我知道如何计算端到端延迟,但我不知道该怎么做。我正在寻找计算,而不是命令。

0 个答案:

没有答案