Hi
My frends garage got burned up, and my pixhawk and rpi ++ was unfortunately located there. So no i have ordered Navio+ with Odroid-C1.. 🙂
#!/bin/bash
ip=`dig +short ` (This line just grabs the IP adress for the dyndns name you put here.)
echo $ip (Outputs the ip adress when you start the script)
/root/udp_redirect 0.0.0.0 14550 $ip 14550 &
If you want to use the redirect file with static ip, just put it like this.
/root/udp_redirect 0.0.0.0 14550 GCS_IP 14550 &
So if your laptop(192.168.1.233) is where you want the stream to point at, you could use your line like this;
/root/udp_redirect 0.0.0.0 14550 192.168.1.233 14550 &
- copy the attched file to your rpi.
- Chmod 755 to the file
- start the redirect with this command. sh udp-send.sh
If you still got problems, you can open port 23 to PI ip_adress and send me PM with your external adress and i can log on to PI and have a look.