Hi,
I would like to set parameters of “live > Source Security” by using xml file.
But I can’t find where the parameters are.
Please tell me how to set parameters of “Source Security” with xml file.
Thanks,
Ami
Alex_C
2
Hello Ami,
You would be changing the Application.xml file in several locations.
For the RTMP Sources just make sure the following Property is either not added or is set to false:
<Property>
<Name>securityPublishRequirePassword</Name>
<Value>false</Value>
<Type>Boolean</Type>
</Property>
For the RTSP Sources setting the PublishMethod to none would set the authentication to Open.
<RTP>
<Authentication>
<PublishMethod>none</PublishMethod>
</Authentication>
</RTP>
The Client Restrictions setting is also managed by a property just like the RTMP Sources
<Property>
<Name>securityPublishIPWhiteList</Name>
<Value>127.0.0.1</Value>
<Type>String</Type>
</Property>
Hope this helps,
Alex
Hi Alex,
Thanks to you, it looks like I will be able to change parameters. Thank you for your help.
Ami