diff options
author | Joe Groocock <me@frebib.net> | 2023-08-20 14:40:38 +0100 |
---|---|---|
committer | Viacheslav Hletenko <v.gletenko@vyos.io> | 2023-12-06 06:55:31 +0000 |
commit | 7d49f7079f1129c2fadc7f38ceb230804d89e177 (patch) | |
tree | ab142ba5a5f9dcd0fc1994be0bc0f17852f0d368 /interface-definitions/include | |
parent | 99c674cdf6147a69fd57b4151886ff42917caeec (diff) | |
download | vyos-1x-7d49f7079f1129c2fadc7f38ceb230804d89e177.tar.gz vyos-1x-7d49f7079f1129c2fadc7f38ceb230804d89e177.zip |
nat64: T160: Implement Jool-based NAT64 translator
Signed-off-by: Joe Groocock <me@frebib.net>
Diffstat (limited to 'interface-definitions/include')
-rw-r--r-- | interface-definitions/include/nat64-protocol.xml.i | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/interface-definitions/include/nat64-protocol.xml.i b/interface-definitions/include/nat64-protocol.xml.i new file mode 100644 index 000000000..9432e6a87 --- /dev/null +++ b/interface-definitions/include/nat64-protocol.xml.i @@ -0,0 +1,27 @@ +<!-- include start from nat64-protocol.xml.i --> +<node name="protocol"> + <properties> + <help>Apply translation address to a specfic protocol</help> + </properties> + <children> + <leafNode name="tcp"> + <properties> + <help>Transmission Control Protocol</help> + <valueless/> + </properties> + </leafNode> + <leafNode name="udp"> + <properties> + <help>User Datagram Protocol</help> + <valueless/> + </properties> + </leafNode> + <leafNode name="icmp"> + <properties> + <help>Internet Control Message Protocol</help> + <valueless/> + </properties> + </leafNode> + </children> +</node> +<!-- include end --> |