Onde está o log do pppd no Ubuntu 13.10?

0

Eu estou tentando encontrar o infromation de depuração do pppd no Ubuntu 13.10. Eu tentei ler o manual, mas descobri que a localização do log é para a versão mais antiga do Ubuntu.

o que eu tenho inserido

sudo pon dsl-provider debug
    
por John Hass 01.04.2014 / 13:39

2 respostas

4

Você pode ver os logs do pppd em / var / log / syslog

less /var/log/syslog

ou

tail -f /var/log/syslog

ou

cat /var/log/syslog
    
por 2707974 01.04.2014 / 13:58
2

De páginas man do pppd:

   debug  Enables  connection  debugging  facilities.   If  this option is
          given, pppd will log the contents of all control packets sent or
          received  in  a  readable  form.  The packets are logged through
          syslog with facility daemon and level debug.   This  information
          can  be  directed  to  a  file  by  setting  up /etc/syslog.conf
          appropriately (see syslog.conf(5)).

Portanto, por padrão, todos os pppd logs serão redirecionados para /var/log/syslog .

    
por Sylvain Pineau 01.04.2014 / 13:59