13 lines
405 B
Text
13 lines
405 B
Text
|
#!/bin/bash
|
||
|
|
||
|
# We need to send some traffic over the wireguard tunnel to make sure
|
||
|
# it gets connected. Easiest way is to simply send some pings to the
|
||
|
# other side.
|
||
|
|
||
|
% for peer, config in node.metadata.get('wireguard', {}).get('peers', {}).items():
|
||
|
% for ip in sorted(config['ips']):
|
||
|
# refresh connection to ${peer} ${ip}
|
||
|
/usr/bin/ping -c 4 ${ip.split('/')[0] if '/' in ip else ip}
|
||
|
% endfor
|
||
|
% endfor
|