Thanks for this, I was able to read the config and see that RTSP is disabled, but I am having trouble with the PUT command to update the config, I simply copied the entire XML and changed false to true for RTSP enable, however I am getting a 403 response.For DVR-H2T80B-41-HIK with firmware, DVR4-H2T80B-20181208 had to open the RTSP port
Check the capabilities -
http://<IP_ADDRESS>/ISAPI/Security/adminAccesses/capabilities
You can see which ports are open on the DVR
If RTSP is available then enable using the PUT method
Then you can access the stream using the RTSP protocol
<?xml version="1.0" encoding="UTF-8" ?>
<ResponseStatus version="1.0" xmlns="urn:psialliance-org">
<requestURL>/ISAPI/Security/adminAccesses/capabilities</requestURL>
<statusCode>4</statusCode>
<statusString>Invalid Operation</statusString>
<subStatusCode>methodNotAllowed</subStatusCode>
</ResponseStatus>
You cannot request update to the capabilities using PUT for URI "/ISAPI/Security/adminAccesses/capabilities"Thanks for this, I was able to read the config and see that RTSP is disabled, but I am having trouble with the PUT command to update the config, I simply copied the entire XML and changed false to true for RTSP enable, however I am getting a 403 response.
Code:<?xml version="1.0" encoding="UTF-8" ?> <ResponseStatus version="1.0" xmlns="urn:psialliance-org"> <requestURL>/ISAPI/Security/adminAccesses/capabilities</requestURL> <statusCode>4</statusCode> <statusString>Invalid Operation</statusString> <subStatusCode>methodNotAllowed</subStatusCode> </ResponseStatus>
Any help would be greatly appreciated!
Thank you so much, with that I was able to start streaming RTSP.You cannot request update to the capabilities using PUT for URI "/ISAPI/Security/adminAccesses/capabilities"
Try this and you should be able to enable the RTSP
You can get the <ID> of RTSP in "/ISAPI/Security/adminAccesses/capabilities" URI.
View attachment 182177