| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- {
- devices:[
- {
- id:"Alice",
- ports:1,
- x:0.25,
- y:0.55,
- player:true
- },
- {
- id:"Google",
- ports:1,
- x:0.75,
- y:0.5,
- script: deviceScripts.ping
- },
- {
- id:"Home",
- type:"Modem",
- ports:2,
- x:0.4,
- y:0.5,
- script: deviceScripts.modem
- }
- ],
- links:[
- {
- src:"Alice", srcport:0,
- dst:"Home", dstport:0
- },
- {
- src:"Home", srcport:1,
- dst:"Google", dstport:0
- }
- ],
- timeline:[
- {
- type:"packet",
- at:500,
- from:"Alice",
- payload:{
- network:{srcip: "Alice", dstip:"Google"}
- }
- },
- {
- type:"packet",
- at:1000,
- from:"Google",
- payload:{
- network:{srcip: "Google", dstip:"Home"}
- }
- }
- ],
- triggers:[
- {
- type:"packet",
- device:"Alice",
- payload:{
- network:{srcip:"Google", dstip:"Alice"},
- transport:{proto:"ICMP"}
- }
- }
-
- ],
- nextLevel:6
- }
|