Files
cloudpods/pkg/apis/compute/network_const.go
2023-03-26 19:29:10 +08:00

108 lines
2.8 KiB
Go

// Copyright 2019 Yunion
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package compute
import (
"time"
"yunion.io/x/cloudmux/pkg/apis/compute"
)
const (
DefaultDNSServers = "223.5.5.5,223.6.6.6"
)
const (
// # DEFAULT_BANDWIDTH = options.default_bandwidth
MAX_BANDWIDTH = 100000
NETWORK_TYPE_GUEST = compute.NETWORK_TYPE_GUEST
NETWORK_TYPE_BAREMETAL = "baremetal"
NETWORK_TYPE_CONTAINER = "container"
NETWORK_TYPE_PXE = "pxe"
NETWORK_TYPE_IPMI = "ipmi"
NETWORK_TYPE_EIP = "eip"
STATIC_ALLOC = "static"
MAX_NETWORK_NAME_LEN = 11
EXTRA_DNS_UPDATE_TARGETS = "__extra_dns_update_targets"
NETWORK_STATUS_INIT = "init"
NETWORK_STATUS_PENDING = compute.NETWORK_STATUS_PENDING
NETWORK_STATUS_AVAILABLE = compute.NETWORK_STATUS_AVAILABLE
NETWORK_STATUS_UNAVAILABLE = compute.NETWORK_STATUS_UNAVAILABLE
NETWORK_STATUS_FAILED = "failed"
NETWORK_STATUS_UNKNOWN = "unknown"
NETWORK_STATUS_START_DELETE = "start_delete"
NETWORK_STATUS_DELETING = compute.NETWORK_STATUS_DELETING
NETWORK_STATUS_DELETED = "deleted"
NETWORK_STATUS_DELETE_FAILED = "delete_failed"
)
const (
NETWORK_DRIVER_VIRTIO = "virtio"
NETWORK_DRIVER_E1000 = "e1000"
NETWORK_DRIVER_VMXNET3 = "vmxnet3"
NETWORK_DRIVER_VFIO = "vfio-pci"
)
var (
ALL_NETWORK_TYPES = []string{
NETWORK_TYPE_GUEST,
NETWORK_TYPE_BAREMETAL,
NETWORK_TYPE_CONTAINER,
NETWORK_TYPE_PXE,
NETWORK_TYPE_IPMI,
NETWORK_TYPE_EIP,
}
REGIONAL_NETWORK_PROVIDERS = []string{
CLOUD_PROVIDER_HUAWEI,
CLOUD_PROVIDER_HCSO,
CLOUD_PROVIDER_HCSOP,
CLOUD_PROVIDER_HCS,
CLOUD_PROVIDER_CTYUN,
CLOUD_PROVIDER_UCLOUD,
CLOUD_PROVIDER_GOOGLE,
CLOUD_PROVIDER_OPENSTACK,
CLOUD_PROVIDER_JDCLOUD,
CLOUD_PROVIDER_H3C,
}
)
type IPAllocationDirection string
const (
IPAllocationStepdown IPAllocationDirection = "stepdown"
IPAllocationStepup IPAllocationDirection = "stepup"
IPAllocationRadnom IPAllocationDirection = "random"
IPAllocationNone IPAllocationDirection = "none"
IPAllocationDefault = ""
)
type SNetworkUsedAddress struct {
IpAddr string
MacAddr string
Owner string
OwnerId string
OwnerStatus string
OwnerType string
AssociateId string
AssociateType string
CreatedAt time.Time
}