Open more ports on firewall for nova VNC

DocImpact
Change-Id: I2a78a66979a3c3f0107ac1bf08f7c016a53ed728
Closes-Bug: 1648664
This commit is contained in:
Oleksiy Molchanov 2016-12-12 13:28:10 +02:00
parent 5035ca27e1
commit 8f85c58944
2 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ class osnailyfacter::firewall::firewall {
$neutron_api_port = 9696
$nova_api_compute_port = 8774
$nova_api_metadata_port = 8775
$nova_api_vnc_ports = '5900-6100'
$nova_api_vnc_ports = '5900-6900'
$nova_api_volume_port = 8776
$nova_vncproxy_port = 6080
$nrpe_server_port = 5666

View File

@ -135,7 +135,7 @@ describe manifest do
it 'should accept connections to nova without ssl' do
management_nets.each do |source|
should contain_firewall("105 nova internal - no ssl from #{source}").with(
'dport' => [ 8775, '5900-6100' ],
'dport' => [ 8775, '5900-6900' ],
'proto' => 'tcp',
'action' => 'accept',
'source' => source,
@ -198,7 +198,7 @@ describe manifest do
it 'should accept connections to nova without ssl' do
management_nets.each do |source|
should contain_firewall("105 nova vnc from #{source}").with(
'dport' => [ '5900-6100' ],
'dport' => [ '5900-6900' ],
'proto' => 'tcp',
'action' => 'accept',
'source' => source,