diff options
author | Thomas Lange <code@nerdmind.de> | 2016-04-23 09:08:31 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2016-04-23 09:08:31 +0200 |
commit | 92d8e0353f70fdacfab71aaf8facbdbea30b6a57 (patch) | |
tree | 10291d7dcbd44548c1fbd4dc7eac37467171079a | |
parent | 33740bc3e49514bbb4abe926957cc805c958f09c (diff) | |
download | snippets-92d8e0353f70fdacfab71aaf8facbdbea30b6a57.tar.gz snippets-92d8e0353f70fdacfab71aaf8facbdbea30b6a57.tar.xz snippets-92d8e0353f70fdacfab71aaf8facbdbea30b6a57.zip |
Example ports added.
-rwxr-xr-x | Bash/iptables-whiteblacklisting.sh | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/Bash/iptables-whiteblacklisting.sh b/Bash/iptables-whiteblacklisting.sh index fad15e8..3802bf0 100755 --- a/Bash/iptables-whiteblacklisting.sh +++ b/Bash/iptables-whiteblacklisting.sh @@ -21,15 +21,21 @@ MODE='WHITELISTING' # This can only be "WHITELISTING" or "BLACKLISTING" #=============================================================================== WHITELISTING=( # SSH - 'tcp:22' - - # DNS - 'tcp:53' - 'udp:53' + 'tcp:2200' # HTTP 'tcp:80' 'tcp:443' + + # XMPP + 'tcp:5222' + 'tcp:5269' + + # TeamSpeak + 'udp:9987' + 'tcp:30033' + 'tcp:10011' + 'tcp:41144' ) #=============================================================================== |