diff options
Diffstat (limited to 'interface-definitions')
| -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> | 
