NS2网络模拟(5)-homework01.tcl
- 1: #NS2_有线部分\homework01.tcl
- 2:
- 3: #创建两个结点,深圳到北京的TCP连接,图形将数据显示出来,计算吞吐率,画图分析
- 4: #tcp上层用ftp
- 5: #udp上层用cbr
- 6: #Create a simulator object
- 7: set ns [new Simulator]
- 8:
- 9: set nf [open SZ2BJ.nam w]
- 10: $ns namtrace-all $nf
- 11:
- 12: set nd [open SZ2BJ.tr w]
- 13: $ns namtrace-all $nd
- 14:
- 15: proc finish {} {
- 16: global ns nf nd
- 17: $ns flush-trace
- 18: close $nf
- 19: close $nd
- 20: exec nam SZ2BJ.nam &
- 21: exit 0
- 22: }
- 23:
- 24:
- 25: #$ns node-config -addressType hierarchical
- 26:
- 27: #Create two nodes
- 28: set Node_Shenzhen [$ns node]
- 29: $Node_Shenzhen color red
- 30: $Node_Shenzhen shape hexagon
- 31: #$Node_Shenzhen label "ShenZhen"
- 32:
- 33: set Node_Beijing [$ns node]
- 34: $Node_Beijing color red
- 35: #$Node_Beijing lable "BeiJing"
- 36: #Create a duplex link between the nodes
- 37: $ns duplex-link $Node_Shenzhen $Node_Beijing 1Mb 500ms DropTail
- 38:
- 39: #$ns queue-limit $2 $n3 10
- 40:
- 41: #TCP
- 42: set Agent_Sender [new Agent/TCP]
- 43: $Agent_Sender set class_ 2
- 44: $Agent_Sender set addr_ 192.168.1.100
- 45: $Agent_Sender set dst_addr- 192.168.1.200
- 46: $Agent_Sender set size_ 1492
- 47: $Agent_Sender set defttl_ 256
- 48: $ns attach-agent $Node_Shenzhen $Agent_Sender
- 49:
- 50: set Agent_Receiver [new Agent/NULL]
- 51: $ns attach-agent $Node_Beijing $Agent_Receiver
- 52:
- 53: $ns connect $Agent_Sender $Agent_Receiver
- 54:
- 55: #Simulated Application
- 56: set App_Ftp [new Application/FTP]
- 57: $App_Ftp attach-agent $Agent_Sender
- 58:
- 59:
- 60: #start and stop FTP
- 61: $ns at 1.0 "App_Ftp start"
- 62: $ns at 4.0 "App_Ftp stop"
- 63:
- 64: $ns at 5.0 "finish"
- 65:
- 66: $ns run
- 67:
NS2网络模拟(5)-homework01.tcl的更多相关文章
- NS2网络模拟(7)-homework03.tcl
1: #NS2_有线部分\homework03.tcl 2: 3: #Create a simulator object 4: set ns [new Simulator] 5: 6: #Define ...
- NS2网络模拟(6)-homework02.tcl
1: #NS2_有线部分\homework02.tcl 2: 3: #Create a simulator object 4: set ns [new Simulator] 5: 6: #Define ...
- NS2网络模拟(4)-吞吐率图
1: #NS2_有线部分\ForGnuplot.plot 2: 3: #gnuplot> 4: #set xtics 0, 1, 10 5: set grid 6: set xrange [0: ...
- NS2网络模拟(3)-吞吐率
1: #NS2_有线部分\Throughput.awk 2: 3: BEGIN { 4: #Initialize the variable 5: init = 0; 6: i = 0; 7: } 8: ...
- NS2网络模拟(2)-丢包率
1: #NS2_有线部分\LossRate.awk 2: 3: BEGIN { 4: #Initialize the variable 5: Lost = 0; #the Sum of Lost pa ...
- NS2网络模拟(1)-延迟
1: #NS2_有线部分\EndDelay.awk 2: 3: BEGIN { 4: #Initialize the variable 5: MaxID = 0; 6: i = 0; 7: } 8: ...
- ns2的第一个tcl脚本
set ns [new Simulator] set tracef [open example1.tr w]$ns trace-all $tracefset namtf [open example1. ...
- 【NS2】WiMAX_NS2说明文档(转载)
关于目前NS2中WiMAX模块的说明 (1)美国NIST(National Institute of Standards and Technology)版, 可以从NIST主页获得,2007.04 r ...
- 【NS2】ubuntu安装和同时使用不同版本的ns2(转载)
有时候我们可能会遇到要同时安装两个ns版本的问题,比如我研究wimax/802.16,因为协议太复杂,用的是长庚大学和nist的wimax补丁.长庚大学的wimax补丁是在ns2.29下开发的,nis ...
随机推荐
- gdb查看线程堆栈信息
查看堆栈:gdb -quiet -batch -ex='thread apply all bt' -p pid查看运行位置:gdb -quiet -batch -ex='thread apply al ...
- IntelliJ IDEA设置鼠标悬浮提示
测试代码; public interface MyInterface { /** * 我是接口方法的注释 * @param num1 我是接口方法入参的注释 * @return 我是接口方法返回值的注 ...
- 安装Win10+Ubuntu14.04双系统(uefi启动版)
说明 本教程基于个人电脑(型号:神舟K550d-i7 D1)成功安装测试发布,不同硬件环境可能有细微差异,为预防安装过程中出现意想不到的报错,重要数据请提前备份 硬件环境 cpu:Intel i7-4 ...
- Access Violations 访问冲突(AVs)是Windows编程时发生的最麻烦的错误?
Access Violations<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office&qu ...
- 微信测试号开发之四 获取access_token和jsapi_ticket
原文:https://blog.csdn.net/qq_37936542/article/details/78549233 access_token:公众号的全局唯一接口调用凭据,公众号调用各接口时都 ...
- Android JNI编程(二)——C语言的基本数据类型,输出函数,输入函数
版权声明:本文出自阿钟的博客,转载请注明出处:http://blog.csdn.net/a_zhon/. 目录(?)[+] 在学习C语言数据类型之前,我们先来回顾一下Java中的基本数据类型和其特点 ...
- 账号权限问题导致 masterha_check_repl 检查失败
在使用 masterha_check_repl --global_conf=/etc/masterha/masterha_default.conf --conf=/etc/masterha/app1. ...
- React Native 开发环境安装和配置使用报错: -bash: react-native: command not found
[React Native 开发环境安装和配置:-bash: react-native: command not found 报错: 前提是安装homebrew,node.js ,npm ,watc ...
- Java 之 assert (断言)
我们知道C/C++语言中有断言的功能(assert).在Java SE 1.4版本以后也增加了断言的特性. 断言是为了方便调试程序,并不是发布程序的组成部分.理解这一点是很关键的. 默认情况下,JVM ...
- 给自己的java程序生成API帮助文档
一.问题发现: 课本上提到"要学会给自己编写的程序生成API帮助文档",但又没有说明具体的操作步骤. 二.分析: API帮助文档有什么用?这么理解吧:如果想告诉别人你的类如何使用, ...