TCP/8554 — a widely used alternate port for RTSP (Real-Time Streaming Protocol). The standard is 554 (RFC 2326), but 8554 is popular for test servers (GStreamer rtsp-simple-server), secondary instances, and CGNAT bypass. Used by IP cameras, video conferencing, live streaming. Security: digest auth at minimum, TLS via RTSPS (322/8322).
Below: details, example, related, FAQ.
# Check stream with ffmpeg
$ ffmpeg -rtsp_transport tcp -i rtsp://admin:pass@192.168.1.10:8554/live -frames 1 test.jpg
# GStreamer play
$ gst-launch-1.0 rtspsrc location=rtsp://192.168.1.10:8554/live ! decodebin ! autovideosink
# Nmap scan
$ nmap -p 8554 --script rtsp-url-brute 192.168.1.10Ping sends ICMP packets to a host and measures response time. Port scanning checks which TCP ports are open and accepting connections — helping diagnose serviceavailability issues.
Choose packet count (3, 4, 6, 10). Stats: min/avg/max latency and packet loss.
Check 14 key ports: HTTP, HTTPS, SSH, FTP, SMTP, MySQL, PostgreSQL, and more.
Testing from our server — see site availability from outside, not just your local network.
Need constant monitoring? Create a monitor — checks every minute with notifications.
availability diagnosis
TCP port scanning
connection debugging
basic health check
Ping check history, host availability monitoring and downtime alerts.
Sign up freeOften — a user-space alternative to privileged 554. Standalone servers without root use 8554 / 8888 / 10554.
Digest auth + IP whitelist. Real security — TLS tunnel (stunnel / nginx-rtmp-module) or WebRTC + SRTP.
Browser — WebRTC or HLS. IP cameras and professional video — RTSP for another 5+ years.