Add firewall resource that opens BGP ports

Quagga cannot peer with another quagga unless the firewall allows
connections to port 179.

Change-Id: I4691ee799f75c40f7747457636b3e796c800917a
Signed-off-by: Romanos Skiadas <rski@intracom-telecom.com>
This commit is contained in:
Romanos Skiadas 2016-09-08 16:45:39 +03:00 committed by Romanos Skiadas
parent b205bd246b
commit 7453acb706
1 changed files with 7 additions and 0 deletions

View File

@ -1,5 +1,12 @@
class opendaylight::quagga (
){
firewall {'215 quagga':
dport => 179,
proto => 'tcp',
action => 'accept',
}
package { ['opnfv-quagga', 'libcapnp-0.5.99', 'python-pycapnp', 'python-thriftpy']:
ensure => installed,
}