vpn – How to Read the Log When VPN Fails

vpn

I have a Macbook Pro and I'm trying to get VPN from home to work. It refuse to work. I have turned on verbose logging, but how can I read the log ?

Best Answer

Whether you choose L2TP over IPSec or PPTP for your settings, the log file is located at:

/var/log/ppp.log

If you want use terminal to view your log file you can do following:

vim /var/log/ppp.log

tail -f /var/log/ppp.log (if you want see end of file)

less /var/log/ppp.log (if your log file was huge and want to see page by page)