Merge pull request 'nodes/home.router: add dhcp and ipv6 to DMZ' (#26) from kunsi-dmz-dhcp into main
All checks were successful
bundlewrap/pipeline/head This commit looks good

Reviewed-on: https://git.kunsmann.eu/kunsi/bundlewrap/pulls/26
This commit is contained in:
Franzi 2021-02-19 12:02:46 +00:00
commit bb661b391b

View file

@ -46,17 +46,31 @@ nodes['home.router'] = {
},
'dhcpd': {
'subnets': {
'dmz': {
'interface': 'enp1s0.23',
'netmask': '255.255.255.0',
'range_lower': '172.19.139.200',
'range_higher': '172.19.139.250',
'subnet': '172.19.139.0',
'options': {
'broadcast-address': '172.19.139.255',
'domain-name-servers': '172.19.139.1',
'routers': '172.19.131.1',
'subnet-mask': '255.255.255.0',
},
},
'home': {
'subnet': '172.19.138.0',
'interface': 'enp1s0.42',
'netmask': '255.255.255.0',
'range_lower': '172.19.138.100',
'range_higher': '172.19.138.250',
'interface': 'enp1s0.42',
'subnet': '172.19.138.0',
'options': {
'routers': '172.19.138.1',
'domain-name-servers': '172.19.138.1',
'domain-name': 'franzi-home.kunbox.net',
'broadcast-address': '172.19.138.255',
'domain-name': 'franzi-home.kunbox.net',
'domain-name-servers': '172.19.138.1',
'domain-search': 'home.kunbox.net',
'routers': '172.19.138.1',
'subnet-mask': '255.255.255.0',
},
},
@ -99,6 +113,7 @@ nodes['home.router'] = {
},
'radvd': {
'interfaces': {
'enp1s0.23': {},
'enp1s0.42': {},
},
},
@ -143,6 +158,7 @@ nodes['home.router'] = {
'wide-dhcp6c': {
'source': 'ppp0',
'targets': {
'enp1s0.23': '2',
'enp1s0.42': '1',
},
},