You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# Teamspeak3
|
|
|
|
|
|
|
|
[Teamspeak3](https://www.teamspeak.com) is a voice-over-IP service.
|
|
|
|
|
|
|
|
## Setup
|
|
|
|
|
|
|
|
The software can be setup via Docker with the
|
|
|
|
[teamspeak image](./docker-images/teamspeak.md).
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
This section addresses various features of Teamspeak3.
|
|
|
|
|
|
|
|
### Link Teamspeak3 to a subdomain
|
|
|
|
|
|
|
|
To link Teamspeak3 to one of your subdomains you need to add a
|
|
|
|
[DNS SRV-record](./dns.md#srv-record):
|
|
|
|
|
|
|
|
```txt
|
|
|
|
type: SRV
|
|
|
|
name: ts3 (or alternative subdomain)
|
|
|
|
service: _ts3
|
|
|
|
proto: UDP
|
|
|
|
TTL: <configure to your liking>
|
|
|
|
class: IN
|
|
|
|
priority: 0
|
|
|
|
weight: 5
|
|
|
|
port: 9987 (or your teamspeak3 port)
|
|
|
|
target: ts3.<domain>.<TLD>
|
|
|
|
```
|