From 9e6fffc231218a1309628de723a1abcbcba41433 Mon Sep 17 00:00:00 2001 From: Tom Eastep Date: Sat, 23 Aug 2014 16:05:38 -0700 Subject: [PATCH 1/3] Goto-Meeting Macro from Eric Teeter Signed-off-by: Tom Eastep --- Shorewall/Macros/macro.Goto-Meeting | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Shorewall/Macros/macro.Goto-Meeting diff --git a/Shorewall/Macros/macro.Goto-Meeting b/Shorewall/Macros/macro.Goto-Meeting new file mode 100644 index 000000000..4f446a09f --- /dev/null +++ b/Shorewall/Macros/macro.Goto-Meeting @@ -0,0 +1,12 @@ +# +# Shorewall version 4 - Citrix/Goto Meeting macro +# +# /usr/share/shorewall/macro.Goto-Meeting +# by Eric Teeter +# This macro handles Citrix/Goto Meeting +# Assumed that ports 80 and 443 are already open +# If need use those macros that open Http and Https to reduce redundancy +#################################################################################### +#ACTION SOURCE DEST PROTO DEST SOURCE RATE USER/ +# PORT(S) PORT(S) LIMIT GROUP +PARAM - - tcp 8200 # Goto Meeting only needed (TCP outbound) From e4a8cb31ba865040b5c7cd50a900c45f65ead7cc Mon Sep 17 00:00:00 2001 From: Tom Eastep Date: Sun, 24 Aug 2014 08:16:11 -0700 Subject: [PATCH 2/3] Clean up the Goto Meeting macro a bit Signed-off-by: Tom Eastep --- Shorewall/Macros/macro.Goto-Meeting | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Shorewall/Macros/macro.Goto-Meeting b/Shorewall/Macros/macro.Goto-Meeting index 4f446a09f..7af60b71f 100644 --- a/Shorewall/Macros/macro.Goto-Meeting +++ b/Shorewall/Macros/macro.Goto-Meeting @@ -4,8 +4,8 @@ # /usr/share/shorewall/macro.Goto-Meeting # by Eric Teeter # This macro handles Citrix/Goto Meeting -# Assumed that ports 80 and 443 are already open -# If need use those macros that open Http and Https to reduce redundancy +# Assumes that ports 80 and 443 are already open +# If needed, use the macros that open Http and Https to reduce redundancy #################################################################################### #ACTION SOURCE DEST PROTO DEST SOURCE RATE USER/ # PORT(S) PORT(S) LIMIT GROUP From 045d5ac048fa0f07cb55a6a27a752d5fde9a6545 Mon Sep 17 00:00:00 2001 From: Tom Eastep Date: Sun, 24 Aug 2014 08:34:04 -0700 Subject: [PATCH 3/3] Correct typo in error messages Signed-off-by: Tom Eastep --- Shorewall/Perl/Shorewall/Rules.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Shorewall/Perl/Shorewall/Rules.pm b/Shorewall/Perl/Shorewall/Rules.pm index 981bd65de..f3eea2c95 100644 --- a/Shorewall/Perl/Shorewall/Rules.pm +++ b/Shorewall/Perl/Shorewall/Rules.pm @@ -2374,7 +2374,7 @@ sub process_rule ( $$$$$$$$$$$$$$$$$$$ ) { my ( $tgt, $options ) = split / /, $param; my $target_type = $builtin_target{$tgt}; fatal_error "Unknown target ($tgt)" unless $target_type; - fatal_error "The $tgt TARGET is now allowed in the filter table" unless $target_type & FILTER_TABLE; + fatal_error "The $tgt TARGET is not allowed in the filter table" unless $target_type & FILTER_TABLE; $action = $param; } else { $action = ''; @@ -2387,7 +2387,7 @@ sub process_rule ( $$$$$$$$$$$$$$$$$$$ ) { my ( $tgt, $options ) = split / /, $param; my $target_type = $builtin_target{$tgt}; fatal_error "Unknown target ($tgt)" unless $target_type; - fatal_error "The $tgt TARGET is now allowed in the filter table" unless $target_type & FILTER_TABLE; + fatal_error "The $tgt TARGET is not allowed in the filter table" unless $target_type & FILTER_TABLE; $action = $param; } else { $action = '';