fix(meiling): netmask

This commit is contained in:
arcnmx 2025-09-09 05:24:17 -07:00
parent b70430a4a6
commit ceea71c77a
10 changed files with 137 additions and 21 deletions

View file

@ -26,7 +26,7 @@
[IPv6Prefix]
AddressAutoconfiguration=false
Prefix=fd0c::/64
Prefix=fd0c:0:0:2::/64
Assign=true
[IPv6AcceptRA]

View file

@ -15,15 +15,15 @@
network.networks = {
global = {
address4 = "49.12.128.117";
address6 = null;
address6 = "2a01:4f8:242:598d::4";
};
local = {
inherit (config.network.networks.global) address4;
address6 = null;
};
int = {
address4 = "10.9.1.4";
address6 = "fd0c::4";
address4 = "10.9.2.4";
address6 = "fd0c:0:0:2::4";
};
tail = {
address4 = "100.67.99.30";

View file

@ -1,4 +1,5 @@
net.ipv4.ping_group_range=0 2147483647
net.ipv4.ip_forward=1
# https://github.com/quic-go/quic-go/wiki/UDP-Buffer-Sizes
net.core.rmem_max=2500000
net.core.wmem_max=2500000