Update Real IP / DNS Mapping

This commit is contained in:
SukkaW
2026-03-17 16:20:30 +08:00
parent 937e21139d
commit baa08e25e4
4 changed files with 11 additions and 18 deletions

View File

@@ -61,10 +61,7 @@ export const LAN = {
},
LAN_WITHOUT_REAL_IP: {
dns: 'system',
hosts: {
'127.0.0.1.sslip.io': ['127.0.0.1'],
'127.atlas.skk.moe': ['127.0.0.1']
},
hosts: {},
realip: false,
ruleset: true,
domains: [
@@ -144,9 +141,7 @@ export const LAN = {
},
LAN_WITH_REALIP: {
dns: 'system',
hosts: {
// localhost: ['127.0.0.1']
},
hosts: {},
realip: true,
ruleset: true,
domains: [
@@ -159,9 +154,7 @@ export const LAN = {
// 'amplifi.lan',
// '$localhost',
'+localdomain',
'home.arpa',
'127.0.0.1.sslip.io',
'127.atlas.skk.moe'
'home.arpa'
]
}
} as const satisfies Record<string, DNSMapping>;