| 12345678910111213141516171819202122232425262728293031323334 |
- # PPPD configuration for FONA GPRS connection on Debian/Ubuntu.
- # Change the -T parameter value **** to your network's APN value if need be.
- #
- connect "/usr/sbin/chat -v -f /etc/chatscripts/gprs"
- # /dev/ttyGPRS is mapped from the rc.local script for a Popufare system.
- # /dev/ttyGPRS is (usually?) a symlink to /dev/serial0 or /dev/ttyAMA0, depending.
- #
- /dev/ttyGPRS
- # 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
|