RPI and Sakis3g

From Hobbywiki
Revision as of 19:11, 30 November 2013 by Pusur (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
  • Install Sakis3g and ppp

Connect automatically at startup

  • Create file /etc/sakis3g.conf

Telenor:

APN="CUSTOM_APN"
CUSTOM_APN="internet.public"
APN_USER="user"
APN_PASS="pass"

Netcom:

APN="CUSTOM_APN"
CUSTOM_APN="vpn.netcom.com"
APN_USER="user"
APN_PASS="pass"
  • Create file /etc/init.d/sakis3g
#! /bin/sh
# /etc/init.d/foobar


# The following part always gets executed.
echo "This part always gets executed"


# The following part carries out specific functions depending on arguments.
case "$1" in
 start)
   sudo /umtskeeper/sakis3g connect
   motion
   ;;
 stop)
   sudo /umtskeeper/sakis3g disconnect
   echo "camera is dead"
   ;;
 *)
   echo "Usage: /etc/init.d/sakis3g {start|stop}"
   exit 1
   ;;
esac


exit 0
  • Add the following to /etc/rc.local
/etc/init.d/sakis3g start