CARVIEW |
Select Language
HTTP/2 200
date: Sun, 12 Oct 2025 15:01:10 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=70f277252d32c636b0bd27a245cf53beb686c60809fa8635c4d13f695f96ca06a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22qGOFtZFCt4n7llyFtCLly3VhMmMnYRVI%22%3B%7D; HttpOnly; Path=/
cf-ray: 98d778922a14b22e-BLR
#Create a simulator objectset ns [new Simulator]#Tell the simulator to use d - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #Create a simulator object
- set ns [new Simulator]
- #Tell the simulator to use dynamic routing
- $ns rtproto DV
- #Open the nam trace file
- set nf [open out.nam w]
- $ns namtrace-all $nf
- #Define a ’finish’ procedure
- proc finish {} {
- global ns nf
- $ns flush-trace
- #Close the trace file
- close $nf
- #Execute nam on the trace file
- exec nam out.nam &
- exit 0
- }
- #RING TOPOLOGY (Topologie Anneau)
- # IMPORTANT : 1- Remarquez que les noeuds sont d´efinis sur un tableau
- # 2- ESSAYEZ DE REFAIRE LA MEME BOUCLE AVEC UN WHILE
- #Create eight nodes
- for {set i 0} {$i < 8} {incr i} {
- set n($i) [$ns node]
- }
- #Create links between the nodes
- for {set i 0} {$i < 8} {incr i} {
- $ns duplex-link $n($i) $n([expr ($i+1)%8]) 1Mb 10ms DropTail
- }
- #Create a UDP agent and attach it to node n(0)
- set udp0 [new Agent/UDP]
- $ns attach-agent $n(0) $udp0
- # Create a CBR traffic source and attach it to udp0
- set cbr0 [new Application/Traffic/CBR]
- $cbr0 set packetSize_ 500
- $cbr0 set interval_ 0.005
- $cbr0 attach-agent $udp0
- #Create a Null agent (a traffic sink) and attach it to node n(3)
- set null0 [new Agent/Null]
- $ns attach-agent $n(3) $null0
- #Connect the traffic source with the traffic sink
- $ns connect $udp0 $null0
- #Schedule events for the CBR agent and the network dynamics
- $ns at 0.5 "$cbr0 start"
- $ns rtmodel-at 1.0 down $n(1) $n(2)
- $ns rtmodel-at 2.0 up $n(1) $n(2)
- $ns at 4.5 "$cbr0 stop"
- #Call the finish procedure after 5 seconds of simulation time
- $ns at 5.0 "finish"
- #Run the simulation
- $ns run
Advertisement
Add Comment
Please, Sign In to add comment
-
⭐⭐⭐MAKE $1000 INSTANTLY⭐⭐
Java | 5 sec ago | 0.10 KB
-
💡 Instant BTC Profit Method ✅ Working
JavaScript | 6 sec ago | 0.24 KB
-
✅ Make $2500 in 20 minutes⭐ M
JavaScript | 7 sec ago | 0.25 KB
-
📌 Swapzone +37% glitch ⭐ E
JavaScript | 16 sec ago | 0.25 KB
-
📝 MAKE $2500 IN 15 MIN ✅ Working
JavaScript | 17 sec ago | 0.24 KB
-
⭐⭐⭐Exchange Exploit T I⭐⭐
Java | 18 sec ago | 0.10 KB
-
✅⭐ Make huge profits on trading ⭐⭐ B
JavaScript | 26 sec ago | 0.25 KB
-
🚀 Swapzone +37% glitch
JavaScript | 27 sec ago | 0.24 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand