Tinc Debugging
Um Tinc besser Debuggen zu können kann man das syslog einfach in den Hintergrund schreiben und mittels killall -USR2 tincd anstupsen. Das sieht dann folgender massen aus. 
tail -F /var/log/syslog &
...
killall -USR2 tincd
srv01 tinc.vpn[28369]: Statistics for Linux tun/tap device (tun mode) /dev/net/tun:
srv01 tinc.vpn[28369]:  total bytes in:         294
srv01 tinc.vpn[28369]:  total bytes out:        294
srv01 tinc.vpn[28369]: Nodes:
srv01 tinc.vpn[28369]:  srv02 at 1.2.3.4 port 655 cipher 91 digest 64 maclength 4 compression 0 options d status 003a nexthop srv01 via srv01 pmtu 1451 (min 1451 max 1451)
srv01 tinc.vpn[28369]: End of nodes.
srv01 tinc.vpn[28369]: Edges:
srv01 tinc.vpn[28369]:  srv02 to srv01 at 1.2.3.4 port 655 options d weight 328
srv01 tinc.vpn[28369]:  srv01 to srv02 at 1.2.3.5 port 655 options d weight 328
srv01 tinc.vpn[28369]: End of edges.
srv01 tinc.vpn[28369]: Subnet list:
srv01 tinc.vpn[28369]:  192.168.0.0/24#10 owner srv01
srv01 tinc.vpn[28369]: End of subnet list.
Mit fg und STRG + C kann man das teil -F wieder aus dem Hintergrund holen und beenden. 
Tags: Tinc