diff --git a/interface-definitions/vrrp.xml.in b/interface-definitions/vrrp.xml.in
index cbd248b33..0684a7e4e 100644
--- a/interface-definitions/vrrp.xml.in
+++ b/interface-definitions/vrrp.xml.in
@@ -1,420 +1,417 @@
 <?xml version="1.0"?>
 <interfaceDefinition>
   <node name="high-availability">
     <properties>
       <help>High availability settings</help>
     </properties>
     <children>
       <node name="vrrp" owner="${vyos_conf_scripts_dir}/vrrp.py">
         <properties>
           <priority>800</priority> <!-- after all interfaces and conntrack-sync -->
           <help>Virtual Router Redundancy Protocol settings</help>
         </properties>
         <children>
           <node name="global-parameters">
             <properties>
               <help>VRRP global parameters</help>
             </properties>
             <children>
               <leafNode name="startup-delay">
                 <properties>
                   <help>Time VRRP startup process (in seconds)</help>
                   <valueHelp>
                     <format>u32:1-600</format>
                     <description>Interval in seconds</description>
                   </valueHelp>
                   <constraint>
                     <validator name="numeric" argument="--range 1-600"/>
                   </constraint>
                 </properties>
               </leafNode>
               <leafNode name="version">
                 <properties>
                   <help>Default VRRP version to use, IPv6 always uses VRRP version 3</help>
-                  <completionHelp>
-                    <list>2 3</list>
-                  </completionHelp>
                   <valueHelp>
-                    <format>u32:2</format>
+                    <format>2</format>
                     <description>VRRP version 2</description>
                   </valueHelp>
                   <valueHelp>
-                    <format>u32:3</format>
+                    <format>3</format>
                     <description>VRRP version 3</description>
                   </valueHelp>
                   <constraint>
                     <validator name="numeric" argument="--range 2-3"/>
                   </constraint>
                 </properties>
               </leafNode>
             </children>
           </node>
           <tagNode name="group">
             <properties>
               <help>VRRP group</help>
             </properties>
             <children>
               <leafNode name="interface">
                 <properties>
                   <help>Network interface</help>
                   <completionHelp>
                     <script>${vyos_completion_dir}/list_interfaces.py --broadcast</script>
                   </completionHelp>
                 </properties>
               </leafNode>
               <leafNode name="advertise-interval">
                 <properties>
                   <help>Advertise interval</help>
                   <valueHelp>
                     <format>u32:1-255</format>
                     <description>Advertise interval in seconds (default: 1)</description>
                   </valueHelp>
                   <constraint>
                     <validator name="numeric" argument="--range 1-255"/>
                   </constraint>
                 </properties>
                 <defaultValue>1</defaultValue>
               </leafNode>
               <node name="authentication">
                 <properties>
                   <help>VRRP authentication</help>
                 </properties>
                 <children>
                   <leafNode name="password">
                     <properties>
                       <help>VRRP password</help>
                       <valueHelp>
                         <format>txt</format>
                         <description>Password string (up to 8 characters)</description>
                       </valueHelp>
                       <constraint>
                         <regex>.{1,8}</regex>
                       </constraint>
                       <constraintErrorMessage>Password must not be longer than 8 characters</constraintErrorMessage>
                     </properties>
                   </leafNode>
                   <leafNode name="type">
                     <properties>
                       <help>Authentication type</help>
                       <completionHelp>
                         <list>plaintext-password ah</list>
                       </completionHelp>
                       <valueHelp>
                         <format>plaintext-password</format>
                         <description>Simple password string</description>
                       </valueHelp>
                       <valueHelp>
                         <format>ah</format>
                         <description>AH - IPSEC (not recommended)</description>
                       </valueHelp>
                       <constraint>
                         <regex>^(plaintext-password|ah)$</regex>
                       </constraint>
                       <constraintErrorMessage>Authentication type must be plaintext-password or ah</constraintErrorMessage>
                     </properties>
                   </leafNode>
                 </children>
               </node>
               <leafNode name="description">
                 <properties>
                   <help>Group description</help>
                 </properties>
               </leafNode>
               #include <include/generic-disable-node.xml.i>
               <node name="health-check">
                 <properties>
                   <help>Health check script</help>
                 </properties>
                 <children>
                   <leafNode name="failure-count">
                     <properties>
                       <help>Health check failure count required for transition to fault (default: 3)</help>
                       <constraint>
                         <validator name="numeric" argument="--positive" />
                       </constraint>
                     </properties>
                     <defaultValue>3</defaultValue>
                   </leafNode>
                   <leafNode name="interval">
                     <properties>
                       <help>Health check execution interval in seconds (default: 60)</help>
                       <constraint>
                         <validator name="numeric" argument="--positive"/>
                       </constraint>
                     </properties>
                     <defaultValue>60</defaultValue>
                   </leafNode>
                   <leafNode name="script">
                     <properties>
                       <help>Health check script file</help>
                       <constraint>
                         <validator name="script"/>
                       </constraint>
                     </properties>
                   </leafNode>
                 </children>
               </node>
               <leafNode name="hello-source-address">
                 <properties>
                   <help>VRRP hello source address</help>
                   <valueHelp>
                     <format>ipv4</format>
                     <description>IPv4 hello source address</description>
                   </valueHelp>
                   <valueHelp>
                     <format>ipv6</format>
                     <description>IPv6 hello source address</description>
                   </valueHelp>
                   <constraint>
                     <validator name="ipv4-address"/>
                     <validator name="ipv6-address"/>
                   </constraint>
                 </properties>
               </leafNode>
               <leafNode name="peer-address">
                 <properties>
                   <help>Unicast VRRP peer address</help>
                   <valueHelp>
                     <format>ipv4</format>
                     <description>IPv4 unicast peer address</description>
                   </valueHelp>
                   <valueHelp>
                     <format>ipv6</format>
                     <description>IPv6 unicast peer address</description>
                   </valueHelp>
                   <constraint>
                     <validator name="ipv4-address"/>
                     <validator name="ipv6-address"/>
                   </constraint>
                 </properties>
               </leafNode>
               <leafNode name="no-preempt">
                 <properties>
                   <valueless/>
                   <help>Disable master preemption</help>
                 </properties>
               </leafNode>
               <leafNode name="preempt-delay">
                 <properties>
                   <help>Preempt delay (in seconds)</help>
                   <valueHelp>
                     <format>u32:0-1000</format>
                     <description>preempt delay</description>
                   </valueHelp>
                   <constraint>
                     <validator name="numeric" argument="--range 0-1000"/>
                   </constraint>
                 </properties>
                 <defaultValue>0</defaultValue>
               </leafNode>
               <leafNode name="priority">
                 <properties>
                   <help>Router priority (default: 100)</help>
                   <valueHelp>
                     <format>u32:1-255</format>
                     <description>Router priority</description>
                   </valueHelp>
                   <constraint>
                     <validator name="numeric" argument="--range 1-255"/>
                   </constraint>
                 </properties>
                 <defaultValue>100</defaultValue>
               </leafNode>
               <leafNode name="rfc3768-compatibility">
                 <properties>
                   <valueless/>
                   <help>Use VRRP virtual MAC address as per RFC3768</help>
                 </properties>
               </leafNode>
               <node name="track">
                 <properties>
                   <help>Track settings</help>
                 </properties>
                 <children>
                   <leafNode name="exclude-vrrp-interface">
                     <properties>
                       <valueless/>
                       <help>Disable track state of main interface</help>
                     </properties>
                   </leafNode>
                   <leafNode name="interface">
                     <properties>
                       <help>Interface name state check</help>
                       <completionHelp>
                         <script>${vyos_completion_dir}/list_interfaces.py --broadcast</script>
                       </completionHelp>
                       <valueHelp>
                         <format>txt</format>
                         <description>Interface name</description>
                       </valueHelp>
                       <constraint>
                         #include <include/constraint/interface-name.xml.in>
                       </constraint>
                       <multi/>
                     </properties>
                   </leafNode>
                 </children>
               </node>
               <node name="transition-script">
                 <properties>
                   <help>VRRP transition scripts</help>
                 </properties>
                 <children>
                   <leafNode name="master">
                     <properties>
                       <help>Script to run on VRRP state transition to master</help>
                       <constraint>
                         <validator name="script"/>
                       </constraint>
                     </properties>
                   </leafNode>
                   <leafNode name="backup">
                     <properties>
                       <help>Script to run on VRRP state transition to backup</help>
                       <constraint>
                         <validator name="script"/>
                       </constraint>
                     </properties>
                   </leafNode>
                   <leafNode name="fault">
                     <properties>
                       <help>Script to run on VRRP state transition to fault</help>
                       <constraint>
                         <validator name="script"/>
                       </constraint>
                     </properties>
                   </leafNode>
                   <leafNode name="stop">
                     <properties>
                       <help>Script to run on VRRP state transition to stop</help>
                       <constraint>
                         <validator name="script"/>
                       </constraint>
                     </properties>
                   </leafNode>
                   <leafNode name="mode-force">
                     <properties>
                       <valueless/>
                       <help>Disable VRRP state checking (deprecated, will be removed in VyOS 1.4)</help>
                     </properties>
                   </leafNode>
                 </children>
               </node>
               <tagNode name="virtual-address">
                 <properties>
                   <help>Virtual address (IPv4 or IPv6, but they must not be mixed in one group)</help>
                   <valueHelp>
                     <format>ipv4</format>
                     <description>IPv4 virtual address</description>
                   </valueHelp>
                   <valueHelp>
                     <format>ipv6</format>
                     <description>IPv6 virtual address</description>
                   </valueHelp>
                   <constraint>
                     <validator name="ipv4-host"/>
                     <validator name="ipv6-host"/>
                   </constraint>
                   <constraintErrorMessage>Virtual address must be a valid IPv4 or IPv6 address with prefix length (e.g. 192.0.2.3/24 or 2001:db8:ff::10/64)</constraintErrorMessage>
                 </properties>
                 <children>
                   #include <include/generic-interface-broadcast.xml.i>
                 </children>
               </tagNode>
               <leafNode name="virtual-address-excluded">
                 <properties>
                   <help>Virtual address (If you need additional IPv4 and IPv6 in same group)</help>
                   <valueHelp>
                     <format>ipv4</format>
                     <description>IP address</description>
                   </valueHelp>
                   <valueHelp>
                     <format>ipv6</format>
                     <description>IPv6 address</description>
                   </valueHelp>
                   <multi/>
                   <constraint>
                     <validator name="ipv4-host"/>
                     <validator name="ipv6-host"/>
                   </constraint>
                   <constraintErrorMessage>Virtual address must be a valid IPv4 or IPv6 address with prefix length (e.g. 192.0.2.3/24 or 2001:db8:ff::10/64)</constraintErrorMessage>
                 </properties>
               </leafNode>
               <leafNode name="vrid">
                 <properties>
                   <help>Virtual router identifier</help>
                   <valueHelp>
                     <format>u32:1-255</format>
                     <description>Virtual router identifier</description>
                   </valueHelp>
                   <constraint>
                     <validator name="numeric" argument="--range 1-255"/>
                   </constraint>
                 </properties>
               </leafNode>
             </children>
           </tagNode>
           <tagNode name="sync-group">
             <properties>
               <help>VRRP sync group</help>
             </properties>
             <children>
               <leafNode name="member">
                 <properties>
                   <multi/>
                   <help>Sync group member</help>
                   <valueHelp>
                     <format>txt</format>
                     <description>VRRP group name</description>
                   </valueHelp>
                   <completionHelp>
                     <path>high-availability vrrp group</path>
                   </completionHelp>
                 </properties>
               </leafNode>
               <node name="transition-script">
                 <properties>
                   <help>VRRP transition scripts</help>
                 </properties>
                 <children>
                   <leafNode name="master">
                     <properties>
                       <help>Script to run on VRRP state transition to master</help>
                       <constraint>
                         <validator name="script"/>
                       </constraint>
                     </properties>
                   </leafNode>
                   <leafNode name="backup">
                     <properties>
                       <help>Script to run on VRRP state transition to backup</help>
                       <constraint>
                         <validator name="script"/>
                       </constraint>
                     </properties>
                   </leafNode>
                   <leafNode name="fault">
                     <properties>
                       <help>Script to run on VRRP state transition to fault</help>
                       <constraint>
                         <validator name="script"/>
                       </constraint>
                     </properties>
                   </leafNode>
                   <leafNode name="stop">
                     <properties>
                       <help>Script to run on VRRP state transition to stop</help>
                       <constraint>
                         <validator name="script"/>
                       </constraint>
                     </properties>
                   </leafNode>
                 </children>
               </node>
             </children>
           </tagNode>
         </children>
       </node>
     </children>
   </node>
 </interfaceDefinition>