mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-08 08:44:05 +01:00
65ce6ed226
Signed-off-by: Tom Eastep <teastep@shorewall.net>
35 lines
834 B
Plaintext
35 lines
834 B
Plaintext
#
|
|
# Shorewall version 5 - GlusterFS Handler for GlusterFS 3.4 and Later
|
|
#
|
|
# /etc/shorewall/action.GlusterFS
|
|
#
|
|
# Parameters:
|
|
# Bricks: Number of bricks
|
|
# IB: 0 or 1, indicating whether Infiniband is used or not
|
|
#
|
|
#########################################################################################
|
|
|
|
DEFAULTS 2,0
|
|
|
|
?if @1 !~ /^\d+/ || ! @1 || @1 > 1024
|
|
?error Invalid value for Bricks (@1)
|
|
?elsif @2 !~ /^[01]$/
|
|
?error Invalid value for IB (@2)
|
|
?endif
|
|
|
|
#ACTION SOURCE DEST PROTO DEST SOURCE ORIGINAL RATE USER/ MARK CONNLIMIT TIME HEADERS SWITCH HELPER
|
|
# PORT PORT(S) DEST LIMIT GROUP
|
|
ACCEPT - - udp 111,2049
|
|
ACCEPT - - tcp 38465:38467
|
|
|
|
?if @{2}
|
|
ACCEPT - - tcp 24007:24008
|
|
?else
|
|
ACCEPT - - tcp 24007
|
|
?endif
|
|
|
|
?set last_port 49150 + @{1}
|
|
|
|
ACCEPT - - tcp 49151:$last_port
|
|
|