summaryrefslogtreecommitdiff
path: root/op-mode-definitions/show-ip-multicast.xml.in
blob: 80d83b42458a325b54b979bb663a60ed64019864 (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
<?xml version="1.0"?>
<interfaceDefinition>
  <node name="show">
    <children>
      <node name="ip">
        <children>
          <node name="multicast">
            <properties>
              <help>Show IP multicast</help>
            </properties>
            <children>
              <leafNode name="interface">
                <properties>
                  <help>Show multicast interfaces</help>
                </properties>
                <command>if ps -C igmpproxy &amp;&gt;/dev/null; then ${vyos_op_scripts_dir}/show_igmpproxy.py --interface; else echo IGMP proxy not configured; fi</command>
              </leafNode>
              <leafNode name="mfc">
                <properties>
                  <help>Show multicast fowarding cache</help>
                </properties>
                <command>if ps -C igmpproxy &amp;&gt;/dev/null; then ${vyos_op_scripts_dir}/show_igmpproxy.py --mfc; else echo IGMP proxy not configured; fi</command>
              </leafNode>
              <leafNode name="summary">
                <properties>
                  <help>IP multicast information</help>
                </properties>
                <command>vtysh -c "show ip multicast"</command>
              </leafNode>
              <leafNode name="route">
                <properties>
                  <help>IP multicast routing table</help>
                </properties>
                <command>vtysh -c "show ip mroute"</command>
              </leafNode>
            </children>
          </node>
        </children>
      </node>
    </children>
  </node>
</interfaceDefinition>