summaryrefslogtreecommitdiff
path: root/interface-definitions/vrrp.xml.in
blob: bb551296fd8dd7bfe08c658cbffe2e26d773c4d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
<?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>
          <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>
              </leafNode>
              <node name="authentication">
                <properties>
                  <help>VRRP authentication</help>
                </properties>
                <children>
                  <leafNode name="password">
                    <properties>
                      <help>VRRP password</help>
                      <valueHelp>
                        <format>text</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>
                      <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>
                  </leafNode>
                  <leafNode name="interval">
                    <properties>
                      <help>Health check execution interval in seconds (default: 60)</help>
                      <constraint>
                        <validator name="numeric" argument="--positive"/>
                      </constraint>
                    </properties>
                  </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>
              </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>
              </leafNode>
              <leafNode name="rfc3768-compatibility">
                <properties>
                  <valueless/>
                  <help>Use VRRP virtual MAC address as per RFC3768</help>
                </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>
                  <leafNode name="mode-force">
                    <properties>
                      <valueless/>
                      <help>Disable VRRP state checking (deprecated, will be removed in VyOS 1.4)</help>
                      <constraint>
                        <validator name="script"/>
                      </constraint>
                    </properties>
                  </leafNode>
                </children>
              </node>
              <leafNode 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>
                  <multi/>
                </properties>
              </leafNode>
              <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>text</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>