Hi all, i 'm configuring icecast2 server to make an audio stream. We need an authentication system. I read the icecast documentation and make some test with the configuration that came in the examples folders of the icecaste tar (but i installed it through the apt-get in debian). I don't know if maybe i doesn't understand the differents types of authentication. We need some method that make a prompt to the user with the form (i don't know if this is possible with icecast). At least, althought it appear with a lock by it side, i still can access without authentication with the direct url (http://ip:8000/audio). Is there a way to deny the access to a stream if it is not authenticated? This is my configuration for the mountpoint en icecast.xml: <authentication type="url"> <option name="add" value="http://192.168.1.251/icesauth/action.php"/> <option name="remove" value="http://192.168.1.251/icesauth/action.php"/> <option name="start" value="http://192.168.1.251/icesauth/action.php"/> <option name="end" value="http://192.168.1.251/icesauth/action.php"/> <option name="username" value="user"/> <option name="password" value="pass"/> <option name="auth_header" value="icecast-auth-user: 1"/> </authentication> Guilermo