Replies: 2 comments 2 replies
-
For simplicity, there are two kinds of annoying visitors: 1) naive or clueless and 2) malicious. |
Beta Was this translation helpful? Give feedback.
-
I wrote a little script to block people by IP in the firewall (Linux specific). But I haven't had any occasion to use it so far. Sometimes people with misconfigured audio setups come and make noise, but it's easy enough to mute them (or even set new client level to 0 so new people start out muted). And anyway, those people tend to disconnect quickly once they realize something is wrong. #!/bin/sh
if [ -z "$1" ] ; then
echo "Usage: $0 --reset|<ip-address[:port]>" >&2
exit 1
fi
case "$1" in
(--reset) /etc/nftables.conf ;;
(*:*) nft insert rule inet filter input ip saddr "${1%:*}" udp sport "${1#*:}" reject ;;
(*) nft insert rule inet filter input ip saddr "$1" reject ;;
esac |
Beta Was this translation helpful? Give feedback.
-
This suggestion could polarize, please say what you think about it.
Problem
Everyone knows it: You have a great session on a public server and suddenly annoying clients come in and do a soundcheck parallel to the song or intentionally disrupting the session.
Describe the solution you'd like
As a server owner, I would like to have the opportunity to ban such clients.
Beta Was this translation helpful? Give feedback.
All reactions