You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have installed eturnal and configured it as followed:
# eturnal STUN/TURN server configuration file.
#
# This file is written in YAML. The YAML format is indentation-sensitive, please
# MAKE SURE YOU INDENT CORRECTLY.
#
# See: https://eturnal.net/documentation/#Global_Configuration
eturnal:
## Shared secret for deriving temporary TURN credentials (default: $RANDOM):
secret: "my-secret"
## The server's public IPv4 address (default: autodetected):
#relay_ipv4_addr: "..."
## The server's public IPv6 address (optional):
# relay_ipv6_addr: "..."
listen:
-
ip: "::"
port: 3478
transport: udp
-
ip: "::"
port: 3478
transport: tcp
relay_min_port: 49152 # This is the default.
relay_max_port: 65535 # This is the default.
## Reject TURN relaying to the following addresses/networks:
blacklist_peers:
- recommended # Expands to various addresses/networks recommended
# to be blocked. This is the default.
## If 'true', close established calls on expiry of temporary TURN credentials:
strict_expiry: false # This is the default.
## Logging configuration:
log_level: notice # critical | error | warning | notice | info | debug
log_rotate_size: 10485760 # 10 MiB (default: unlimited, i.e., no rotation).
log_rotate_count: 10 # Keep 10 rotated log files.
#log_dir: stdout # Enable for logging to the terminal/journal.
## See: https://eturnal.net/documentation/#Module_Configuration
modules:
mod_log_stun: {} # Log STUN queries (in addition to TURN sessions).
#mod_stats_influx: {} # Log STUN/TURN events into InfluxDB.
#mod_stats_prometheus: # Expose STUN/TURN and VM metrics to Prometheus.
# ip: any # This is the default: Listen on all interfaces.
# port: 8081 # This is the default.
# tls: false # This is the default.
# vm_metrics: true # This is the default.
I have installed eturnal and configured it as followed:
I have configured my dendrite server as followed:
If I now want to establish a VOIP connection the log shows 'Rejecting permission creation request: Forbidden'
If I try to test with
turnutils_uclient -t -p 3478 -W my-secret -v -y turn.domain.com
I receive
error 420 (Unknown Attribute)
No TURN connection with eturnal is possible.
The text was updated successfully, but these errors were encountered: