Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
lima-vm
GitHub Repository: lima-vm/lima
Path: blob/master/pkg/networks/const.go
2601 views
1
// SPDX-FileCopyrightText: Copyright The Lima Authors
2
// SPDX-License-Identifier: Apache-2.0
3
4
package networks
5
6
const (
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