blob: b0d19a0249f55f76a71e414f28bd9a99e5b34476 [file] [log] [blame]
Tim Windelschmidt6d33a432025-02-04 14:34:25 +01001// Copyright The Monogon Project Authors.
2// SPDX-License-Identifier: Apache-2.0
3
Jan Schär0f8ce4c2025-09-04 13:27:50 +02004package allocs
Lorenz Brun0e291a12023-06-01 12:22:45 +02005
6import "net"
7
8// These are IP addresses used by various parts of Metropolis.
9var (
10 // Used by //metropolis/node/kubernetes as the DNS server IP for containers.
11 // Link-local IP space, 77 for ASCII M(onogon), 53 for DNS port.
Jan Schär0f8ce4c2025-09-04 13:27:50 +020012 IPContainerDNS = net.IPv4(169, 254, 77, 53)
Lorenz Brun0e291a12023-06-01 12:22:45 +020013)