diff options
| author | Nicholas DeMarinis <ndemarinis@wpi.edu> | 2023-09-30 05:34:10 -0400 |
|---|---|---|
| committer | Nicholas DeMarinis <ndemarinis@wpi.edu> | 2023-09-30 05:34:10 -0400 |
| commit | 6521c9c1e58b50edcf0b0470bc124c4b70ed0323 (patch) | |
| tree | c41f78b64b4726c087e5f4b718ac0ffe26e018f0 /nets/linear-r3h2.json | |
| parent | 95c3d2500bca14085acb3cf8c5256f8b20313130 (diff) | |
Added sample networks and x86 reference.
Diffstat (limited to 'nets/linear-r3h2.json')
| -rw-r--r-- | nets/linear-r3h2.json | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/nets/linear-r3h2.json b/nets/linear-r3h2.json new file mode 100644 index 0000000..43ba8c4 --- /dev/null +++ b/nets/linear-r3h2.json @@ -0,0 +1,55 @@ +{ + "nodes": [ + { + "name": "r1", + "type": "router" + }, + { + "name": "r2", + "type": "router" + }, + { + "name": "r3", + "type": "router" + }, + { + "name": "h1", + "type": "host" + }, + { + "name": "h2", + "type": "host" + } + ], + "networks": [ + { + "name": "r1-hosts", + "links": [ + "h1", + "r1" + ] + }, + { + "name": "r1-r2", + "links": [ + "r1", + "r2" + ] + }, + { + "name": "r2-r3", + "links": [ + "r2", + "r3" + ] + }, + + { + "name": "r3-hosts", + "links": [ + "r3", + "h2" + ] + } + ] +} |
