You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

108 lines
8.4 KiB

  1. # Validators
  2. Validators are responsible for committing new blocks in the blockchain.
  3. These validators participate in the consensus protocol by broadcasting
  4. _votes_ which contain cryptographic signatures signed by each
  5. validator's private key.
  6. Some Proof-of-Stake consensus algorithms aim to create a "completely"
  7. decentralized system where all stakeholders (even those who are not
  8. always available online) participate in the committing of blocks.
  9. Tendermint has a different approach to block creation. Validators are
  10. expected to be online, and the set of validators is permissioned/curated
  11. by some external process. Proof-of-stake is not required, but can be
  12. implemented on top of Tendermint consensus. That is, validators may be
  13. required to post collateral on-chain, off-chain, or may not be required
  14. to post any collateral at all.
  15. Validators have a cryptographic key-pair and an associated amount of
  16. "voting power". Voting power need not be the same.
  17. ## Becoming a Validator
  18. There are two ways to become validator.
  19. 1. They can be pre-established in the [genesis state](./using-tendermint.md#genesis)
  20. 2. The ABCI app responds to the EndBlock message with changes to the
  21. existing validator set.
  22. ## Setting up a Validator
  23. When setting up a validator there are countless ways to configure your setup. This guide is aimed at showing one of them, the sentry node design. This design is mainly for DDOS prevention.
  24. ### Network Layout
  25. ![ALT Network Layout](./sentry_layout.png)
  26. The diagram is based on AWS, other cloud providers will have similar solutions to design a solution. Running nodes is not limited to cloud providers, you can run nodes on bare metal systems as well. The architecture will be the same no matter which setup you decide to go with.
  27. The proposed network diagram is similar to the classical backend/frontend separation of services in a corporate environment. The “backend” in this case is the private network of the validator in the data center. The data center network might involve multiple subnets, firewalls and redundancy devices, which is not detailed on this diagram. The important point is that the data center allows direct connectivity to the chosen cloud environment. Amazon AWS has “Direct Connect”, while Google Cloud has “Partner Interconnect”. This is a dedicated connection to the cloud provider (usually directly to your virtual private cloud instance in one of the regions).
  28. All sentry nodes (the “frontend”) connect to the validator using this private connection. The validator does not have a public IP address to provide its services.
  29. Amazon has multiple availability zones within a region. One can install sentry nodes in other regions too. In this case the second, third and further regions need to have a private connection to the validator node. This can be achieved by VPC Peering (“VPC Network Peering” in Google Cloud). In this case, the second, third and further region sentry nodes will be directed to the first region and through the direct connect to the data center, arriving to the validator.
  30. A more persistent solution (not detailed on the diagram) is to have multiple direct connections to different regions from the data center. This way VPC Peering is not mandatory, although still beneficial for the sentry nodes. This overcomes the risk of depending on one region. It is more costly.
  31. ### Local Configuration
  32. ![ALT Local Configuration](./local_config.png)
  33. The validator will only talk to the sentry that are provided, the sentry nodes will communicate to the validator via a secret connection and the rest of the network through a normal connection. The sentry nodes do have the option of communicating with each other as well.
  34. When initializing nodes there are five parameters in the `config.toml` that may need to be altered.
  35. - `pex:` boolean. This turns the peer exchange reactor on or off for a node. When `pex=false`, only the `persistent_peers` list is available for connection.
  36. - `persistent_peers:` a comma separated list of `nodeID@ip:port` values that define a list of peers that are expected to be online at all times. This is necessary at first startup because by setting `pex=false` the node will not be able to join the network.
  37. - `unconditional_peer_ids:` comma separated list of nodeID's. These nodes will be connected to no matter the limits of inbound and outbound peers. This is useful for when sentry nodes have full address books.
  38. - `private_peer_ids:` comma separated list of nodeID's. These nodes will not be gossiped to the network. This is an important field as you do not want your validator IP gossiped to the network.
  39. - `addr_book_strict:` boolean. By default nodes with a routable address will be considered for connection. If this setting is turned off (false), non-routable IP addresses, like addresses in a private network can be added to the address book.
  40. #### Validator Node Configuration
  41. | Config Option | Setting |
  42. | ---------------------- | -------------------------- |
  43. | pex | false |
  44. | persistent_peers | list of sentry nodes |
  45. | private_peer_ids | none |
  46. | unconditional_peer_ids | optionally sentry node IDs |
  47. | addr_book_strict | false |
  48. The validator node should have `pex=false` so it does not gossip to the entire network. The persistent peers will be your sentry nodes. Private peers can be left empty as the validator is not trying to hide who it is communicating with. Setting unconditional peers is optional for a validator because they will not have a full address books.
  49. #### Sentry Node Configuration
  50. | Config Option | Setting |
  51. | ---------------------- | --------------------------------------------- |
  52. | pex | true |
  53. | persistent_peers | validator node, optionally other sentry nodes |
  54. | private_peer_ids | validator node ID |
  55. | unconditional_peer_ids | validator node ID, optionally sentry node IDs |
  56. | addr_book_strict | false |
  57. The sentry nodes should be able to talk to the entire network hence why `pex=true`. The persistent peers of a sentry node will be the validator, and optionally other sentry nodes. The sentry nodes should make sure that they do not gossip the validator's ip, to do this you must put the validators nodeID as a private peer. The unconditional peer IDs will be the validator ID and optionally other sentry nodes.
  58. > Note: Do not forget to secure your node's firewalls when setting them up.
  59. More Information can be found at these links:
  60. - <https://kb.certus.one/>
  61. - <https://forum.cosmos.network/t/sentry-node-architecture-overview/454>
  62. ### Validator keys
  63. Protecting a validator's consensus key is the most important factor to take in when designing your setup. The key that a validator is given upon creation of the node is called a consensus key, it has to be online at all times in order to vote on blocks. It is **not recommended** to merely hold your private key in the default json file (`priv_validator_key.json`). Fortunately, the [Interchain Foundation](https://interchain.io/) has worked with a team to build a key management server for validators. You can find documentation on how to use it [here](https://github.com/iqlusioninc/tmkms), it is used extensively in production. You are not limited to using this tool, there are also [HSMs](https://safenet.gemalto.com/data-encryption/hardware-security-modules-hsms/), there is not a recommended HSM.
  64. Currently Tendermint uses [Ed25519](https://ed25519.cr.yp.to/) keys which are widely supported across the security sector and HSMs.
  65. ## Committing a Block
  66. > **+2/3 is short for "more than 2/3"**
  67. A block is committed when +2/3 of the validator set sign [precommit
  68. votes](https://github.com/tendermint/spec/blob/953523c3cb99fdb8c8f7a2d21e3a99094279e9de/spec/blockchain/blockchain.md#vote) for that block at the same `round`.
  69. The +2/3 set of precommit votes is called a
  70. [_commit_](https://github.com/tendermint/spec/blob/953523c3cb99fdb8c8f7a2d21e3a99094279e9de/spec/blockchain/blockchain.md#commit). While any +2/3 set of
  71. precommits for the same block at the same height&round can serve as
  72. validation, the canonical commit is included in the next block (see
  73. [LastCommit](https://github.com/tendermint/spec/blob/953523c3cb99fdb8c8f7a2d21e3a99094279e9de/spec/blockchain/blockchain.md#lastcommit)).