diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-06-10 20:19:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-10 20:19:17 +0200 |
commit | c3275306ce56bd803c6f833d85c9212ea8db0dfe (patch) | |
tree | ffcbb4b966bcc84e021d193d7c4b3c7622e6f6ab /interface-definitions/firewall.xml.in | |
parent | 299e16aae6d2b1038be5b3d492000c590050b4c9 (diff) | |
parent | 81a269d2d7ac669b6de2e46f9a331525b930b589 (diff) | |
download | vyos-1x-c3275306ce56bd803c6f833d85c9212ea8db0dfe.tar.gz vyos-1x-c3275306ce56bd803c6f833d85c9212ea8db0dfe.zip |
Merge pull request #1355 from nicolas-fort/T4458-ipv4-ttl
Firewall:T4458: Add ttl match option in firewall
Diffstat (limited to 'interface-definitions/firewall.xml.in')
-rw-r--r-- | interface-definitions/firewall.xml.in | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/interface-definitions/firewall.xml.in b/interface-definitions/firewall.xml.in index 3250794d3..dea6ae79e 100644 --- a/interface-definitions/firewall.xml.in +++ b/interface-definitions/firewall.xml.in @@ -545,6 +545,49 @@ #include <include/firewall/icmp-type-name.xml.i> </children> </node> + <node name="ttl"> + <properties> + <help>Time to live limit</help> + </properties> + <children> + <leafNode name="eq"> + <properties> + <help>Value to match a ttl equal to it</help> + <valueHelp> + <format>u32:0-255</format> + <description>ttl equal to value</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 0-255"/> + </constraint> + </properties> + </leafNode> + <leafNode name="gt"> + <properties> + <help>Value to match a ttl greater than or equal to it</help> + <valueHelp> + <format>u32:0-255</format> + <description>ttl greater than value</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 0-255"/> + </constraint> + </properties> + </leafNode> + <leafNode name="lt"> + <properties> + <help>Value to match a ttl less than or equal to it</help> + <valueHelp> + <format>u32:0-255</format> + <description>ttl less than value</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 0-255"/> + </constraint> + </properties> + </leafNode> + </children> + </node> </children> </tagNode> </children> |