emarp.tcl
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:0k
源码类别:

通讯编程

开发平台:

Visual C++

  1. set ns [new Simulator]
  2. $ns use-scheduler RealTime
  3. set x [new ArpAgent]
  4. $x config
  5. set a1 131.243.1.39
  6. set a2 131.243.1.80
  7. set a3 131.243.1.81
  8. $ns at 0.0 "$x resolve $a1"
  9. $ns at 1.0 "$x resolve $a2"
  10. $ns at 2.0 "$x resolve $a3"
  11. #
  12. # put the lookups in {} so the string doesn't get expanded
  13. # right away by the interpreter...
  14. #
  15. $ns at 8.0 {puts "[$ns now] $a1: [$x lookup $a1], $a2: [$x lookup $a2], $a3: [$x lookup $a3]"}
  16. $ns run