diff options
author | Fredrik Thulin <fredrik@thulin.net> | 2014-02-27 09:07:32 +0100 |
---|---|---|
committer | Fredrik Thulin <fredrik@thulin.net> | 2014-02-27 09:07:32 +0100 |
commit | 4e2859018cc13954c88c6f13a5d03e12545a009c (patch) | |
tree | 8872029b9ecd6e20ab25691bee5e13c3e8a97ca3 /global/overlay/etc/puppet/modules | |
parent | e008a30c890b1ad76a8e7704259858f1c442e2e6 (diff) |
disable rules requiring newer ufwsunet-ops-2014-02-27-v03
Diffstat (limited to 'global/overlay/etc/puppet/modules')
-rw-r--r-- | global/overlay/etc/puppet/modules/sunet/manifests/server.pp | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/global/overlay/etc/puppet/modules/sunet/manifests/server.pp b/global/overlay/etc/puppet/modules/sunet/manifests/server.pp index c4622fa..72d8d49 100644 --- a/global/overlay/etc/puppet/modules/sunet/manifests/server.pp +++ b/global/overlay/etc/puppet/modules/sunet/manifests/server.pp @@ -6,16 +6,17 @@ define sunet::server() { # Add prerequisites for ethernet bonding, if physical server sunet::ethernet_bonding { 'sunet_ethernet_bonding': } - # Ignore IPv6 multicast - ufw::deny { 'ignore_v6_multicast': - ip => 'ff02::1', - proto => 'any' # 'ufw' has a hard-coded list of protocols, which does not include 'ipv6-icmp' :( - } +# Removed until SWAMID hosts can have their ufw module updated / ft +# # Ignore IPv6 multicast +# ufw::deny { 'ignore_v6_multicast': +# ip => 'ff02::1', +# proto => 'any' # 'ufw' has a hard-coded list of protocols, which does not include 'ipv6-icmp' :( +# } - # Ignore IPv6 multicast PIM router talk - ufw::deny { 'ignore_v6_multicast_PIM': - ip => 'ff02::d', - proto => 'any' # 'ufw' has a hard-coded list of protocols, which does not include 'ipv6-icmp' :( - } +# # Ignore IPv6 multicast PIM router talk +# ufw::deny { 'ignore_v6_multicast_PIM': +# ip => 'ff02::d', +# proto => 'any' # 'ufw' has a hard-coded list of protocols, which does not include 'ipv6-icmp' :( +# } } |