diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2024-01-22 16:06:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-22 16:06:10 +0200 |
commit | 0b2f73f09800152b601884829f76b10c9f313d31 (patch) | |
tree | e9b7f083a35eb521eadd24fae209b7b5f79eb3de /op-mode-definitions | |
parent | c1bc037af3c0b1aa5287fd5cc9bf21a7253372af (diff) | |
parent | 521f8649b54d91eda006d23b87dfc04b849008fa (diff) | |
download | vyos-1x-0b2f73f09800152b601884829f76b10c9f313d31.tar.gz vyos-1x-0b2f73f09800152b601884829f76b10c9f313d31.zip |
Merge pull request #2876 from vyos/mergify/bp/sagitta/pr-2871
op-mode: T5969: list multicast group membership (backport #2871)
Diffstat (limited to 'op-mode-definitions')
-rw-r--r-- | op-mode-definitions/multicast-group.xml.in | 63 | ||||
-rw-r--r-- | op-mode-definitions/show-ip-multicast.xml.in | 3 |
2 files changed, 63 insertions, 3 deletions
diff --git a/op-mode-definitions/multicast-group.xml.in b/op-mode-definitions/multicast-group.xml.in new file mode 100644 index 000000000..39b4e347c --- /dev/null +++ b/op-mode-definitions/multicast-group.xml.in @@ -0,0 +1,63 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="show"> + <children> + <node name="ip"> + <children> + <node name="multicast"> + <properties> + <help>Show IP multicast</help> + </properties> + <children> + <node name="group"> + <properties> + <help>Show IP multicast group membership</help> + </properties> + <command>${vyos_op_scripts_dir}/multicast.py show_group --family inet</command> + <children> + <tagNode name="interface"> + <properties> + <help>Show IP multicast group membership of specific interface</help> + <completionHelp> + <script>${vyos_completion_dir}/list_interfaces</script> + </completionHelp> + </properties> + <command>${vyos_op_scripts_dir}/multicast.py show_group --family inet --interface "$6"</command> + </tagNode> + </children> + </node> + </children> + </node> + </children> + </node> + <node name="ipv6"> + <children> + <node name="multicast"> + <properties> + <help>Show IPv6 multicast</help> + </properties> + <children> + <node name="group"> + <properties> + <help>Show IPv6 multicast group membership</help> + </properties> + <command>${vyos_op_scripts_dir}/multicast.py show_group --family inet6</command> + <children> + <tagNode name="interface"> + <properties> + <help>Show IP multicast group membership of specific interface</help> + <completionHelp> + <script>${vyos_completion_dir}/list_interfaces</script> + </completionHelp> + </properties> + <command>${vyos_op_scripts_dir}/multicast.py show_group --family inet6 --interface "$6"</command> + </tagNode> + </children> + </node> + </children> + </node> + </children> + </node> + </children> + </node> +</interfaceDefinition> diff --git a/op-mode-definitions/show-ip-multicast.xml.in b/op-mode-definitions/show-ip-multicast.xml.in index 605d61e8d..00a4704c7 100644 --- a/op-mode-definitions/show-ip-multicast.xml.in +++ b/op-mode-definitions/show-ip-multicast.xml.in @@ -5,9 +5,6 @@ <node name="ip"> <children> <node name="multicast"> - <properties> - <help>Show IP multicast</help> - </properties> <children> <leafNode name="interface"> <properties> |