1. 1: #NS2_有线部分\homework01.tcl
  1. 2:
  1. 3: #创建两个结点,深圳到北京的TCP连接,图形将数据显示出来,计算吞吐率,画图分析
  1. 4: #tcp上层用ftp
  1. 5: #udp上层用cbr
  1. 6: #Create a simulator object
  1. 7: set ns [new Simulator]
  1. 8:
  1. 9: set nf [open SZ2BJ.nam w]
  1. 10: $ns namtrace-all $nf
  1. 11:
  1. 12: set nd [open SZ2BJ.tr w]
  1. 13: $ns namtrace-all $nd
  1. 14:
  1. 15: proc finish {} {
  1. 16: global ns nf nd
  1. 17: $ns flush-trace
  1. 18: close $nf
  1. 19: close $nd
  1. 20: exec nam SZ2BJ.nam &
  1. 21: exit 0
  1. 22: }
  1. 23:
  1. 24:
  1. 25: #$ns node-config -addressType hierarchical
  1. 26:
  1. 27: #Create two nodes
  1. 28: set Node_Shenzhen [$ns node]
  1. 29: $Node_Shenzhen color red
  1. 30: $Node_Shenzhen shape hexagon
  1. 31: #$Node_Shenzhen label "ShenZhen"
  1. 32:
  1. 33: set Node_Beijing [$ns node]
  1. 34: $Node_Beijing color red
  1. 35: #$Node_Beijing lable "BeiJing"
  1. 36: #Create a duplex link between the nodes
  1. 37: $ns duplex-link $Node_Shenzhen $Node_Beijing 1Mb 500ms DropTail
  1. 38:
  1. 39: #$ns queue-limit $2 $n3 10
  1. 40:
  1. 41: #TCP
  1. 42: set Agent_Sender [new Agent/TCP]
  1. 43: $Agent_Sender set class_ 2
  1. 44: $Agent_Sender set addr_ 192.168.1.100
  1. 45: $Agent_Sender set dst_addr- 192.168.1.200
  1. 46: $Agent_Sender set size_ 1492
  1. 47: $Agent_Sender set defttl_ 256
  1. 48: $ns attach-agent $Node_Shenzhen $Agent_Sender
  1. 49:
  1. 50: set Agent_Receiver [new Agent/NULL]
  1. 51: $ns attach-agent $Node_Beijing $Agent_Receiver
  1. 52:
  1. 53: $ns connect $Agent_Sender $Agent_Receiver
  1. 54:
  1. 55: #Simulated Application
  1. 56: set App_Ftp [new Application/FTP]
  1. 57: $App_Ftp attach-agent $Agent_Sender
  1. 58:
  1. 59:
  1. 60: #start and stop FTP
  1. 61: $ns at 1.0 "App_Ftp start"
  1. 62: $ns at 4.0 "App_Ftp stop"
  1. 63:
  1. 64: $ns at 5.0 "finish"
  1. 65:
  1. 66: $ns run
  1. 67:

NS2网络模拟(5)-homework01.tcl的更多相关文章

  1. NS2网络模拟(7)-homework03.tcl

    1: #NS2_有线部分\homework03.tcl 2: 3: #Create a simulator object 4: set ns [new Simulator] 5: 6: #Define ...

  2. NS2网络模拟(6)-homework02.tcl

    1: #NS2_有线部分\homework02.tcl 2: 3: #Create a simulator object 4: set ns [new Simulator] 5: 6: #Define ...

  3. NS2网络模拟(4)-吞吐率图

    1: #NS2_有线部分\ForGnuplot.plot 2: 3: #gnuplot> 4: #set xtics 0, 1, 10 5: set grid 6: set xrange [0: ...

  4. NS2网络模拟(3)-吞吐率

    1: #NS2_有线部分\Throughput.awk 2: 3: BEGIN { 4: #Initialize the variable 5: init = 0; 6: i = 0; 7: } 8: ...

  5. NS2网络模拟(2)-丢包率

    1: #NS2_有线部分\LossRate.awk 2: 3: BEGIN { 4: #Initialize the variable 5: Lost = 0; #the Sum of Lost pa ...

  6. NS2网络模拟(1)-延迟

    1: #NS2_有线部分\EndDelay.awk 2: 3: BEGIN { 4: #Initialize the variable 5: MaxID = 0; 6: i = 0; 7: } 8: ...

  7. ns2的第一个tcl脚本

    set ns [new Simulator] set tracef [open example1.tr w]$ns trace-all $tracefset namtf [open example1. ...

  8. 【NS2】WiMAX_NS2说明文档(转载)

    关于目前NS2中WiMAX模块的说明 (1)美国NIST(National Institute of Standards and Technology)版, 可以从NIST主页获得,2007.04 r ...

  9. 【NS2】ubuntu安装和同时使用不同版本的ns2(转载)

    有时候我们可能会遇到要同时安装两个ns版本的问题,比如我研究wimax/802.16,因为协议太复杂,用的是长庚大学和nist的wimax补丁.长庚大学的wimax补丁是在ns2.29下开发的,nis ...

随机推荐

  1. gdb查看线程堆栈信息

    查看堆栈:gdb -quiet -batch -ex='thread apply all bt' -p pid查看运行位置:gdb -quiet -batch -ex='thread apply al ...

  2. IntelliJ IDEA设置鼠标悬浮提示

    测试代码; public interface MyInterface { /** * 我是接口方法的注释 * @param num1 我是接口方法入参的注释 * @return 我是接口方法返回值的注 ...

  3. 安装Win10+Ubuntu14.04双系统(uefi启动版)

    说明 本教程基于个人电脑(型号:神舟K550d-i7 D1)成功安装测试发布,不同硬件环境可能有细微差异,为预防安装过程中出现意想不到的报错,重要数据请提前备份 硬件环境 cpu:Intel i7-4 ...

  4. Access Violations 访问冲突(AVs)是Windows编程时发生的最麻烦的错误?

    Access Violations<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office&qu ...

  5. 微信测试号开发之四 获取access_token和jsapi_ticket

    原文:https://blog.csdn.net/qq_37936542/article/details/78549233 access_token:公众号的全局唯一接口调用凭据,公众号调用各接口时都 ...

  6. Android JNI编程(二)——C语言的基本数据类型,输出函数,输入函数

    版权声明:本文出自阿钟的博客,转载请注明出处:http://blog.csdn.net/a_zhon/. 目录(?)[+] 在学习C语言数据类型之前,我们先来回顾一下Java中的基本数据类型和其特点 ...

  7. 账号权限问题导致 masterha_check_repl 检查失败

    在使用 masterha_check_repl --global_conf=/etc/masterha/masterha_default.conf --conf=/etc/masterha/app1. ...

  8. React Native 开发环境安装和配置使用报错: -bash: react-native: command not found

    [React  Native 开发环境安装和配置:-bash: react-native: command not found 报错: 前提是安装homebrew,node.js ,npm ,watc ...

  9. Java 之 assert (断言)

    我们知道C/C++语言中有断言的功能(assert).在Java SE 1.4版本以后也增加了断言的特性. 断言是为了方便调试程序,并不是发布程序的组成部分.理解这一点是很关键的. 默认情况下,JVM ...

  10. 给自己的java程序生成API帮助文档

    一.问题发现: 课本上提到"要学会给自己编写的程序生成API帮助文档",但又没有说明具体的操作步骤. 二.分析: API帮助文档有什么用?这么理解吧:如果想告诉别人你的类如何使用, ...