1// SPDX-FileCopyrightText: Copyright The Lima Authors 2// SPDX-License-Identifier: Apache-2.0 3 4package networks 5 6const ( 7 SlirpNICName = "eth0" 8 // CIDR is intentionally hardcoded to 192.168.5.0/24, as each of QEMU has its own independent slirp network. 9 SlirpNetwork = "192.168.5.0/24" 10 SlirpGateway = "192.168.5.2" 11 SlirpIPAddress = "192.168.5.15" 12) 13 14