]> git.donarmstrong.com Git - dsa-puppet.git/commitdiff
must ACCEPT the connections, silly
authorLuca Filipozzi <lfilipoz@emyr.net>
Sat, 11 Jan 2014 17:05:21 +0000 (17:05 +0000)
committerLuca Filipozzi <lfilipoz@emyr.net>
Sat, 11 Jan 2014 17:05:21 +0000 (17:05 +0000)
modules/roles/manifests/sip.pp

index 4133b77c934dbc64b980ac748e5e7e67a211be29..c04ce5dbfaa5bacbc331c37e25dddcbd97af5e66 100644 (file)
@@ -2,21 +2,21 @@ class roles::sip {
        @ferm::rule { 'sip-ws':
                domain      => 'ip',
                description => 'SIP over WebSocket (for WebRTC)',
-               rule        => 'proto tcp mod state state (NEW) dport (443)'
+               rule        => 'proto tcp mod state state (NEW) dport (443) ACCEPT'
        }
        @ferm::rule { 'sip':
                domain      => 'ip',
                description => 'SIP connections (TLS)',
-               rule        => 'proto tcp mod state state (NEW) dport (5061)'
+               rule        => 'proto tcp mod state state (NEW) dport (5061) ACCEPT'
        }
        @ferm::rule { 'turn':
                domain      => 'ip',
                description => 'TURN connections (TLS)',
-               rule        => 'proto tcp mod state state (NEW) dport (5349)'
+               rule        => 'proto tcp mod state state (NEW) dport (5349) ACCEPT'
        }
        @ferm::rule { 'rtp':
                domain      => 'ip',
                description => 'RTP streams',
-               rule        => 'proto udp mod state state (NEW) dport (49152:65535)'
+               rule        => 'proto udp mod state state (NEW) dport (49152:65535) ACCEPT'
        }
 }