X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Froles%2Fmanifests%2Fsecurity_mirror.pp;h=4534a464824fa570abc9257b0c50bd429912fa16;hb=29cbe59430d1e7d7d5575579b48513c56227e2f7;hp=470fb4a45aeb85c3ae91900ef0dc42c01d82c0da;hpb=eb83c03ddda8253f230fc144574a3891fd28f874;p=mirror%2Fdsa-puppet.git diff --git a/modules/roles/manifests/security_mirror.pp b/modules/roles/manifests/security_mirror.pp index 470fb4a45..4534a4648 100644 --- a/modules/roles/manifests/security_mirror.pp +++ b/modules/roles/manifests/security_mirror.pp @@ -1,23 +1,19 @@ class roles::security_mirror { - $rsync_bind = $::hostname ? { - mirror-anu => '150.203.164.61', - mirror-isc => '149.20.4.14', - mirror-umn => '128.101.240.215', - default => '', - } - $rsync_bind6 = $::hostname ? { - mirror-anu => '2001:388:1034:2900::3d', - mirror-isc => '2001:4f8:1:c::14', - mirror-umn => '2607:ea00:101:3c0b::1deb:215', - default => '', - } - $ftp_bind = $::hostname ? { - mirror-anu => '150.203.164.61', - default => '', + include roles::archvsync_base + + # security abusers + # 198.108.67.48 DoS against our rsync service + ferm::rule { 'dsa-security-abusers': + prio => "005", + rule => "saddr ( 198.108.67.48/32 ) DROP", } - $ftp_bind6 = $::hostname ? { - mirror-anu => '2001:388:1034:2900::3d', - default => undef, + + $binds = $::hostname ? { + mirror-anu => [ '150.203.164.61', '[2001:388:1034:2900::3d]' ], + mirror-isc => [ '149.20.4.14', '[2001:4f8:1:c::14]' ], + mirror-umn => [ '128.101.240.215', '[2607:ea00:101:3c0b::1deb:215]' ], + schmelzer => [ '217.196.149.233', '[2a02:16a8:dc41:100::233]' ], + default => [ '[::]' ], } include apache2::expires @@ -28,45 +24,26 @@ class roles::security_mirror { content => template('roles/security_mirror/security.debian.org.erb') } - include ferm::ftp_conntrack - vsftpd::site { 'security': - banner => 'security.debian.org FTP server (vsftpd)', - logfile => '/var/log/ftp/vsftpd-security.debian.org.log', - max_clients => 200, - root => '/srv/ftp.root/', - bind => $ftp_bind, - } - if ($ftp_bind6) { - vsftpd::site { 'security6': - banner => 'security.debian.org FTP server (vsftpd)', - logfile => '/var/log/ftp/vsftpd-security6.debian.org.log', - max_clients => 200, - root => '/srv/ftp.root/', - bind => $ftp_bind6, - } - } + $mirrors = hiera('roles.security_mirror', {}) + $fastly_mirrors = $mirrors.filter |$h| { $h[1]['fastly-backend'] } + $hosts_to_check = $fastly_mirrors.map |$h| { $h[1]['service-hostname'] } + + roles::mirror_health { 'security': + check_hosts => $hosts_to_check, + check_service => 'security', + url => 'http://security.backend.mirrors.debian.org/debian-security/dists/stable/updates/Release', + health_url => 'http://security.backend.mirrors.debian.org/_health', + } rsync::site { 'security': source => 'puppet:///modules/roles/security_mirror/rsyncd.conf', max_clients => 100, - bind => $rsync_bind, - bind6 => $rsync_bind6, - } - - - $onion_v4_addr = $::hostname ? { - mirror-anu => '150.203.164.61', - mirror-isc => '149.20.4.14', - mirror-umn => '128.101.240.215', - villa => '212.211.132.32', - lobos => '212.211.132.250', - default => undef, + binds => $binds, } - if has_role('security_mirror_onion') { - if ! $onion_v4_addr { - fail("Do not have an onion_v4_addr set for $::hostname.") - } + $onion_v4_addr = hiera("roles.security_mirror", {}) + .dig($::fqdn, 'onion_v4_address') + if $onion_v4_addr { onion::service { 'security.debian.org': port => 80, target_port => 80,