PCNE • Practice Test 6
Free PCNE practice test — 10 questions with explanations. Set 6. No signup required.
An engineer creates a Cloud NAT configuration as shown in the exhibit. The test-instance is created without an external IP address. However, the instance cannot reach the internet. What is the most likely cause?
Refer to the exhibit.
```
gcloud compute routers create nat-router \
--network=my-vpc \
--region=us-central1
gcloud compute routers nats create nat-config \
--router=nat-router \
--region=us-central1 \
--nat-external-ip-pool=ip-address-1 \
--nat-all-subnet-ip-ranges \
--enable-logging
gcloud compute instances create test-instance \
--zone=us-central1-a \
--network=my-vpc \
--subnet=subnet-a \
--no-address
```