Skip to content

Instantly share code, notes, and snippets.

@karlwestin
Created November 10, 2012 15:55
Show Gist options
  • Save karlwestin/4051467 to your computer and use it in GitHub Desktop.
Save karlwestin/4051467 to your computer and use it in GitHub Desktop.
Make the AR Drone connect to a network
#telnet into the drone (telnet 192.168.1.1)
#paste the following command:
killall udhcpd; iwconfig ath0 mode managed essid [ssid]; ifconfig ath0 [wanted ip] netmask 255.255.255.0 up;
#ex. killall udhcpd; iwconfig ath0 mode managed essid Roflcopter; ifconfig ath0 192.168.43.201 netmask 255.255.255.0 up;
@joabo
Copy link

joabo commented Jun 7, 2017

Hey @yteo006, I realise this is an old post... However as I too was searching for a similar thing, you might find these precompiled scripts that add WPA2 support to be of some use too...

Link: https://github.com/daraosn/ardrone-wpa2

Cheers :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment