X-Git-Url: https://git.distorted.org.uk/~mdw/tripe/blobdiff_plain/9cda68ab3974b1f2c08a5896929890bf4a973e9a..1c4623dde993c3ef57ff6f8f3e1608073325fa37:/peerdb/peers.in diff --git a/peerdb/peers.in b/peerdb/peers.in index 5e381bdd..25a14428 100644 --- a/peerdb/peers.in +++ b/peerdb/peers.in @@ -34,16 +34,6 @@ ifname = vpn-$(name) ;; script is good for Linux hosts. ifup = /usr/sbin/tripe-ifup -;; every: interval for checking that this connection is alive. -every = 2m - -;; timeout: how long to wait for a ping response before giving up. -timeout = 10s - -;; retries: how many ping attempts to make before declaring the connection -;; dead. -retries = 5 - ;;;-------------------------------------------------------------------------- ;;; Active-peers defaults. ;;; @@ -68,13 +58,31 @@ host = override-me peer = INET $[$(host)] $(port) ;;;-------------------------------------------------------------------------- +;;; Temporary association defaults. +;;; +;;; These are settings common to both dynamic and passive peers. + +[@WATCH] +@inherit = @GLOBAL + +;; watch: whether to watch this connection and drop it if it dies. +watch = t + +;; timeout: how long to wait for a ping response before giving up. +timeout = 10s + +;; retries: how many ping attempts to make before declaring the connection +;; dead. +retries = 5 + +;;;-------------------------------------------------------------------------- ;;; Dynamic-peers defaults. ;;; ;;; The parameters here affect peers to whom dynamic connections are made. ;;; The user and connect parameters probably need customizing. [@DYNAMIC] -@inherit = @ACTIVE +@inherit = @ACTIVE, @WATCH ;; cork: whether to wait for a key-exchange packet from the peer before ;; sending one of our own. @@ -85,14 +93,17 @@ ssh-user = tripe ;; connect: shell command to use to wake up the remote peer and establish the ;; connection. -connect = ssh -q $(ssh-user)@$[$(host)] +connect = ssh -q $(ssh-user)@$[$(host)] hello + +;; disconnect: shell command to use to shut the remote peer down. +disconnect = ssh -q $(ssh-user)@$[$(host)] goodbye ;; keepalive: how often to send NOP packets to keep the connection alive, at ;; least in the minds of intermediate stateful firewalls and NAT routers. keepalive = 2m -;; watch: whether to watch this connection and retry it if it drops. -watch = t +;; every: interval for checking that this connection is alive. +every = 30s ;;;-------------------------------------------------------------------------- ;;; Passive-peers defaults. @@ -102,7 +113,7 @@ watch = t ;;; of the parameters and these defaults are probably pretty good. [@PASSIVE] -@inherit = @GLOBAL +@inherit = @WATCH ;; peer: mark this entry as being a passive peer. peer = PASSIVE @@ -115,7 +126,8 @@ mobile = t ;; the CONNECT service. user = $(name) -;; watch: whether to watch this connection and drop it if it dies. -watch = t +;; every: interval for checking that this connection is alive: should be at +;; least twice as long as the dynamic peer interval. +every = 5m ;;;----- That's all, folks --------------------------------------------------