Skip to content

Instantly share code, notes, and snippets.

@bgromov
Last active July 28, 2020 10:02
Show Gist options
  • Save bgromov/3f403b4cc4b5065649e46b824100b5e7 to your computer and use it in GitHub Desktop.
Save bgromov/3f403b4cc4b5065649e46b824100b5e7 to your computer and use it in GitHub Desktop.
Forward DJI Tello port with socat
#!/bin/sh
if [ $# -eq 0 ]; then
echo "Usage: $0 <new_ip_address>"
exit 1
fi
socat udp4-listen:8889,fork,reuseaddr,bind=$1 udp:192.168.10.1:8889
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment