blob: 653dbbbe453aa0de5915625f8ae46ce23f076f52 (
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
|
<?xml version="1.0"?>
<interfaceDefinition>
<node name="service">
<children>
<node name="mdns">
<properties>
<help>Multicast DNS (mDNS) parameters</help>
</properties>
<children>
<node name="repeater" owner="${vyos_conf_scripts_dir}/service_mdns-repeater.py">
<properties>
<help>mDNS repeater configuration</help>
<priority>990</priority>
</properties>
<children>
#include <include/generic-disable-node.xml.i>
#include <include/generic-interface-multi.xml.i>
<leafNode name="browse-domain">
<properties>
<help>mDNS browsing domains in addition to the default one</help>
<valueHelp>
<format>txt</format>
<description>mDNS browsing domain</description>
</valueHelp>
<constraint>
<validator name="fqdn"/>
</constraint>
<multi/>
</properties>
</leafNode>
<leafNode name="allow-service">
<properties>
<help>Allowed mDNS services to be repeated</help>
<valueHelp>
<format>txt</format>
<description>mDNS service</description>
</valueHelp>
<constraint>
<regex>[-_.a-zA-Z0-9]+</regex>
</constraint>
<constraintErrorMessage>Service name must be alphanumeric and can contain hyphens and underscores</constraintErrorMessage>
<multi/>
</properties>
</leafNode>
<leafNode name="vrrp-disable">
<properties>
<help>Disables mDNS repeater on VRRP interfaces not in MASTER state</help>
<valueless/>
</properties>
</leafNode>
</children>
</node>
</children>
</node>
</children>
</node>
</interfaceDefinition>
|