Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 11 additions & 10 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ module: labn-munet-config
| | +--rw expects* string
| | +--rw sends* string
| | +--rw timeout? uint32
| +--rw connections* [to]
| | +--rw to string
| +--rw connections* [name]
| | +--rw to? string
| | +--rw ip? string
| | +--rw ipv6? string
| | +--rw name? string
| | +--rw name string
| | +--rw hostintf? string
| | +--rw physical? string
| | +--rw remote-name? string
Expand Down Expand Up @@ -142,9 +142,9 @@ module: labn-munet-config
| | | +--rw rate? number64
| | | +--rw limit? number64
| | | +--rw burst? number64
| | +--rw connections* [to]
| | +--rw connections* [name]
| | +--rw to string
| | +--rw name? string
| | +--rw name string
| | +--rw remote-name? string
| | +--rw delay? uint64
| | +--rw jitter? uint64
Expand Down Expand Up @@ -198,11 +198,11 @@ module: labn-munet-config
| | +--rw expects* string
| | +--rw sends* string
| | +--rw timeout? uint32
| +--rw connections* [to]
| | +--rw to string
| +--rw connections* [name]
| | +--rw to? string
| | +--rw ip? string
| | +--rw ipv6? string
| | +--rw name? string
| | +--rw name string
| | +--rw hostintf? string
| | +--rw physical? string
| | +--rw remote-name? string
Expand Down Expand Up @@ -819,7 +819,7 @@ munet>
must "not(../hostnet) and not(../server)" {
error-message "SSHRemote and hostnet nodes have no munet connections.";
}
key to;
key name;
description "Connections to other networks or nodes from this node";

leaf to {
Expand Down Expand Up @@ -1142,7 +1142,7 @@ munet>
uses intf-constraints;

list connections {
key to;
key name;
description
"Overriding network side configuration for connections to nodes from
this network. If the default network tc parameters are not being
Expand All @@ -1151,6 +1151,7 @@ munet>

leaf to {
type string;
mandatory true;
description "The target of this connection.";
}
leaf name {
Expand Down
11 changes: 6 additions & 5 deletions doc/source/config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ Tree diagram for network config::
| +--rw rate? number64
| +--rw limit? number64
| +--rw burst? number64
+--rw connections* [to]
+--rw connections* [name]
+--rw to string
+--rw name? string
+--rw name string
+--rw remote-name? string
+--rw delay? uint64
+--rw jitter? uint64
Expand Down Expand Up @@ -208,10 +208,11 @@ Tree diagram for node connections::

+--rw topology
| +--rw nodes* [name]
| +--rw connections* [to]
| | +--rw to string
| +--rw connections* [name]
| | +--rw to? string
| | +--rw ip? string
| | +--rw name? string
| | +--rw ipv6? string
| | +--rw name string
| | +--rw hostintf? string
| | +--rw physical? string
| | +--rw remote-name? string
Expand Down
Loading