-1

I've got an openstack instance (all in one node) and want to redirect incoming traffic on some port from the host to one of the instance.

Openstack Nova set up a whole bunch of iptables rules. How can I properly configure my box so that my custom rules get somehow merged with Nova rules ?

I know I could iptables-save the nova rules, patch them and then iptables-restore them, but this would somehow break separation of matters between Openstack and the rest of the system.

rcomblen
  • 486
  • 4
  • 5

1 Answers1

2

If your goal is to provide a firewall to public address ranges in addition to the security controls that OpenStack provides, I recommend placing a firewall at the edge of your network beyond the perimeter of OpenStack.

Injecting IPTables rules into OpenStack could be done in the past with nova-network, but it was unsafe at best. Today with quantum it is even more inadvisable.

Matt Joyce
  • 213
  • 1
  • 6