Reducing Network Bandwidth Usage
Edit your eth1.service unit file.
sudo nano /etc/systemd/system/eth1.serviceAdd the following flag to limit the number of peers on the ExecStart line.
--maxpeers 10
# Example
# ExecStart = /usr/bin/geth --maxpeers 10 --http --ws--max-peers 10
# Example
# ExecStart = <home directory>/besu/bin/besu --max-peers 10 --rpc-http-enabled--Network.ActivePeersMaxCount 10
# Example
# ExecStart = <home directory>/nethermind/Nethermind.Runner --Network.ActivePeersMaxCount 10 --JsonRpc.Enabled true--maxpeers 10Finally, reload the new unit file and restart the execution client.
sudo systemctl daemon-reload
sudo systemctl restart eth1