[PATCH 0/3] IPV6 filters example.

Aleksandr Alekseev posted 3 patches 3 years, 6 months ago
Test syntax-check failed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/libvirt tags/patchew/20201022181552.486275-1-alexander.alekseev@virtuozzo.com
docs/firewall.html.in                    |  9 ++++++
docs/formatnwfilter.html.in              | 41 ++++++++++++++++++++++--
src/nwfilter/xml/allow-dhcp-server.xml   |  4 +--
src/nwfilter/xml/allow-dhcp.xml          |  4 +--
src/nwfilter/xml/allow-dhcpv6-server.xml | 27 ++++++++++++++++
src/nwfilter/xml/allow-dhcpv6.xml        | 24 ++++++++++++++
src/nwfilter/xml/allow-incoming-ipv6.xml |  3 ++
src/nwfilter/xml/allow-ipv6.xml          |  3 ++
src/nwfilter/xml/meson.build             |  6 ++++
src/nwfilter/xml/no-ipv6-multicast.xml   |  9 ++++++
src/nwfilter/xml/no-ipv6-spoofing.xml    | 15 +++++++++
11 files changed, 138 insertions(+), 7 deletions(-)
create mode 100644 src/nwfilter/xml/allow-dhcpv6-server.xml
create mode 100644 src/nwfilter/xml/allow-dhcpv6.xml
create mode 100644 src/nwfilter/xml/allow-incoming-ipv6.xml
create mode 100644 src/nwfilter/xml/allow-ipv6.xml
create mode 100644 src/nwfilter/xml/no-ipv6-multicast.xml
create mode 100644 src/nwfilter/xml/no-ipv6-spoofing.xml
[PATCH 0/3] IPV6 filters example.
Posted by Aleksandr Alekseev 3 years, 6 months ago
Add nwfilter examples for ipv6 similar to existing ip filters.
Add appropriate docs for them and for some previously undocumented,
but existing filters. Also fix a typo and some formatting.

Aleksandr Alekseev (3):
  example: fix typo and formatting
  example: add ipv6 filters examples
  doc: document new filters and not documented ones

 docs/firewall.html.in                    |  9 ++++++
 docs/formatnwfilter.html.in              | 41 ++++++++++++++++++++++--
 src/nwfilter/xml/allow-dhcp-server.xml   |  4 +--
 src/nwfilter/xml/allow-dhcp.xml          |  4 +--
 src/nwfilter/xml/allow-dhcpv6-server.xml | 27 ++++++++++++++++
 src/nwfilter/xml/allow-dhcpv6.xml        | 24 ++++++++++++++
 src/nwfilter/xml/allow-incoming-ipv6.xml |  3 ++
 src/nwfilter/xml/allow-ipv6.xml          |  3 ++
 src/nwfilter/xml/meson.build             |  6 ++++
 src/nwfilter/xml/no-ipv6-multicast.xml   |  9 ++++++
 src/nwfilter/xml/no-ipv6-spoofing.xml    | 15 +++++++++
 11 files changed, 138 insertions(+), 7 deletions(-)
 create mode 100644 src/nwfilter/xml/allow-dhcpv6-server.xml
 create mode 100644 src/nwfilter/xml/allow-dhcpv6.xml
 create mode 100644 src/nwfilter/xml/allow-incoming-ipv6.xml
 create mode 100644 src/nwfilter/xml/allow-ipv6.xml
 create mode 100644 src/nwfilter/xml/no-ipv6-multicast.xml
 create mode 100644 src/nwfilter/xml/no-ipv6-spoofing.xml

-- 
2.28.0.97.gdc04167d37

Re: [PATCH 0/3] IPV6 filters example.
Posted by Ján Tomko 3 years, 5 months ago
On a Thursday in 2020, Aleksandr Alekseev wrote:
>Add nwfilter examples for ipv6 similar to existing ip filters.
>Add appropriate docs for them and for some previously undocumented,
>but existing filters. Also fix a typo and some formatting.
>
>Aleksandr Alekseev (3):
>  example: fix typo and formatting
>  example: add ipv6 filters examples
>  doc: document new filters and not documented ones
>
> docs/firewall.html.in                    |  9 ++++++
> docs/formatnwfilter.html.in              | 41 ++++++++++++++++++++++--
> src/nwfilter/xml/allow-dhcp-server.xml   |  4 +--
> src/nwfilter/xml/allow-dhcp.xml          |  4 +--
> src/nwfilter/xml/allow-dhcpv6-server.xml | 27 ++++++++++++++++
> src/nwfilter/xml/allow-dhcpv6.xml        | 24 ++++++++++++++
> src/nwfilter/xml/allow-incoming-ipv6.xml |  3 ++
> src/nwfilter/xml/allow-ipv6.xml          |  3 ++
> src/nwfilter/xml/meson.build             |  6 ++++
> src/nwfilter/xml/no-ipv6-multicast.xml   |  9 ++++++
> src/nwfilter/xml/no-ipv6-spoofing.xml    | 15 +++++++++
> 11 files changed, 138 insertions(+), 7 deletions(-)
> create mode 100644 src/nwfilter/xml/allow-dhcpv6-server.xml
> create mode 100644 src/nwfilter/xml/allow-dhcpv6.xml
> create mode 100644 src/nwfilter/xml/allow-incoming-ipv6.xml
> create mode 100644 src/nwfilter/xml/allow-ipv6.xml
> create mode 100644 src/nwfilter/xml/no-ipv6-multicast.xml
> create mode 100644 src/nwfilter/xml/no-ipv6-spoofing.xml
>

Reviewed-by: Ján Tomko <jtomko@redhat.com>

and pushed.

Jano