diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2023-12-07 09:29:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-07 09:29:47 +0200 |
commit | 18ee2422cf8a24a6a63d07e565fb677d05f881db (patch) | |
tree | 128415b148c092e39f7961a6ef5a2fab9f96ee83 /interface-definitions/include | |
parent | 99c674cdf6147a69fd57b4151886ff42917caeec (diff) | |
parent | 336bb5a071b59264679be4f4f9bedbdecdbe2834 (diff) | |
download | vyos-1x-18ee2422cf8a24a6a63d07e565fb677d05f881db.tar.gz vyos-1x-18ee2422cf8a24a6a63d07e565fb677d05f881db.zip |
Merge pull request #2578 from sever-sever/nat64
T160: add NAT64
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..a640873b5 --- /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 --> |