diff --git a/bundles/hetzner-cloud/metadata.py b/bundles/hetzner-cloud/metadata.py index e73592c..8484ddf 100644 --- a/bundles/hetzner-cloud/metadata.py +++ b/bundles/hetzner-cloud/metadata.py @@ -1,8 +1,27 @@ -# defaults = { -# 'network': { -# 'external': { -# 'gateway4': '172.31.1.1', -# 'gateway6': 'fe80::1', -# }, -# }, -# } +from ipaddress import ip_network, ip_interface + + +@metadata_reactor.provides( + 'systemd/units', +) +def network(metadata): + interface = ip_interface(metadata.get('network/internal/ipv4')) + network = ip_interface(f'{interface.ip}/24').network + gateway = network[1] + + return { + 'systemd': { + 'units': { + 'internal.network': { + f'Route#hetzner_gateway': { + 'Destination': str(gateway), + 'Scope': 'link', + }, + f'Route#hetzner_network': { + 'Destination': str(network), + 'Gateway': str(gateway), + }, + }, + }, + }, + } diff --git a/nodes/htz.games.py b/nodes/htz.games.py index c9d1b04..66eb3e0 100644 --- a/nodes/htz.games.py +++ b/nodes/htz.games.py @@ -3,6 +3,7 @@ 'groups': [ 'backup', 'debian-11', + 'hetzner-cloud', ], 'bundles': [ # 'steam', @@ -20,7 +21,7 @@ 'network': { 'internal': { 'interface': 'ens10', - 'ipv4': '10.0.10.3/24', + 'ipv4': '10.0.10.3/32', }, 'external': { 'interface': 'eth0', diff --git a/nodes/htz.mails.py b/nodes/htz.mails.py index 2ba2435..6896978 100644 --- a/nodes/htz.mails.py +++ b/nodes/htz.mails.py @@ -19,7 +19,7 @@ 'network': { 'internal': { 'interface': 'ens10', - 'ipv4': '10.0.10.2/24', + 'ipv4': '10.0.10.2/32', }, 'external': { 'interface': 'eth0',