Fixes Neutron Security Rules for Mcollective Communication

Previously, neutron security rules were incorrectly specified
to allow ActiveMQ TCP ports.  This was not previously observed
since a single OpenStack Compute Host was used to run Broker and
Node instances. Additionally, duplicate entries for ActiveMQ
TCP port 8161 were specified.  This patch removes the duplicate
entries and changes the TCP port number from ActiveMQ to
Mcollective (61613).

Change-Id: Ia35267a4485bba4aab36b9a629993ab94f42ad11
This commit is contained in:
danehans 2014-03-06 18:53:08 +00:00
parent e005415ad4
commit 5d8830bcba
1 changed files with 2 additions and 8 deletions

View File

@ -120,12 +120,6 @@
"port_range_min": 8000,
"port_range_max": 8000
},
{
"remote_ip_prefix": "0.0.0.0/0",
"protocol": "tcp",
"port_range_min": 8161,
"port_range_max": 8161
},
{
"remote_ip_prefix": "0.0.0.0/0",
"protocol": "tcp",
@ -135,8 +129,8 @@
{
"remote_ip_prefix": "0.0.0.0/0",
"protocol": "tcp",
"port_range_min": 8161,
"port_range_max": 8161
"port_range_min": 61613,
"port_range_max": 61613
}
]
}