#!/bin/sh
#
# pppd option file forSiemens ME45 phone
#
# It's made with the Script Generator, which is made by Gábor Pintér <pinter.gabor@linuxuser.hu> For the GPRS Easy Connect program.
# The Script Generator and the files made by it are came a GNU General Public License.
#
# 24-11-2003 12:00
#

#Debug mode
debug

#Device for your connetcion
/dev/ttyS1

#Speed
115200

#With this option, pppd will accept all control characters from the peer, including those marked in the receive asyncmap
receive-all

#Disable every compression in both directions
nopcomp
noaccomp
noccp
novj
novjccomp

#Don't detach from the controlling terminal
nodetach

#Ask the peer for up to 2 DNS server addresses
usepeerdns

#Do not require the peer to authenticate itself (This option is privileged for root!)
noauth

#Other options
crtscts
modem
lock
noipdefault
defaultroute

#Connect script
connect '/usr/sbin/chat -e -f ./siemens-me45-connect -v'

#Disconnect script
disconnect '/usr/sbin/chat -e -f ./disconnect -v'

