我试图在Ubuntu13.10上找到pppd的调试信息。我试着读了一下这篇文章,但是我发现日志的位置是针对较旧版本的Ubuntu。
我有什么意见
sudo pon dsl-provider debug
发布于 2014-04-01 11:58:34
您可以在/var/log/syslog中看到pppd日志。
less /var/log/syslog
或
tail -f /var/log/syslog
或
cat /var/log/syslog
发布于 2014-04-01 11:59:32
来自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)).
因此,默认情况下,所有pppd
日志都将被重定向到/var/log/syslog
。
https://askubuntu.com/questions/441900
复制相似问题