Reducing Network Bandwidth Usage
Edit your eth1.service unit file.
sudo nano /etc/systemd/system/eth1.service
Add the following flag to limit the number of peers on the ExecStart
line.
--maxpeers 10
# Example
# ExecStart = /usr/bin/geth --maxpeers 10 --http --ws
Finally, reload the new unit file and restart the execution client.
sudo systemctl daemon-reload
sudo systemctl restart eth1