PiHole temporär deaktivieren

Hallo, ich möchte zur Ursachenforschung PiHole temporär deaktivieren, sodass das System keine Load mehr durch PiHole bzw. PiHole-Drittdienste (DNSMASQ) mehr hat. Hintergrund ist, dass meine Cloud mittlerweile bei wenig mem-last und cpu-last 5 Minuten braucht um was zu reißen und ich kp habe, wie ich die Schreibzugriffe abfrage. Kann ich das bewerkstelligen, indem ich folgendes durchführe?

su
service pihole stop
service dnsmasq stop

oder hab ich noch was vergessen?

pi@noads:~ $ sudo netstat -nltp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 127.0.0.1:4711          0.0.0.0:*               LISTEN      513/pihole-FTL
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      625/lighttpd
tcp        0      0 0.0.0.0:53              0.0.0.0:*               LISTEN      28731/dnsmasq
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      521/sshd
tcp6       0      0 :::80                   :::*                    LISTEN      625/lighttpd
tcp6       0      0 :::53                   :::*                    LISTEN      28731/dnsmasq
tcp6       0      0 :::22                   :::*                    LISTEN      521/sshd
sudo service lighttpd stop
sudo service pihole-FTL stop
sudo service dnsmasq stop

Cron jobs:

sudo mv /etc/cron.d/pihole ~
sudo service cron reload

Rückgängig machen:

sudo mv ~/pihole /etc/cron.d/
sudo service cron reload
sudo service dnsmasq start
sudo service pihole-FTL start
sudo service lighttpd start