From 0bf21776696080f035c7529cc3cd315df7c2ae51 Mon Sep 17 00:00:00 2001 From: Denys Fedoryshchenko Date: Sun, 6 Oct 2024 21:00:18 +0300 Subject: [PATCH] updates about accel-pppd --- PPPOE_misc_tricks.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/PPPOE_misc_tricks.md b/PPPOE_misc_tricks.md index 855af5e..7131709 100644 --- a/PPPOE_misc_tricks.md +++ b/PPPOE_misc_tricks.md @@ -62,3 +62,20 @@ tcpdump -ni ppp185 -vvv -c 100 "src net 8.8.8.0/24 and src port 53" More info, in articles: https://iphelix.medium.com/packet-filtering-techniques-84fc3fc2ea3b + +## restarting accel-pppd + +If you need to restart accel-pppd you can use: +``` +killall accel-pppd +``` +then wait until process is killed, it might take up to few minutes on large pppoe. +To check if accel-pppd is running you can use: +``` +ps aux|grep accel-pppd +``` +If you see accel-pppd process you can start it with: +``` +/usr/sbin/accel-pppd -c /etc/accel-ppp.conf -p /var/run/accel-ppp.pid -d +``` +