summaryrefslogtreecommitdiff
path: root/manifests/rules/tinc.pp
diff options
context:
space:
mode:
authorAndreas <andreas@immerda.ch>2010-10-22 19:36:38 -0500
committerAndreas <andreas@immerda.ch>2010-10-22 19:36:38 -0500
commit2e9d8ed388bc20693888f74ae704022ebf4a9900 (patch)
tree6f7d18c77bb721511c6246fd357edb76c136cca2 /manifests/rules/tinc.pp
parent60dcbae4afae245ceaf28dd91309f0a54d74f997 (diff)
error tcp instead of udp
Diffstat (limited to 'manifests/rules/tinc.pp')
-rw-r--r--manifests/rules/tinc.pp4
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';