From 6521c9c1e58b50edcf0b0470bc124c4b70ed0323 Mon Sep 17 00:00:00 2001 From: Nicholas DeMarinis Date: Sat, 30 Sep 2023 05:34:10 -0400 Subject: Added sample networks and x86 reference. --- nets/loop.json | 83 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 nets/loop.json (limited to 'nets/loop.json') diff --git a/nets/loop.json b/nets/loop.json new file mode 100644 index 0000000..05d0d77 --- /dev/null +++ b/nets/loop.json @@ -0,0 +1,83 @@ +{ + "nodes": [ + { + "name": "r1", + "type": "router" + }, + { + "name": "r2", + "type": "router" + }, + { + "name": "r3", + "type": "router" + }, + { + "name": "r4", + "type": "router" + }, + { + "name": "r5", + "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": "r1-r4", + "links": [ + "r1", + "r4" + ] + }, + { + "name": "r4-r5", + "links": [ + "r4", + "r5" + ] + }, + { + "name": "r5-r3", + "links": [ + "r5", + "r3" + ] + }, + { + "name": "r3-hosts", + "links": [ + "r3", + "h2" + ] + } + ] +} -- cgit v1.2.3-70-g09d2