Posts

Showing posts with the label internet connection

Maxis GPRS Connection

Image
I'm putting this here just for my reference. Feel free to ask me on the comment section if you don't understand what I'm talking about... Please note that I'm using TS-7260 SBC from embedded arm which I've installed ts-7000 linux (debian-arm based) on SD card. I'm using this to have wireless connection fron my Rain Gauge device to the internet. To make internet connection via Maxis GPRS on a Linux computer with ppp dial up connection , we just need some files which is: /etc/ppp/peers/maxisGPRS /etc/ppp/pap-secrets /etc/ppp/chat/maxisGPRS /etc/ppp/chat/gprs-disconnect and make sure the ppp and chat package is installed on that box. To install ppp on debian, you can use $ apt-get install ppp Here is the contents of /etc/ppp/peers/maxisGPRS hide-password noauth connect "/usr/sbin/chat -v -f /etc/ppp/chat/maxisGPRS" disconnect "/usr/sbin/chat -V -s -S -f /etc/ppp/chat/gprs-disconnect" debug crtscts /dev/ttyTS0 9600 defaultroute noipdefault use...