A small Shell Script to start dropbear at my android

You can execute it on a rooted phone using the Smanager App


#!/system/bin/sh
DROPBEAR=`which dropbear`;
#echo
$DROPBEAR case $1 in start|Start)
echo "starting dropbear ..." cd /data/dropbear su -c "$DROPBEAR -v -s -g" ;; stop|Stop)
echo "stopping dropbear ..." killall dropbear ;; *)
echo "usage: dropbear.sh [start|stop]" ;;
esac

http://tn.genano.de/wordpress/2009/09/18/howtotutorial-dropbear-ssh-fur-android-cyanogenmod-konfigurieren/