Skip to content

Instantly share code, notes, and snippets.

@kandran
Last active November 29, 2017 19:44
Show Gist options
  • Save kandran/e9658b4ade8d532feaa1 to your computer and use it in GitHub Desktop.
Save kandran/e9658b4ade8d532feaa1 to your computer and use it in GitHub Desktop.
Iptables Rules for teamspeak
# 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