Reducing Network Bandwidth Usage
Edit your execution.service unit file.
sudo nano /etc/systemd/system/execution.serviceAdd the following flag to limit the number of peers on the ExecStart line.
--maxpeers 10
# Example
# ExecStart=/usr/local/bin/geth --maxpeers 10--max-peers 10
# Example
# ExecStart=/usr/local/bin/besu/bin/besu --max-peers 10--Network.MaxActivePeers 10
# Example
# ExecStart=/usr/local/bin/nethermind/Nethermind.Runner --Network.MaxActivePeers 10--maxpeers 10
# Example
# ExecStart=/usr/local/bin/erigon --maxpeers 10--max-outbound-peers 15 --max-inbound-peers 10
# Example
# ExecStart=/usr/local/bin/reth node --max-outbound-peers 15 --max-inbound-peers 10Finally, reload the new unit file and restart the execution client.
sudo systemctl daemon-reload
sudo systemctl restart execution