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

通讯编程

开发平台:

Visual C++

  1. #
  2. # emping.tcl
  3. #
  4. # test emulation facility by incorporating icmp echo reply responder
  5. #
  6. #
  7. set dotrace 1
  8. set stoptime 200.0
  9. set owdelay 1000ms
  10. set myaddr "10.11.12.13"
  11. set ns [new Simulator]
  12. if { $dotrace } {
  13. set allchan [open em-all.tr w]
  14. $ns trace-all $allchan
  15. set namchan [open em.nam w]
  16. $ns namtrace-all $namchan
  17. }
  18. $ns use-scheduler RealTime
  19. #
  20. # allocate BPF-type network objects and a raw-IP object
  21. #
  22. #set bpf1 [new Network/Pcap/Live]; # used to read and write L2 info
  23. #$bpf set promisc_ true
  24. #set dev1 [$bpf1 open readwrite fxp0]
  25. set bpf2 [new Network/Pcap/Live]; # used to read IP info
  26. $bpf2 set promisc_ true
  27. set dev2 [$bpf2 open readonly fxp0]
  28. set ipnet [new Network/IP];  # used to write IP pkts
  29. $ipnet open writeonly
  30. #
  31. # try to filter out unwanted stuff like netbios pkts, dns, etc
  32. #
  33. $bpf2 filter "icmp and dst $myaddr"
  34. set pfa1 [new Agent/Tap]
  35. set pfa2 [new Agent/Tap]
  36. set ipa [new Agent/Tap]
  37. set echoagent [new Agent/PingResponder]
  38. puts "install nets into taps..."
  39. $pfa2 set fid_ 0
  40. $ipa set fid_ 1
  41. $pfa2 network $bpf2
  42. $ipa network $ipnet
  43. set node0 [$ns node]
  44. set node1 [$ns node]
  45. set node2 [$ns node]
  46. $ns simplex-link $node0 $node1 1Mb $owdelay DropTail
  47. $ns simplex-link $node1 $node0 1Mb $owdelay DropTail
  48. $ns simplex-link $node0 $node2 1Mb $owdelay DropTail
  49. $ns simplex-link $node2 $node0 1Mb $owdelay DropTail
  50. $ns simplex-link $node1 $node2 1Mb $owdelay DropTail
  51. $ns simplex-link $node2 $node1 1Mb $owdelay DropTail
  52. #
  53. # attach-agent winds up calling $node attach $agent which does
  54. # these things:
  55. # append agent to list of agents in the node
  56. # sets target in the agent to the entry of the node
  57. # sets the node_ field of the agent to the node
  58. # if not yet created,
  59. # create port demuxer in node (Addr classifier),
  60. # put in dmux_
  61. # call "$self add-route $id_ $dmux_"
  62. # installs id<->dmux mapping in classifier_
  63. # allocate a port
  64. # set agent's port id and address
  65. # install port-agent mapping in dmux_
  66. #
  67. #
  68. $ns attach-agent $node0 $pfa2; # packet filter agent
  69. $ns attach-agent $node1 $ipa; # ip agent (for sending)
  70. $ns attach-agent $node2 $echoagent
  71. $ns simplex-connect $pfa2 $echoagent
  72. $ns simplex-connect $echoagent $ipa
  73. puts "here we go.., listening for pings on addr $myaddr"
  74. $ns run