Last active
November 29, 2017 19:44
-
-
Save kandran/e9658b4ade8d532feaa1 to your computer and use it in GitHub Desktop.
Iptables Rules for teamspeak
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Teamspeak Licence | |
iptables -t filter -A INPUT -p tcp --dport 2008 -j ACCEPT | |
iptables -t filter -A OUTPUT -p tcp --dport 2008 -j ACCEPT | |
# Teamspeak Voix par défaut | |
iptables -t filter -A INPUT -p udp --dport 9987 -j ACCEPT | |
iptables -t filter -A OUTPUT -p udp --dport 9987 -j ACCEPT | |
# Teamspeak ServerQuery | |
iptables -t filter -A INPUT -p tcp --dport 10011 -j ACCEPT | |
iptables -t filter -A OUTPUT -p tcp --dport 10011 -j ACCEPT | |
# Teamspeak File Transfer | |
iptables -t filter -A INPUT -p tcp --dport 30033 -j ACCEPT | |
iptables -t filter -A OUTPUT -p tcp --dport 30033 -j ACCEPT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment