mirror of
https://github.com/Kiritow/wg-ops.git
synced 2024-03-22 13:11:37 +08:00
fix dns reloader
This commit is contained in:
parent
bb27ff9de4
commit
d246b74e24
|
@ -864,7 +864,7 @@ class Parser:
|
|||
if line.startswith('AllowedIPs'):
|
||||
current_allowed = line.split('=')[1].strip().split(',')
|
||||
if line.startswith('Endpoint'):
|
||||
current_endpoint = line.split('=')[1].strip().split(',')
|
||||
current_endpoint = line.split('=')[1].strip()
|
||||
|
||||
self.result_peers.append('[Peer]')
|
||||
|
||||
|
@ -911,7 +911,7 @@ class Parser:
|
|||
|
||||
if self.flag_enable_dns_reload and current_endpoint:
|
||||
task_uuid = str(uuid.uuid4())
|
||||
self.result_postup.append('systemd-run -u wg-ops-task-{}-dnsreload-{} --timer-property AccuracySec=10 --on-calendar *:*:0/30 /usr/bin/python3 {} {} {} {}'.format(
|
||||
self.result_postup.append('systemd-run -u wg-ops-task-{}-dnsreload-{} --collect --timer-property AccuracySec=10 --on-calendar *:*:0/30 /usr/bin/python3 {} {} {} {}'.format(
|
||||
self.wg_name, task_uuid, self.path_reload_dns, self.wg_name, current_pubkey, current_endpoint))
|
||||
self.flag_require_systemd_clean = True
|
||||
|
||||
|
@ -924,6 +924,7 @@ class Parser:
|
|||
self.result_postdown.append('ip rule del from {} lookup {}'.format(ip_cidr, current_lookup))
|
||||
|
||||
if self.flag_require_systemd_clean:
|
||||
self.result_postup.insert(0, 'systemctl stop wg-ops-task-{}-*'.format(self.wg_name))
|
||||
self.result_postdown.insert(0, 'systemctl stop wg-ops-task-{}-*'.format(self.wg_name))
|
||||
|
||||
def get_result(self):
|
||||
|
|
|
@ -15,16 +15,20 @@ if __name__ == "__main__":
|
|||
target_addr = sys.argv[3]
|
||||
|
||||
# resolve dns
|
||||
target_parts = target_addr.split(':')[0]
|
||||
target_parts = target_addr.split(':')
|
||||
target_host = target_parts[0]
|
||||
target_port = target_parts[1]
|
||||
target_ip = subprocess.check_output(["dig", "+short", target_host]).decode().strip()
|
||||
if not target_ip:
|
||||
sys.stderr.write('unable to resolve domain: {}\n'.format(target_host))
|
||||
exit(1)
|
||||
|
||||
target_endpoint = "{}:{}".format(target_ip, target_port)
|
||||
|
||||
# dump interface
|
||||
wg_raw_info = subprocess.check_output(["wg", "show", interface_name, "dump"]).decode().strip().split('\n')
|
||||
if not wg_raw_info:
|
||||
print('wireguard interface {} not found'.format(interface_name))
|
||||
sys.stderr.write('wireguard interface {} not found.\n'.format(interface_name))
|
||||
exit(1)
|
||||
|
||||
wg_raw_info = wg_raw_info[1:]
|
||||
|
@ -32,7 +36,7 @@ if __name__ == "__main__":
|
|||
|
||||
wg_info = [x for x in wg_info if x[0] == peer_pubkey]
|
||||
if not wg_info:
|
||||
print('wireguard interface {} peer {} not found.'.format(interface_name, peer_pubkey))
|
||||
sys.stderr.write('wireguard interface {} peer {} not found.\n'.format(interface_name, peer_pubkey))
|
||||
exit(1)
|
||||
|
||||
peer_info = wg_info[0]
|
||||
|
@ -44,4 +48,6 @@ if __name__ == "__main__":
|
|||
try:
|
||||
subprocess.check_call(["wg", "set", interface_name, "peer", peer_pubkey, "endpoint", target_endpoint])
|
||||
except Exception:
|
||||
print(traceback.format_exc())
|
||||
sys.stderr.write(traceback.format_exc())
|
||||
else:
|
||||
print('Endpoint matches: {}, skipping update.'.format(peer_endpoint))
|
||||
|
|
Loading…
Reference in New Issue
Block a user