码迷,mamicode.com
首页 > 其他好文 > 详细

TCP协议的NS2仿真

时间:2016-07-04 17:05:26      阅读:167      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!