[RH72] pppd blijft maar loggen

Pagina: 1
Acties:

  • JVaags
  • Registratie: Juni 2001
  • Laatst online: 08-01-2025

JVaags

Je voelt je beter in een 504

Topicstarter
Hoi,

Ik heb nadat mijn servertje opnieuw ingericht is een probleem. pppd blijft maar loggen in de syslog net alsof je de optie debug in options hebt meengenomen en ik krijg het er niet uit.

Nu is dat opzich niet zo erg maar het is zo'n logboek vervuiling :)

Hoe krijg ik het eruit?

Hieronder mijn scripts.

code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/etc/ppp/pppon-12move:

#!/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=0676077777    # The telephone number for the connection
ACCOUNT=sh287580@12move.nl              # The account name for logon (as in 'George Burns')
PASSWORD=<knip>               # 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-dialer
#
# 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 lock nolog modem crtscts /dev/ttyS2 115200 \
        asyncmap 20A0000 escape FF $LOCAL_IP:$REMOTE_IP \
        noipdefault netmask $NETMASK defaultroute connect $DIALER_SCRIPT

/etc/ppp/options:

lock
nolog
name sh287580@12move.nl

Verwijderd

Zeker allemaal van die LCP messages enzo... Ik had dat ook toen ik in een grijs verleden nog inbelde. Volgens mij was dat iets met een debug optie die je op 0 moest zetten oid. Heb je daar al eens naar gekeken? Dus expliciet specifieren dat ie debug level 0 moet gebruiken oid.

  • JVaags
  • Registratie: Juni 2001
  • Laatst online: 08-01-2025

JVaags

Je voelt je beter in een 504

Topicstarter
Ik heb het gevonden...
Kijk eens goed wat staat er als optie bij chat?

-v

... ;)