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()