⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 empaper.tcl

📁 柯老师网站上找到的
💻 TCL
字号:
set stoptime 200.0 ; # simulation end time (seconds)set owdelay 1000ms ; # 1-way delay#set myaddr "10.11.12.13"set myaddr "128.32.130.59"set ns [new Simulator] ; # create simulator object$ns use-scheduler RealTime ; # specify the real-time sync'd schedulerset bpf [new Network/Pcap/Live]; # live traffic -- read IP pkts$bpf set promisc_ true          ; # use promiscuous mode$bpf open readonly fxp0 ; # specify interfaceset ipnet [new Network/IP]      ; # live traffic -- write IP pkts$ipnet open writeonly$bpf filter "icmp and dst $myaddr"; # only ICMP packets for meset pfa [new Agent/Tap]set ipa [new Agent/Tap]set echoagent [new Agent/PingResponder]$pfa network $bpf       ; # associate pf net object w/tap agent$ipa network $ipnet     ; # associate ip net object w/tap agent# create topology in simulatorset node0 [$ns node]set node1 [$ns node]set node2 [$ns node]$ns simplex-link $node0 $node2 100Mb $owdelay DropTail$ns simplex-link $node2 $node1 100Mb $owdelay DropTail# place agents in topology$ns attach-agent $node0 $pfa; #        packet filter agent$ns attach-agent $node1 $ipa; # ip agent (for sending)$ns attach-agent $node2 $echoagent$ns simplex-connect $pfa $echoagent$ns simplex-connect $echoagent $ipaputs "listening for pings on addr $myaddr..."$ns run ; # start emulation

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -