我正在从ip-camera流图像。 ip摄像机已连接到NVR。 我有10个NVR,每个NVR有20个IP摄像机。
我喜欢从NVR之一流式传输一台IP摄像机的图像。
所有NVR均已连接到网络交换机。
我使用PC上的LAN电缆连接到网络交换机。
然后我扫描PC可以使用的所有IP地址
sudo arp-scan --localnet
我可以看到NVR的IP地址,我想从该IP地址流式传输ip-cam的图像。
然后我使用来检查IP地址的端口
nmap 192.xxx.xx.5
Starting Nmap 7.01 ( https://nmap.org ) at 2019-04-24 16:36 +08
mass_dns: warning: Unable to determine any DNS servers. Reverse DNS is disabled. Try using --system-dns or specify valid servers with --dns-servers
Nmap scan report for 192.168.10.5
Host is up (0.0020s latency).
Not shown: 997 closed ports
PORT STATE SERVICE
80/tcp open http
554/tcp open rtsp
8000/tcp open http-alt
Nmap done: 1 IP address (1 host up) scanned in 0.11 seconds
显示该NVR上的RTSP端口已打开。
我将PC的IP地址范围,掩码,网关设置为与NVR的网络配置类似,
例如,我设置PC的网络掩码与NVR的掩码相同。 PC的网关地址与NVR的网关地址相同。 PC的ipv4 ipaddress与NVR处于同一范围。
然后我进行流式传输。 NVR和ip-cam是海康威视,我使用它们的格式。
rtsp://admin:Admin1234@192.xxx.xx.5:554/Streaming/Channels/102
or
rtsp://192.xxx.xx.5:554/ISAPI/streaming/channels/102
1是该nvr中的摄像机ID,02是子流。
我有
core input error: open of rtsp xxxxxx
live555 demux error: Failed to connect with rtsp://xxxxxx
core access error: read error: Connection reset by peer
为什么我不能从NVR流式传输IP摄像机的图像?
我还需要采取其他措施吗?