Advertisement
Guest User

Untitled

a guest
Oct 14th, 2013
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. ###### Keepalive settings ######
  2. ############################################
  3. # ZeroMQ now includes support for configuring SO_KEEPALIVE if supported by
  4. # the OS. If connections between the minion and the master pass through
  5. # a state tracking device such as a firewall or VPN gateway, there is
  6. # the risk that it could tear down the connection the master and minion
  7. # without informing either party that their connection has been taken away.
  8. # Enabling TCP Keepalives prevents this from happening.
  9. #
  10. # Overall state of TCP Keepalives, enable (1 or True), disable (0 or False)
  11. # or leave to the OS defaults (-1), on Linux, typically disabled. Default True, enabled.
  12. #tcp_keepalive: True
  13. #
  14. # How long before the first keepalive should be sent in seconds. Default 300
  15. # to send the first keepalive after 5 minutes, OS default (-1) is typically 7200 seconds
  16. # on Linux see /proc/sys/net/ipv4/tcp_keepalive_time.
  17. #tcp_keepalive_idle: 300
  18. #
  19. # How many lost probes are needed to consider the connection lost. Default -1
  20. # to use OS defaults, typically 9 on Linux, see /proc/sys/net/ipv4/tcp_keepalive_probes.
  21. #tcp_keepalive_cnt: -1
  22. #
  23. # How often, in seconds, to send keepalives after the first one. Default -1 to
  24. # use OS defaults, typically 75 seconds on Linux, see
  25. # /proc/sys/net/ipv4/tcp_keepalive_intvl.
  26. #tcp_keepalive_intvl: -1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement