From 4e9fab65b7b5c8e25a2617b152872cf81845ef2a Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Tue, 11 Jun 2019 13:12:44 -0700 Subject: [PATCH] Check spamhaus pbl when launching new servers Add a reminder to launch node script to check the spamhaus pbl when launching a new server. Change-Id: I1daaccfb0b90fb46b29c035f8f4fd5788dffe627 --- launch/launch-node.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/launch/launch-node.py b/launch/launch-node.py index edd07d7b33..fa3c43f320 100755 --- a/launch/launch-node.py +++ b/launch/launch-node.py @@ -375,6 +375,16 @@ def main(): options.environment, options.volume_size, options.timeout) dns.print_dns(cloud, server) + print("If this is a server that is expected to send email (ask, review,") + print("lists, etc) double check that the server's IPs are not listed on") + print("the spamhaus pbl.\n") + print("URLs to check:") + print("https://www.spamhaus.org/query/ip/%s" % server.public_v4) + print("https://www.spamhaus.org/query/ip/%s" % server.public_v6) + print() + print("When requesting an exception you can use the") + print("infra-root@openstack.org email address to verify the responsible") + print("party.") if __name__ == '__main__': main()