bvm-ipfs: add public IPv4/v6 addresses

This commit is contained in:
Luke Granger-Brown 2021-04-18 16:04:25 +00:00
parent fd2b47acf9
commit 42e8b1eed0
4 changed files with 33 additions and 5 deletions

View file

@ -2,7 +2,7 @@
#
# SPDX-License-Identifier: Apache-2.0
{ ... }:
{ config, ... }:
{
imports = [
../lib/bvm.nix
@ -16,6 +16,21 @@
interfaces.enp1s0 = {
ipv4.addresses = [{ address = "10.100.0.203"; prefixLength = 23; }];
};
interfaces.enp6s0 = {
ipv4.addresses = [{ address = "92.118.28.4"; prefixLength = 24; }];
ipv6.addresses = [{ address = "2a09:a441::4"; prefixLength = 32; }];
};
defaultGateway = { address = "92.118.28.1"; interface = "enp6s0"; };
defaultGateway6 = { address = "2a09:a441::1"; interface = "enp6s0"; };
firewall.allowedTCPPorts = [
# IPFS
4001
];
firewall.allowedUDPPorts = [
# IPFS
4001
];
};
my.ip.tailscale = "100.73.206.41";
@ -24,6 +39,16 @@
dataDir = "/store/ipfs";
extraConfig = {
Experimental.FilestoreEnabled = true;
Addresses.API = [
"/ip4/127.0.0.1/tcp/5001"
"/ip4/10.100.0.203/tcp/5001"
"/ip4/${config.my.ip.tailscale}/tcp/5001"
];
Addresses.Gateway = [
"/ip4/127.0.0.1/tcp/8080"
"/ip4/10.100.0.203/tcp/8080"
"/ip4/${config.my.ip.tailscale}/tcp/8080"
];
};
};

View file

@ -3,12 +3,13 @@
; SPDX-License-Identifier: Apache-2.0
; MNAME RNAME SERIAL REFRESH RETRY EXPIRE TTL
@ 600 IN SOA frantech-lux01.as205479.net. hostmaster.lukegb.com. 6 600 450 3600 300
@ 600 IN SOA frantech-lux01.as205479.net. hostmaster.lukegb.com. 7 600 450 3600 300
$INCLUDE tmpl.ns
2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 3600 IN PTR bvm-korobi.public.as205479.net.
3.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 3600 IN PTR bvm-prosody.public.as205479.net.
4.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 3600 IN PTR bvm-ipfs.public.as205479.net.
1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 3600 IN PTR gw.public.as205479.net.
e.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 3600 IN PTR blade-paris.public.as205479.net.
f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 3600 IN PTR blade-tuvok.public.as205479.net.

View file

@ -3,7 +3,7 @@
; SPDX-License-Identifier: Apache-2.0
; MNAME RNAME SERIAL REFRESH RETRY EXPIRE TTL
@ 600 IN SOA frantech-lux01.as205479.net. hostmaster.lukegb.com. 5 600 450 3600 300
@ 600 IN SOA frantech-lux01.as205479.net. hostmaster.lukegb.com. 6 600 450 3600 300
$INCLUDE tmpl.ns
@ -11,7 +11,7 @@ $INCLUDE tmpl.ns
1 600 IN PTR gw.public.as205479.net.
2 600 IN PTR bvm-korobi.public.as205479.net.
3 600 IN PTR bvm-prosody.public.as205479.net.
4 600 IN PTR 92-118-28-4.ptr.as205479.net.
4 600 IN PTR bvm-ipfs.public.as205479.net.
5 600 IN PTR 92-118-28-5.ptr.as205479.net.
6 600 IN PTR 92-118-28-6.ptr.as205479.net.
7 600 IN PTR 92-118-28-7.ptr.as205479.net.

View file

@ -3,7 +3,7 @@
; SPDX-License-Identifier: Apache-2.0
; MNAME RNAME SERIAL REFRESH RETRY EXPIRE TTL
@ 600 IN SOA frantech-lux01.as205479.net. hostmaster.lukegb.com. 15 600 450 3600 300
@ 600 IN SOA frantech-lux01.as205479.net. hostmaster.lukegb.com. 16 600 450 3600 300
; NB: this are also glue records in Google Domains.
$INCLUDE tmpl.ns
@ -119,6 +119,8 @@ bvm-korobi.public 3600 IN A 92.118.28.2
bvm-korobi.public 3600 IN AAAA 2a09:a441::2
bvm-prosody.public 3600 IN A 92.118.28.3
bvm-prosody.public 3600 IN AAAA 2a09:a441::3
bvm-ipfs.public 3600 IN A 92.118.28.4
bvm-ipfs.public 3600 IN AAAA 2a09:a441::4
92-118-28-0.ptr 6000 IN A 92.118.28.0
92-118-28-1.ptr 6000 IN A 92.118.28.1