Skip to content
This repository was archived by the owner on Jun 11, 2019. It is now read-only.

Added ssh_port parameter to override default one #48

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
$log_forward = params_lookup( 'log_forward' ),
$log_level = params_lookup( 'log_level' ),
$safe_ssh = params_lookup( 'safe_ssh' ),
$ssh_port = params_lookup( 'ssh_port', '22' ),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The default value has to be placed in params.pp
Remove the 22 here and place $ssh_port = 22 somwhere in params.pp

$package = params_lookup( 'package' ),
$version = params_lookup( 'version' ),
$service = params_lookup( 'service' ),
Expand Down
2 changes: 1 addition & 1 deletion templates/concat/filter_input_header
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
-A INPUT -j LOG --log-level <%= scope.lookupvar('iptables::log_level') %> --log-prefix "INPUT PACKETS: "
<% end -%>
<% if scope.lookupvar('iptables::real_safe_ssh') == true -%>
-A INPUT -p tcp --dport 22 -j ACCEPT
-A INPUT -p tcp --dport <%= scope.lookupvar('iptables::ssh_port') %> -j ACCEPT
<% end -%>
-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
-A INPUT -i lo -j ACCEPT