nodes/home.router: add dhcp and ipv6 to DMZ
This commit is contained in:
parent
8ac9b2f204
commit
debabe85b0
1 changed files with 21 additions and 5 deletions
|
@ -46,17 +46,31 @@ nodes['home.router'] = {
|
||||||
},
|
},
|
||||||
'dhcpd': {
|
'dhcpd': {
|
||||||
'subnets': {
|
'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': {
|
'home': {
|
||||||
'subnet': '172.19.138.0',
|
'interface': 'enp1s0.42',
|
||||||
'netmask': '255.255.255.0',
|
'netmask': '255.255.255.0',
|
||||||
'range_lower': '172.19.138.100',
|
'range_lower': '172.19.138.100',
|
||||||
'range_higher': '172.19.138.250',
|
'range_higher': '172.19.138.250',
|
||||||
'interface': 'enp1s0.42',
|
'subnet': '172.19.138.0',
|
||||||
'options': {
|
'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',
|
'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',
|
'subnet-mask': '255.255.255.0',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -99,6 +113,7 @@ nodes['home.router'] = {
|
||||||
},
|
},
|
||||||
'radvd': {
|
'radvd': {
|
||||||
'interfaces': {
|
'interfaces': {
|
||||||
|
'enp1s0.23': {},
|
||||||
'enp1s0.42': {},
|
'enp1s0.42': {},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -143,6 +158,7 @@ nodes['home.router'] = {
|
||||||
'wide-dhcp6c': {
|
'wide-dhcp6c': {
|
||||||
'source': 'ppp0',
|
'source': 'ppp0',
|
||||||
'targets': {
|
'targets': {
|
||||||
|
'enp1s0.23': '2',
|
||||||
'enp1s0.42': '1',
|
'enp1s0.42': '1',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue