首页 > 其他 > 详细

TCP协议的NS2仿真

时间:2016-07-04 17:05:12      阅读:236      评论:0      收藏:0      [点我收藏+]
#
# ftp
#  \    
#  tcp                        sink  
#    \                         /
#     n0--------5M 2ms---------n1
#
#

set ns [new Simulator]

set f [open out.tr w]
$ns trace-all $f
set nf [open out.nam w]
$ns namtrace-all $nf

proc finish {} {
    global ns nf f
    $ns flush-trace
    close $f
    close $nf
    exec nam out.nam &
    exit 0
}

#设置并连接两个节点
set n0 [$ns node]
set n1 [$ns node]

$ns duplex-link $n0 $n1 5M 2ms DropTail
$ns duplex-link-op $n0 $n1 orient right

#设置传输层并连接
set tcp [new Agent/TCP]
$ns attach-agent $n0 $tcp
set sink [new Agent/TCPSink]
$ns attach-agent $n1 $sink
$ns connect $tcp $sink

#设置应用层
set ftp [new Application/FTP]
$ftp attach-agent $tcp

#设置执行与停止顺序
$ns at 0.01 "$ftp start"
$ns at 0.09 "finish"

$ns run

 

TCP协议的NS2仿真

原文:http://www.cnblogs.com/olvo/p/5640905.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!