From 2e4177f639eead2e0bc04031c3c5b9ddb82b029a Mon Sep 17 00:00:00 2001 From: Loic Dachary Date: Thu, 31 Mar 2016 16:12:42 +0200 Subject: [PATCH] openstack: open UDP ports required by NFS http://tracker.ceph.com/issues/13980 Fixes: #13980 Signed-off-by: Loic Dachary --- teuthology/openstack/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/teuthology/openstack/__init__.py b/teuthology/openstack/__init__.py index 3746de24b5..7bef4d19f8 100644 --- a/teuthology/openstack/__init__.py +++ b/teuthology/openstack/__init__.py @@ -687,6 +687,9 @@ ssh access : ssh {identity}{username}@{ip} # logs in /usr/share/nginx/ openstack security group create teuthology openstack security group rule create --dst-port 1:65535 teuthology openstack security group rule create --proto udp --dst-port 53 teuthology # dns +openstack security group rule create --proto udp --dst-port 111 teuthology # for nfs +openstack security group rule create --proto udp --dst-port 2049 teuthology # for nfs +openstack security group rule create --proto udp --dst-port 16000:65535 teuthology # for nfs """) @staticmethod -- 2.39.5