curl -X PUT "http://<camera-ip>/ISAPI/Streaming/channels/101/clientSettings"
--digest -u admin:password
-H "Content-Type: application/xml"
-d '<clientSettings><videoCodec>H.264</videoCodec><streamTransport>TCP</streamTransport><multicast>false</multicast></clientSettings>'
When a user searches for a fix in this context, one or more of the following is typically broken: intitle ip camera viewer intext setting client setting fix
Inside the client settings, you will find a field called: When a user searches for a fix in
It is probably set to 127.0.0.1 or 0.0.0.0. It is probably set to 127
The Fix: Change the bind address to 0.0.0.0 and save. Restart the viewer.
curl -X PUT "http://<camera-ip>/ISAPI/Streaming/channels/101/clientSettings"
--digest -u admin:password
-H "Content-Type: application/xml"
-d '<clientSettings><videoCodec>H.264</videoCodec><streamTransport>TCP</streamTransport><multicast>false</multicast></clientSettings>'
When a user searches for a fix in this context, one or more of the following is typically broken:
Inside the client settings, you will find a field called:
It is probably set to 127.0.0.1 or 0.0.0.0.
The Fix: Change the bind address to 0.0.0.0 and save. Restart the viewer.