diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/rules/tinc.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/rules/tinc.pp b/manifests/rules/tinc.pp index d244ceb..79cf92e 100644 --- a/manifests/rules/tinc.pp +++ b/manifests/rules/tinc.pp @@ -18,7 +18,7 @@ class shorewall::rules::tinc { shorewall::rule { 'net-me-tinc-udp': source => 'net', destination => '$FW', - proto => 'tcp', + proto => 'udp', destinationport => '655', order => 240, action => 'ACCEPT'; @@ -26,7 +26,7 @@ class shorewall::rules::tinc { shorewall::rule { 'me-net-tinc-udp': source => '$FW', destination => 'net', - proto => 'tcp', + proto => 'udp', destinationport => '655', order => 240, action => 'ACCEPT'; |