Allow access to metadata service

We need to allow access to the nova metadata service on port 8775,
having the port blocked was ok, in cases where the requests came
in on port 80 and then routed to port 8775 (with iptables) but didn't
work in cases where the source is NAT'd in the conpute host

Change-Id: Ie95eac27160df6aefa6b208cef5ebe316e0953f6
This commit is contained in:
Derek Higgins
2013-02-07 01:19:49 -05:00
parent 70e197a22e
commit b5d9a7a931

View File

@@ -10,6 +10,6 @@ Package<| title == 'nova-common' |> -> Class['nova::api']
firewall { '001 novaapi incoming':
proto => 'tcp',
dport => ['8773', '8774'],
dport => ['8773', '8774', '8775'],
action => 'accept',
}