📡 DDNS & Remote Access Guide

How to make your IP camera accessible from the internet

🔍 Why DDNS?

Most ISPs assign a dynamic (changing) public IP address. DDNS (Dynamic DNS) lets you access your camera via a fixed domain name, even if your IP changes. Together with port forwarding, this gives you an RTSP URL like rtsp://user:pass@yourname.ddns.net:554/stream0 that you can use on RTSP.cam or any other player.

📋 Step 1: Set up DDNS

Choose a free DDNS provider and create a hostname:

After creating a hostname, you need a DDNS updater (runs on your network and updates the IP automatically). Many cameras have it built-in — see step 3.

🔌 Step 2: Port Forwarding

On your router, forward ports to the camera's LAN IP:

PortServiceDefault
554RTSP streamusually same
80HTTP admin panelcan change
8000RTSP (some cameras)varies
⚠ Security: Don't forward port 80 unless needed. Use strong passwords. Consider VPN instead of exposing RTSP to internet if security is critical.

📷 Step 3: Configure Your Camera

HIK Hikvision

DAH Dahua

AXIS Axis

GEN Uniview / Other brands

🌐 Step 4: Verify & Use

  1. Check your public IP matches the DDNS hostname (use ping yourname.ddns.net)
  2. Test locally: rtsp://user:pass@192.168.1.x:554/...
  3. Test from outside: rtsp://user:pass@yourname.ddns.net:554/stream0
  4. Enter the URL on RTSP.cam to watch in browser!
💡 Tip: Common RTSP paths: /stream0, /Streaming/Channels/101 (Hikvision), /cam/realmonitor?channel=1&subtype=0 (Dahua), /axis-media/media.amp (Axis), /unicast/c4s1/live (Uniview). Check your camera's manual or try these.

🔐 Security Checklist