
GCP快速开小鸡(台湾香港新加坡)
由饼书记强力支持,修改得
PROJECT_ID=$(gcloud config get-value project)
gcloud compute networks create all --project=$PROJECT_ID --subnet-mode=custom --mtu=1460 --bgp-routing-mode=global && gcloud compute networks subnets create all --project=$PROJECT_ID --range=10.1.0.0/20 --stack-type=IPV4_IPV6 --ipv6-access-type=EXTERNAL --network=all --region=asia-east1 && gcloud compute networks subnets create all --project=$PROJECT_ID --range=10.2.0.0/20 --stack-type=IPV4_IPV6 --ipv6-access-type=EXTERNAL --network=all --region=asia-east2 && gcloud compute networks subnets create all --project=$PROJECT_ID --range=10.3.0.0/20 --stack-type=IPV4_IPV6 --ipv6-access-type=EXTERNAL --network=all --region=asia-southeast1
创建实例之前需要对应子网(带V6),默认子网不带v6
黄色是VNC网络名称,绿色是子网名称
--region=
是地区参数,实例上也要对应,子网名字
配置防火墙
PROJECT_ID=$(gcloud config get-value project)
gcloud compute --project=$PROJECT_ID firewall-rules create ipv4-in --direction=INGRESS --priority=1000 --network=all --action=ALLOW --rules=all --source-ranges=0.0.0.0/0
gcloud compute --project=$PROJECT_ID firewall-rules create ipv4-out --direction=EGRESS --priority=1000 --network=all --action=ALLOW --rules=all --destination-ranges=0.0.0.0/0
gcloud compute --project=$PROJECT_ID firewall-rules create ipv6-in --direction=INGRESS --priority=1000 --network=all --action=ALLOW --rules=all --source-ranges=0::0/0
gcloud compute --project=PROJECT_ID firewall-rules create ipv6-out --direction=EGRESS --priority=1000 --network=all --action=ALLOW --rules=all --destination-ranges=0::0/0</code></pre><p style="text-align: start; ">注意子网名称,可以和上面对比</p><p style="text-align: start; "></p><h1 style="text-align: start; " id="%E5%88%9B%E5%BB%BA%E5%AE%9E%E4%BE%8B"><strong>创建实例</strong></h1><pre><code>SERVICE_ACCOUNT=(gcloud iam service-accounts list --filter=“displayName:Compute Engine default service account” --format=“value(email)”)
PROJECT_ID=$(gcloud config get-value project)
gcloud compute instances create tw --project=PROJECT_ID --zone=asia-east1-a --machine-type=e2-micro --network-interface=ipv6-network-tier=PREMIUM,network-tier=PREMIUM,stack-type=IPV4_IPV6,subnet=all --maintenance-policy=MIGRATE --provisioning-model=STANDARD --service-account=SERVICE_ACCOUNT --scopes=https://www.googleapis.com/auth/devstorage.read_only,https://www.googleapis.com/auth/logging.write,https://www.googleapis.com/auth/monitoring.write,https://www.googleapis.com/auth/servicecontrol,https://www.googleapis.com/auth/service.management.readonly,https://www.googleapis.com/auth/trace.append --create-disk=auto-delete=yes,boot=yes,device-name=tw,image=projects/debian-cloud/global/images/debian-11-bullseye-v20240515,mode=rw,size=10,type=projects/$PROJECT_ID/zones/asia-east1-a/diskTypes/pd-balanced --no-shielded-secure-boot --shielded-vtpm --shielded-integrity-monitoring --labels=goog-ec-src=vm_add-gcloud --reservation-affinity=any
gcloud compute instances create hk --project=PROJECT_ID --zone=asia-east2-a --machine-type=e2-micro --network-interface=ipv6-network-tier=PREMIUM,network-tier=PREMIUM,stack-type=IPV4_IPV6,subnet=all --maintenance-policy=MIGRATE --provisioning-model=STANDARD --service-account=SERVICE_ACCOUNT --scopes=https://www.googleapis.com/auth/devstorage.read_only,https://www.googleapis.com/auth/logging.write,https://www.googleapis.com/auth/monitoring.write,https://www.googleapis.com/auth/servicecontrol,https://www.googleapis.com/auth/service.management.readonly,https://www.googleapis.com/auth/trace.append --create-disk=auto-delete=yes,boot=yes,device-name=hk,image=projects/debian-cloud/global/images/debian-11-bullseye-v20240515,mode=rw,size=10,type=projects/$PROJECT_ID/zones/asia-east2-a/diskTypes/pd-balanced --no-shielded-secure-boot --shielded-vtpm --shielded-integrity-monitoring --labels=goog-ec-src=vm_add-gcloud --reservation-affinity=any
gcloud compute instances create sg --project=PROJECT_ID --zone=asia-southeast1-a --machine-type=e2-micro --network-interface=ipv6-network-tier=PREMIUM,network-tier=PREMIUM,stack-type=IPV4_IPV6,subnet=all --maintenance-policy=MIGRATE --provisioning-model=STANDARD --service-account=SERVICE_ACCOUNT --scopes=https://www.googleapis.com/auth/devstorage.read_only,https://www.googleapis.com/auth/logging.write,https://www.googleapis.com/auth/monitoring.write,https://www.googleapis.com/auth/servicecontrol,https://www.googleapis.com/auth/service.management.readonly,https://www.googleapis.com/auth/trace.append --create-disk=auto-delete=yes,boot=yes,device-name=sg,image=projects/debian-cloud/global/images/debian-11-bullseye-v20240515,mode=rw,size=10,type=projects/$PROJECT_ID/zones/asia-southeast1-a/diskTypes/pd-balanced --no-shielded-secure-boot --shielded-vtpm --shielded-integrity-monitoring --labels=goog-ec-src=vm_add-gcloud --reservation-affinity=any
下面是txt文件