Check UDP protocol while verifying firewall config

Add UDP to the list of protocols which should be
verified while checking firewall configuration on
slaves. It wasn't enabled previously due to:
https://bugs.launchpad.net/fuel/+bug/1347580

Change-Id: I6462b2acce11546d250f474ef0a6e08d7c7685eb
This commit is contained in:
Artem Panchenko 2014-08-22 13:03:34 +03:00
parent 5a7df58786
commit ca873b6ae2
1 changed files with 1 additions and 3 deletions

View File

@ -84,9 +84,7 @@ class SecurityChecks(object):
check_string = 'FirewallHole'
for node in cluster_nodes:
# TODO(apanchenko): Check for UDP is temporary disabled
# TODO: due to https://bugs.launchpad.net/fuel/+bug/1347580
protocols_to_check = ['tcp']
protocols_to_check = ['tcp', 'udp']
for protocol in protocols_to_check:
port = self._listen_random_port(ip_address=node['ip'],
protocol=protocol,