Question 1mediummultiple choice
Read the full Implementing a Virtual Private Cloud explanation →PCNE Implementing a Virtual Private Cloud • Complete Question Bank
Complete PCNE Implementing a Virtual Private Cloud question bank — all 0 questions with answers and detailed explanations.
Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag a concept onto its matching description — or click a concept then click the description.
Unique autonomous system number for the router
MED value to influence inbound traffic
IP address of the BGP peer
ASN of the BGP peer
Time between BGP keepalive messages
$ gcloud compute firewall-rules describe allow-internal allows: - IPProtocol: tcp ports: - 0-65535 - IPProtocol: udp ports: - 0-65535 - IPProtocol: icmp direction: INGRESS disabled: false name: allow-internal network: default priority: 1000 sourceRanges: - 10.128.0.0/14 targetTags: - internal
$ gcloud compute networks subnets describe my-subnet --region=us-central1 creationTimestamp: '2023-01-01' enableFlowLogs: false fingerprint: ... gatewayAddress: 10.0.0.1 id: ... ipCidrRange: 10.0.0.0/24 kind: compute#subnetwork name: my-subnet network: https://www.googleapis.com/compute/v1/projects/my-project/global/networks/my-vpc privateIpGoogleAccess: false region: https://www.googleapis.com/compute/v1/projects/my-project/regions/us-central1 stackType: IPV4_ONLY
$ gcloud compute routers describe my-router --region=us-central1 bgp: asn: 65000 advertiseMode: DEFAULT advertisedGroups: - ALL_SUBNETS advertisedIpRanges: - range: 10.0.0.0/16 - range: 10.1.0.0/16 keepaliveInterval: 20 session Range: 169.254.0.0/16 bgpPeers: - interfaceName: vpn-tunnel-1 ipAddress: 169.254.0.1 peerIpAddress: 169.254.0.2 peerAsn: 65001 advertisedRoutePriority: 100 status: UP statusReason: '' - interfaceName: vpn-tunnel-2 ipAddress: 169.254.0.5 peerIpAddress: 169.254.0.6 peerAsn: 65001 advertisedRoutePriority: 100 status: DOWN statusReason: 'Connectivity error'
NAME NETWORK DIRECTION PRIORITY ALLOW DENY default-allow-icmp my-vpc INGRESS 65534 icmp default-allow-ssh my-vpc INGRESS 65534 tcp:22 default-allow-rdp my-vpc INGRESS 65534 tcp:3389 allow-custom-internal my-vpc INGRESS 1000 tcp:80,443 deny-all-egress my-vpc EGRESS 1000 all