| 123456789101112131415161718192021222324252627282930313233343536 |
- # Example PPPD configuration for FONA GPRS connection on Debian/Ubuntu.
- # MUST CHANGE: Change the -T parameter value **** to your network's APN value.
- # For example if your APN is 'internet' (without quotes), the line would look like:
- # connect "/usr/sbin/chat -v -f /etc/chatscripts/gprs -T internet"
- connect "/usr/sbin/chat -v -f /etc/chatscripts/gprs -T ****"
- # MUST CHANGE: Uncomment the appropriate serial device for your platform below.
- # For Raspberry Pi use /dev/ttyAMA0 by uncommenting the line below:
- #/dev/ttyAMA0
- # For BeagleBone Black use /dev/ttyO4 by uncommenting the line below:
- #/dev/ttyO4
- # Speed of the serial line.
- 115200
- # Assumes that your IP address is allocated dynamically by the ISP.
- noipdefault
- # Try to get the name server addresses from the ISP.
- usepeerdns
- # Use this connection as the default route to the internet.
- defaultroute
- # Makes PPPD "dial again" when the connection is lost.
- persist
- # Do not ask the remote to authenticate.
- noauth
- # No hardware flow control on the serial link with FONA
- nocrtscts
- # No modem control lines with FONA.
- local
|