RTSP authentification
We are trying to enable RTSP authentication but it seems it doesn’t work, users can play stream without username and password provided in rtsp url.
We are testing on evostream-mediaserver-1.6.4.2600-1.el6.x86_64 trial version on CentOS 6.4.
This is our authentication part in config.lua that should enable rtsp authentification:
authentication=
{
rtsp=
{
usersFile="/etc/evostreamms/users.lua",
–authenticatePlay=true,
}
},
and users.lua:
users=
{
user1="123",
user2="password2",
}
realms=
{
{
name="EVOSTREAM stream router",
method="Digest",
users={
"user1",
"user2",
},
},
}