Sentry Nodes
Last updated
Was this helpful?
Last updated
Was this helpful?
The Sentry Node Architecture is an infrastructure example for DDoS mitigation on Tendermint-based networks.
Secret Nodes (Validators) are responsible for ensuring that the network can sustain denial of service attacks.
One recommended way to mitigate these risks is for validators to carefully structure their network topology in a so-called sentry node architecture.
Validator nodes should only connect to full-nodes they trust because they operate them themselves or are run by other validators they know socially. A validator node will typically run in a data center. Most data centers provide direct links the networks of major cloud providers. The validator can use those links to connect to sentry nodes in the cloud. This shifts the burden of denial-of-service from the validator's node directly to its sentry nodes, and may require new sentry nodes be spun up or activated to mitigate attacks on existing ones.
Sentry nodes can be quickly spun up or change their IP addresses. Because the links to the sentry nodes are in private IP space, an internet based attacked cannot disturb them directly. This will ensure validator block proposals and votes always make it to the rest of the network.
Log into your sentry node(s), and validator, then run the following commands to get the peer information:
Get node id
Save your peer information, be sure to remember which are for sentries and which is for your validator, you'll need it later:
To setup basic sentry node architecture you can follow the instructions below:
Sentry Nodes should edit their config.toml:
Edit the full nodes config file you want to use as a sentry node:
Proceed to add the peer id of your validator to the .secretd/config/config.toml
:
Now proceed to restart your secret node with the following command.
You now have a sentry node running!
Validators nodes should add their sentry node peer information to their .secretd/config/config.toml
:
Proceed to add the peer id of your sentry nodes to the persistent_peers list and set pex to false:
Now proceed to restart your secret node with the following command.
You're now running your validator behind a sentry node!
First follow the