X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=modules%2Froles%2Fmanifests%2Fsip.pp;h=c04ce5dbfaa5bacbc331c37e25dddcbd97af5e66;hb=542dc9b494931d4e0abd26890b27f34b009f7859;hp=4133b77c934dbc64b980ac748e5e7e67a211be29;hpb=f5761ebd209ee189d124e2ee06af158836ceceaf;p=dsa-puppet.git diff --git a/modules/roles/manifests/sip.pp b/modules/roles/manifests/sip.pp index 4133b77c..c04ce5db 100644 --- a/modules/roles/manifests/sip.pp +++ b/modules/roles/manifests/sip.pp @@ -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' } }