diff options
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/interfaces-tunnel.xml.in | 35 |
1 files changed, 26 insertions, 9 deletions
diff --git a/interface-definitions/interfaces-tunnel.xml.in b/interface-definitions/interfaces-tunnel.xml.in index 3a4db6f09..39e274840 100644 --- a/interface-definitions/interfaces-tunnel.xml.in +++ b/interface-definitions/interfaces-tunnel.xml.in @@ -177,25 +177,42 @@ <help>IPv4 specific tunnel parameters</help> </properties> <children> + <leafNode name="no-pmtu-discovery"> + <properties> + <help>Disable path MTU discovery</help> + <valueless/> + </properties> + </leafNode> <leafNode name="ttl"> <properties> - <help>Time to live field</help> + <help>Time to live (default: 0)</help> <valueHelp> - <format>0-255</format> - <description>Time to live (default 255)</description> + <format>0</format> + <description>Copy value from original IP header</description> + </valueHelp> + <valueHelp> + <format>1-255</format> + <description>Time to Live</description> </valueHelp> <constraint> <validator name="numeric" argument="--range 0-255"/> </constraint> <constraintErrorMessage>TTL must be between 0 and 255</constraintErrorMessage> </properties> - <defaultValue>255</defaultValue> + <defaultValue>0</defaultValue> </leafNode> <leafNode name="tos"> <properties> - <help>Type of Service (TOS)</help> + <help>Type of Service (default: 0)</help> + <completionHelp> + <list>inherit</list> + </completionHelp> + <valueHelp> + <format>0</format> + <description>Copy value from original IP header</description> + </valueHelp> <valueHelp> - <format>0-99</format> + <format>1-99</format> <description>Type of Service (TOS)</description> </valueHelp> <constraint> @@ -203,7 +220,7 @@ </constraint> <constraintErrorMessage>TOS must be between 0 and 99</constraintErrorMessage> </properties> - <defaultValue>inherit</defaultValue> + <defaultValue>0</defaultValue> </leafNode> <leafNode name="key"> <properties> @@ -215,7 +232,7 @@ <constraint> <validator name="numeric" argument="--range 0-4294967295"/> </constraint> - <constraintErrorMessage>key must be between 0-4294967295</constraintErrorMessage> + <constraintErrorMessage>Key must be in range 0-4294967295</constraintErrorMessage> </properties> </leafNode> </children> @@ -230,7 +247,7 @@ <help>Encaplimit field</help> <valueHelp> <format>0-255</format> - <description>Encaplimit (default 4)</description> + <description>Encaplimit (default: 4)</description> </valueHelp> <constraint> <validator name="numeric" argument="--range 0-255"/> |