diff options
author | sotech117 <michael_foiani@brown.edu> | 2023-10-23 09:58:38 -0400 |
---|---|---|
committer | sotech117 <michael_foiani@brown.edu> | 2023-10-23 09:58:38 -0400 |
commit | 2809c966d60a562525ca11d87c208531fba96649 (patch) | |
tree | 80cb650bb8d63edceb7c96f3052a23be7b0375cd /r2h2 | |
parent | fce81b0ba78d52427fc2ba43af63732d3205dcf1 (diff) |
fix sent to other iface bug
Diffstat (limited to 'r2h2')
-rw-r--r-- | r2h2/binaries.example.json | 14 | ||||
-rw-r--r-- | r2h2/nodes.json | 6 |
2 files changed, 20 insertions, 0 deletions
diff --git a/r2h2/binaries.example.json b/r2h2/binaries.example.json new file mode 100644 index 0000000..59223ba --- /dev/null +++ b/r2h2/binaries.example.json @@ -0,0 +1,14 @@ +{ + "h1": { + "binary_path": "./vhost" + }, + "h2": { + "binary_path": "./vhost" + }, + "r1": { + "binary_path": "./vrouter" + }, + "r2": { + "binary_path": "./vrouter" + } +}
\ No newline at end of file diff --git a/r2h2/nodes.json b/r2h2/nodes.json new file mode 100644 index 0000000..282ab86 --- /dev/null +++ b/r2h2/nodes.json @@ -0,0 +1,6 @@ +{ + "h1": "host", + "h2": "host", + "r1": "router", + "r2": "router" +}
\ No newline at end of file |