(Courriels de diversion: <interposees@identite-voltigeaient.com> <nurse@parsemes-applicateur.com> <vaquais@encherissait-aspirions.com> <feuillete@enlaceraient-populations.com> <concomitant@desabonnons-reclassee.com> <trompiez@enchaînerons-maisons.com> <saupiquet@commuera-deuxieme.com> <resolviez@terrassent-decevriez.com> <dechiffrait@allongee-restaureraient.com> <tresser@persecuterons-friture.com> )



-- BEGIN included message

Salut , ouf ca marche, je te donne en fichier joint mes fichiers de config, les
hypotheses sont les suivantes :
le modem est sur /dev/ttyS1
il faut que tu modifie le fichier pap-secrets, avec ton mot de passe et ton login

il faut que tu modifie le fichier options avec ton login juste apres name
le fichier ppp-on-default correspond à mon modem (usr 33600) mais si le tien est
compatible Hayes ca doit pas poser de problème.
il faut que tu change le numero de telephone dans ppp-on-default si c'est pas le
même que moi
description des fichiers :
/usr/sbin/ppp-on : script de demarrage
/etc/ppp/options : options de pppd
/etc/ppp/pap-secrets : fichier de mot de passe
/etc/ppp/ppp-on-default : script de connexion chat

Voila en fait mon erreur venait du fait que j'avais oublié l'option "asyncmap
00000000" dans options , ce qui faisait que le caractère ESC etait mal interprété
d'où une erreur de cheksum.
Quand ta connexion marche bien , tu peux supprimer l'option kdebug 7 dans le
fichier options afin de ne pas générer un fichier log ( /var/log/messages) trop
voluminaux.

Bonne chance, tiens moi au courant si ca marche.

Pierre Monlong


/usr/sbin/chat -v                                        \
          TIMEOUT         3                               \
          ABORT           '\nBUSY\r'                      \
          ABORT           '\nNO ANSWER\r'                 \
          ABORT           '\nRINGING\r\n\r\nRINGING\r\n\r\nRINGING\r'    \
          ''              \rAT                            \
          'OK-+++\c-OK'   ATH0                            \
	OK		AT\&F1				\
	OK		ATS7=60				\
	OK		ATS19=0				\
	OK		ATL0                          \
	OK		ATM1				\
	OK		AT\&M4				\
	OK		AT\&K1				\
	OK		AT\&H1				\
	OK		AT\&R2				\
	OK		AT\&I0				\
	OK		AT\&N0                          \
	OK		ATB0                          \
	OK		ATX4 			       \
          OK              ATDT0562163666                  \
	  TIMEOUT	 45                               \
          CONNECT         ''                             
          
#!/bin/sh
#
# Script to initiate a ppp connection. This is the first part of the
# pair of scripts. This is not a secure pair of scripts as the codes
# are visible with the 'ps' command.  However, it is simple.
#
# These are the parameters. Change as needed.
TELEPHONE=555-1212	# The telephone number for the connection
ACCOUNT=george		# The account name for logon (as in 'George Burns')
PASSWORD=gracie		# The password for this account (and 'Gracie Allen')
LOCAL_IP=0.0.0.0	# Local IP address if known. Dynamic = 0.0.0.0
REMOTE_IP=0.0.0.0	# Remote IP address if desired. Normally 0.0.0.0
NETMASK=255.255.255.0	# The proper netmask if needed
#
# Export them so that they will be available at 'ppp-on-dialer' time.
export TELEPHONE ACCOUNT PASSWORD
# 
# This is the location of the script which dials the phone and logs
# in.  Please use the absolute file name as the $PATH variable is not
# used on the connect option.  (To do so on a 'root' account would be
# a security hole so don't ask.)
#
DIALER_SCRIPT=/etc/ppp/ppp-on-default
#
# Initiate the connection
# 
# I put most of the common options on this command. Please, don't
# forget the 'lock' option or some programs such as mgetty will not
# work. The asyncmap and escape will permit the PPP link to work with
# a telnet or rlogin connection. You are welcome to make any changes
# as desired. Don't use the 'defaultroute' option if you currently
# have a default route to an ethernet gateway.
#
exec /usr/sbin/pppd connect $DIALER_SCRIPT
# Secrets for authentication using PAP
# client	server	secret			IP addresses
pdenicolas	ppp0	tonmotdepasse
lock kdebug 7 modem crtscts /dev/ttyS1 115200 asyncmap 00000000 defaultroute 0.0.0.0:0.0.0.0 name pdenicolas noipdefault netmask 255.255.255.0 

-- END included message