Flussonic

I want to ban IP address from my server!

How to ban IP address from getting my streams?

Hi,

Flussonic has a powerful auth system that allows configuring flexible rules.
You task easily solves with auth configurator:
https://flussonic.com/doc/auth/configurator

More information about auth system you can read here:
https://flussonic.com/doc/auth

For example, you want to block IP addr 1.1.1.1 and 2.2.2.2 for stream “bbc”. Flussonic configuration will be like:

auth_backend blacklist {
  deny ip 1.1.1.1;
  deny ip 2.2.2.2;
  allow default;
}

stream bbc {
  url udp://239.255.1.1:5500;
  auth auth://blacklist;
}