Courseiva

CCNA Networking Questions

43 of 118 questions · Page 2/2 · Networking topic · Answers revealed

76
MCQeasy

What is the maximum number of VCNs allowed per region in an OCI tenancy by default (subject to service limits)?

A.50 (default service limit)
B.1
C.Unlimited
D.5
AnswerA

The default VCN service limit per region is 50.

Why this answer

The default service limit for VCNs per region in an OCI tenancy is typically 50, but can be increased upon request.

77
MCQeasy

Which OCI service provides authoritative Domain Name System (DNS) management and allows you to host public and private DNS zones?

B.OCI VCN Resolver
C.OCI DNS
D.OCI Traffic Management
AnswerC

OCI DNS provides resilient, scalable public and private domain name resolution.

Why this answer

OCI DNS is the managed Domain Name System service that enables customers to create and manage public and private DNS zones.

78
MCQhard

An OCI customer has configured an IPSec VPN tunnel between their on-premises datacenter and an OCI DRG. The tunnel status in the OCI Console shows as 'DOWN'. The customer verifies that the public IP of the CPE is correct and internet connectivity works. What is the most likely cause of the tunnel being down?

A.Mismatched IKE security parameters (Phase 1 or Phase 2) or blocked UDP ports 500/4500 on the firewall.
B.The NAT Gateway is misconfigured.
C.The FastConnect virtual circuit is disabled.
D.The VCN subnet route table is missing a route to 0.0.0.0/0.
AnswerA

IPSec negotiation fails if Phase 1 or Phase 2 settings (encryption, hashing, DH groups) do not match on both ends, or if ISAKMP/IPSec ports are blocked.

Why this answer

VPN tunnel down status is commonly caused by mismatched IKE security parameters (Phase 1/Phase 2 pre-shared key, encryption/authentication algorithms, Diffie-Hellman groups) or blocked UDP ports 500/4500 on local firewalls.

79
MCQeasy

What is the primary function of an OCI Dynamic Routing Gateway (DRG)?

A.To provide public internet access for public subnets.
B.To load balance web requests across backend servers.
C.To provide access to regional Object Storage.
D.To provide a private connection between your VCN and on-premises networks or other VCNs.
AnswerD

DRGs serve as the gateway for hybrid cloud and VCN transit routing.

Why this answer

A DRG is a virtual router that provides a path for private traffic between your VCN and on-premises networks (via FastConnect or Site-to-Site VPN) or other VCNs.

80
MCQhard

An OCI architect configures a DRG with transit routing, connecting VCN-A and Vcn-B to the DRG. Both VCNs need to communicate with the on-premises datacenter connected via FastConnect. However, VCN-A instances can reach on-premises, but Vcn-B cannot. What is the most likely misconfiguration in the DRG?

A.The DRG attachment for Vcn-B is associated with a DRG route table that lacks the import route distribution for the on-premises network.
B.VCN CIDRs must be identical for transit routing to function.
C.FastConnect only supports a single VCN attachment at a time.
D.Vcn-B must use an Internet Gateway instead of a DRG.
AnswerA

DRG route tables and import/export distributions govern transit routing between attachments.

Why this answer

In DRG version 2, route distribution and DRG route tables control traffic between attachments. If Vcn-B cannot reach on-premises, its DRG attachment is likely associated with a DRG route table that lacks import routes for the on-premises attachment, or vice versa.

81
Multi-Selecthard

Which THREE characteristics of OCI Security Lists are correct?

Select 3 answers
A.Security list rules are stateful by default.
B.Security lists are applied at the subnet level.
C.Security lists support stateless rules as an option.
D.A subnet can have a maximum of only one security list.
E.Security lists can be assigned to individual VNICs independently of subnets.
AnswersA, B, C

Stateful rules automatically allow return traffic for established connections.

Why this answer

Security lists are virtual firewalls applied at the subnet level, they are stateful by default (though stateless can be configured), and their rules apply to all VNICs in the subnet.

82
MCQhard

An administrator created a private subnet and attached a route table with a rule pointing 0.0.0.0/0 to a NAT Gateway. However, instances in this subnet cannot download OS updates from external public repositories. What should the administrator check first?

A.Check if the instances have public IP addresses assigned.
B.Check if an Internet Gateway is also attached to the VCN.
C.Check the subnet security lists or NSGs for a matching egress rule allowing outbound traffic to the internet.
D.Check if a Service Gateway is attached to the VCN.
AnswerC

Security rules govern traffic flow; outbound packets must be allowed by security list egress rules or NSGs.

Why this answer

Security lists or NSGs associated with the private subnet must have an egress rule allowing outbound traffic to 0.0.0.0/0 (all ports or specific ports like 80/443). Without matching egress rules, traffic hitting the NAT gateway will be dropped.

83
MCQmedium

You are configuring an OCI Load Balancer and need to distribute incoming requests across backend servers based on the client's source IP address so that requests from the same client always go to the same backend server. Which load balancing policy should you choose?

A.Least Connections
B.Random
C.Weighted Round Robin
D.IP Hash
AnswerD

IP Hash policy ensures sticky sessions based on client source IP.

Why this answer

The IP Hash load balancing policy hashes the client's source IP address to route requests from the same client to the same backend server, ensuring session persistence.

84
MCQmedium

You are planning IP address allocation for a multi-tier application in OCI. You create a VCN with CIDR 172.16.0.0/16. You need three subnets: web (100 hosts), app (200 hosts), and database (50 hosts). Which combination of subnet CIDRs is valid and non-overlapping?

A.Web: 10.0.1.0/24, App: 10.0.2.0/24, DB: 10.0.3.0/24
B.Web: 172.16.1.0/24, App: 172.16.2.0/24, DB: 172.16.3.0/26
C.Web: 172.16.0.0/15, App: 172.16.0.0/16, DB: 172.16.1.0/24
D.Web: 172.16.1.0/24, App: 172.16.1.0/24, DB: 172.16.3.0/24
AnswerB

These CIDRs are non-overlapping, fit within 172.16.0.0/16, and provide enough hosts for each tier.

Why this answer

Subnet CIDRs must be non-overlapping and sized appropriately. For example, 172.16.1.0/24 (256 addresses), 172.16.2.0/24 (256 addresses), and 172.16.3.0/26 (64 addresses) fit within 172.16.0.0/16 without overlapping.

85
MCQeasy

What is the smallest IPv4 CIDR block size supported for an OCI Virtual Cloud Network (VCN)?

A./30
B./24
C./32
D./8
AnswerA

OCI supports VCN sizes ranging from /16 to /30.

Why this answer

The smallest VCN CIDR block supported by OCI is /30, and the largest is /16.

86
MCQmedium

You are deploying a Public Load Balancer in OCI to distribute incoming web traffic across multiple backend compute instances in different availability domains. You notice that backend health checks are failing. Which component's configuration should you check first to ensure health check probes can reach the backend instances?

A.The Service Gateway rules to enable Oracle Object Storage communication.
B.The Internet Gateway route table associated with the private subnets.
C.Security lists or Network Security Groups of the backend instances to allow traffic from the Load Balancer subnet.
D.The Dynamic Routing Gateway route table to ensure BGP routes are propagated.
AnswerC

Backend instance firewall rules (Security Lists/NSGs) must permit ingress traffic coming from the Load Balancer.

Why this answer

Load Balancer backend health checks originate from the Load Balancer's subnet. Security Lists or NSGs attached to the backend instances must allow inbound traffic from the Load Balancer subnet on the backend application ports and health check ports.

87
MCQmedium

You have a web application behind an OCI Public Load Balancer. You want to restrict access so that only clients coming from a specific corporate external IP address range can access your application. Where should you configure this restriction?

A.Database security groups
B.Service Gateway route table
C.Load Balancer Access Control Rules (Rule Sets) or Security Lists on the Load Balancer subnet
D.NAT Gateway routing rules
AnswerC

Access control rules in load balancer rule sets or security lists can restrict traffic by source IP CIDR.

Why this answer

To restrict incoming traffic based on client IP addresses at the load balancer level, you can configure Load Balancer Rule Sets (such as access control rules / IP filtering) or use Security Lists/NSGs on the load balancer subnet.

88
MCQmedium

You are designing a Disaster Recovery architecture where VCN-1 in the Ashburn region needs to peer with VCN-2 in the Phoenix region. Which OCI networking construct is required to achieve this cross-region peering?

A.Dynamic Routing Gateway (DRG)
B.Local Peering Gateway (LPG)
D.Internet Gateway
AnswerA

DRG version 2 supports cross-region VCN peering and transit routing.

Why this answer

Cross-region VCN peering requires a Dynamic Routing Gateway (DRG) attached to each VCN, and a remote peering connection established between the two DRGs.

89
MCQmedium

You are setting up OCI DNS and want to configure a zone transfer (AXFR) from your on-premises DNS server to OCI Private DNS. Which feature enables secondary DNS functionality in OCI?

A.NAT Gateway port forwarding for DNS ports
B.Internet Gateway DNS proxy
C.OCI DNS Secondary DNS feature with TSIG key authentication
D.Service Gateway DNS resolver
AnswerC

Secondary DNS configuration allows zone transfers between on-premises and OCI DNS.

Why this answer

OCI DNS supports secondary DNS configurations where OCI acts as a primary or secondary DNS server for zones, supporting zone transfers.

90
MCQeasy

Which OCI networking component is automatically created when you provision a Virtual Cloud Network using the VCN Wizard with 'Internet Connectivity'?

A.Internet Gateway
B.Dynamic Routing Gateway
C.Local Peering Gateway
D.FastConnect Virtual Circuit
AnswerA

The VCN Wizard automatically provisions an Internet Gateway for public subnet traffic.

Why this answer

The VCN Wizard with internet connectivity automatically sets up a VCN, a public subnet, a private subnet, an Internet Gateway, a NAT Gateway, and a Service Gateway.

91
Multi-Selecthard

Which THREE components are required when configuring an OCI FastConnect direct peering connection?

Select 3 answers
A.Internet Gateway
B.Physical cross-connect or partner provider connection
C.Dynamic Routing Gateway (DRG)
D.Local Peering Gateway (LPG)
E.FastConnect Virtual Circuit
AnswersB, C, E

Physical connectivity is required either via colocation cross-connect or a FastConnect partner.

Why this answer

A FastConnect direct peering connection requires a Dynamic Routing Gateway (DRG) attached to your VCN, a FastConnect virtual circuit, and a physical cross-connect or partner connection setup.

92
MCQeasy

What is the primary purpose of an OCI Service Gateway?

A.To load balance HTTP traffic across backend servers.
B.To provide internet access to public subnets.
C.To privately connect a VCN to Oracle services like Object Storage without using the public internet.
D.To connect on-premises datacenters to cloud subnets.
AnswerC

Service Gateways keep traffic within the Oracle network backbone when accessing regional Oracle services.

Why this answer

A Service Gateway enables private connectivity from a VCN to Oracle services in the Oracle Services Network without traversing the public internet.

93
MCQeasy

What is the maximum MTU (Maximum Transmission Unit) supported on standard OCI VCN virtual network interfaces (VNICs)?

A.576 bytes
B.9000 bytes (Jumbo Frames)
C.1500 bytes
D.65535 bytes
AnswerB

OCI supports jumbo frames with up to 9000 bytes MTU for high-throughput workloads.

Why this answer

Standard OCI VNICs support an MTU of 9000 bytes (Jumbo Frames), as well as the standard 1500 bytes.

94
MCQmedium

You are troubleshooting a web application where users intermittently experience 504 Gateway Timeout errors when connecting via the OCI Public Load Balancer. What is the most common cause related to the load balancer or backend configuration?

A.The Internet Gateway has exceeded its bandwidth limit.
B.The NAT Gateway is blocking incoming HTTP traffic.
C.The VCN route table is missing a default route.
D.Backend servers are taking longer to process requests than the load balancer idle timeout threshold.
AnswerD

Slow backend responses exceeding the timeout cause the load balancer to return a 504 error.

Why this answer

A 504 Gateway Timeout occurs when the load balancer does not receive a timely response from the backend servers within the configured idle timeout period.

95
MCQeasy

What is the primary difference between a public subnet and a private subnet in an OCI Virtual Cloud Network?

A.Private subnets require IPv6 addressing.
B.Public subnets have route table rules pointing to an Internet Gateway, while private subnets do not.
C.Private subnets cannot use Security Lists.
D.Public subnets cannot communicate with Oracle Database services.
AnswerB

This is the fundamental distinction defining public versus private subnets in OCI.

Why this answer

Public subnets have a route to an Internet Gateway, allowing instances within them to have public IP addresses and communicate with the public internet. Private subnets do not have routes to an Internet Gateway.

96
Multi-Selectmedium

Which TWO methods can be used to connect your on-premises datacenter to an OCI Virtual Cloud Network?

Select 2 answers
A.OCI FastConnect
B.Internet Gateway
C.OCI Site-to-Site VPN
D.Service Gateway
E.Local Peering Gateway
AnswersA, C

FastConnect provides dedicated, high-bandwidth private connectivity to OCI.

Why this answer

OCI offers FastConnect for dedicated private connections and Site-to-Site VPN for encrypted IPSec connections over the public internet.

97
MCQhard

Your organization requires that all database traffic originating from OCI subnets to Oracle Autonomous Database bypass the public internet and use private IP paths. You have configured a Service Gateway. What additional configuration is mandatory in the subnet route table?

A.No route table changes are required once the Service Gateway is attached to the VCN.
B.Add a route rule with destination service cidr (e.g. All Services in Oracle Services Network) and target as the Service Gateway.
C.Add a route rule pointing to the Dynamic Routing Gateway.
D.Add a route rule with destination 0.0.0.0/0 and target as the Service Gateway.
AnswerB

Route rules pointing to the Service Gateway are required to route Oracle Services traffic correctly.

Why this answer

To direct traffic to the Service Gateway, the subnet route table must have a route rule where the destination is the Oracle Services Network (or a specific service region prefix) and the target is the Service Gateway.

98
MCQmedium

An Oracle Cloud Infrastructure (OCI) architect needs to configure a Virtual Cloud Network (VCN) with a public subnet and a private subnet. Which configuration is required for resources in the private subnet to reach the public internet through a NAT Gateway?

A.Add a route in the private subnet route table with a destination of 0.0.0.0/0 and the target as the NAT Gateway.
B.Attach an Internet Gateway directly to the private subnet and add a security list rule allowing egress to 0.0.0.0/0.
C.Configure a Service Gateway with a route to 0.0.0.0/0.
D.Assign a public IP address to the instances within the private subnet.
AnswerA

This is the correct configuration to route outbound traffic from the private subnet to the NAT Gateway.

Why this answer

A NAT Gateway allows instances in a private subnet to initiate connections to the internet, but prevents inbound connections from the internet. The route table associated with the private subnet must have a route pointing 0.0.0.0/0 to the NAT Gateway.

99
MCQhard

You are troubleshooting a connectivity issue where an on-premises server is trying to reach an OCI compute instance via an IPsec VPN attached to a Dynamic Routing Gateway (DRG). The VPN tunnels are up, but traffic is dropped. Upon checking the VCN route table, you see a route pointing to the DRG, but the on-premises subnet CIDR is missing. What specific OCI construct must be updated to ensure return traffic from the VCN successfully routes back to the on-premises network?

A.The Security List must have a stateful egress rule allowing all protocols to the internet.
B.The Local Peering Gateway route table must map the on-premises subnet.
C.The NAT Gateway route table must be updated with the on-premises CIDR.
D.The VCN Route Table associated with the subnet must include a route rule with the destination as the on-premises CIDR and the target as the DRG.
AnswerD

Subnet route tables dictate how outbound and return traffic within the VCN is directed to gateways like the DRG.

Why this answer

The VCN route table associated with the compute instance's subnet must contain a route entry pointing the on-premises CIDR block to the DRG as the target.

100
MCQmedium

You are designing an architecture where instances in a private subnet need to send log data to an OCI Logging analytics endpoint, but must not have access to the general public internet. Which service should you leverage?

A.Internet Gateway
B.Local Peering Gateway
C.Service Gateway
AnswerC

Service Gateways provide secure, private connectivity to regional OCI services.

Why this answer

A Service Gateway enables private access to regional OCI services (such as Object Storage, Logging, and Database) without requiring internet access.

101
Multi-Selecthard

Which THREE components are required when configuring OCI VCN Remote Peering between two regions?

Select 3 answers
A.Local Peering Gateway (LPG)
B.Remote Peering Connection (RPC) between the two DRGs
C.Dynamic Routing Gateway (DRG) attached to VCN-1 in Region A
D.Dynamic Routing Gateway (DRG) attached to VCN-2 in Region B
E.Internet Gateway in both VCNs
AnswersB, C, D

An RPC establishes the peer connection between the two cross-region DRGs.

Why this answer

Remote VCN peering across regions requires a Dynamic Routing Gateway (DRG) attached to each VCN, a Remote Peering Connection (RPC) established between the two DRGs, and matching route table/security rules.

102
Multi-Selecteasy

Which TWO of the following are valid characteristics of OCI Virtual Cloud Networks (VCNs)?

Select 2 answers
A.A VCN can span multiple OCI geographic regions simultaneously.
B.A VCN is a regional resource that spans all Availability Domains in that region.
C.The maximum size of a VCN CIDR block is /8.
D.A VCN is restricted to a single Availability Domain by default.
E.You can assign multiple CIDR blocks to a single VCN after creation.
AnswersB, E

VCNs are regional constructs in OCI.

Why this answer

VCNs span all availability domains within a region and reside within a single OCI region.

103
Multi-Selectmedium

Which TWO components are involved when routing traffic from an OCI private subnet to an on-premises datacenter via FastConnect?

Select 2 answers
A.Internet Gateway
B.Dynamic Routing Gateway (DRG)
C.Subnet Route Table with a rule pointing on-premises CIDR to the DRG
D.Local Peering Gateway
AnswersB, C

The DRG acts as the router connecting the VCN to the FastConnect circuit.

Why this answer

Traffic from a private subnet to on-premises via FastConnect requires a route table rule pointing to the Dynamic Routing Gateway (DRG), and the FastConnect virtual circuit terminating on that DRG.

104
MCQmedium

You are configuring a Site-to-Site VPN connection in OCI. Your on-premises firewall requires you to specify the Oracle VPN IP address and configure IPSec tunnel parameters. Where do you find the Oracle VPN public IP addresses in the OCI Console?

A.In the NAT Gateway configuration settings
B.In the IPSec Connection details page under the DRG
C.In the FastConnect Virtual Circuit overview
D.In the VCN Details page under Internet Gateway
AnswerB

The IPSec Connection details provide the Oracle tunnel endpoint public IP addresses.

Why this answer

When you create an IPSec connection under the DRG details, OCI automatically provisions two redundant VPN tunnels, displaying their respective public IP addresses in the IPSec Connection details page.

105
Multi-Selectmedium

Which TWO components are required to configure an OCI Site-to-Site VPN with redundant tunnels?

Select 2 answers
A.Service Gateway
B.Dynamic Routing Gateway (DRG) attached to the VCN
C.Local Peering Gateway (LPG)
E.Customer-Premises Equipment (CPE) object representing your on-premises gateway IP
AnswersB, E

The DRG terminates the VPN connection on the cloud side.

Why this answer

OCI automatically provisions two redundant VPN tunnels for every Site-to-Site VPN connection. To use them, you configure a CPE object, a DRG, and configure both tunnels on your on-premises router.

106
MCQeasy

Which OCI networking component acts as a virtual firewall at the subnet level?

A.Internet Gateway
B.Security List
C.Dynamic Routing Gateway
D.Service Gateway
AnswerB

Security Lists provide stateful/stateless ingress and egress packet filtering at the subnet level.

Why this answer

Security Lists act as virtual firewalls that apply to all VNICs within a given subnet.

107
MCQhard

You have configured a FastConnect dedicated circuit using a Provider model, but your on-premises routers cannot reach OCI VCN instances. BGP status is showing as 'Idle'. What is the most likely cause?

A.The route table on the VCN subnet does not have a route to 0.0.0.0/0.
B.The Security List on the DRG attachment blocks ICMP traffic.
C.BGP peering IP addresses or Autonomous System Numbers (ASNs) are misconfigured between the Oracle router and on-premises router.
D.The public subnet has an incorrect Internet Gateway route.
AnswerC

Mismatched peer IPs, ASNs, or blocked TCP port 179 will keep BGP in an Idle or Active state.

Why this answer

BGP status 'Idle' typically indicates that the BGP peer IP configuration is incorrect, or there is an issue with the virtual circuit provisioning state, or access control lists/firewalls are blocking TCP port 179.

108
MCQmedium

You are migrating workloads to OCI and need to route traffic between two VCNs that reside in the same tenancy but in different regions (Ashburn and Phoenix). Which OCI component is required to establish this cross-region connection?

A.Internet Gateway
B.Dynamic Routing Gateway (DRG)
C.Local Peering Gateway (LPG)
AnswerB

DRG version 2 supports cross-region VCN peering.

Why this answer

Cross-region VCN peering requires a Dynamic Routing Gateway (DRG) attached to each VCN, configured with a remote peering connection between the two DRGs.

109
Multi-Selectmedium

Which TWO actions can you perform on an OCI Virtual Cloud Network (VCN) after it has been created?

Select 2 answers
A.Rename the underlying VCN OCID
B.Modify the primary CIDR block of the VCN
C.Create new subnets within the VCN
D.Add secondary CIDR blocks to the VCN
E.Convert a regional subnet into an Availability Domain-specific subnet
AnswersC, D

You can create additional subnets as long as they fit within the VCN CIDR blocks.

Why this answer

After creating a VCN, you can add new subnet CIDRs, add/remove gateways, modify route tables, and update security lists. However, you cannot change the primary VCN CIDR block once created.

110
Multi-Selecthard

Which TWO statements are true regarding OCI VCN Flow Logs?

Select 2 answers
A.Flow logs capture information about traffic flowing through VNICs in your VCN.
B.Flow logs are only supported on public subnets.
C.Flow logs automatically encrypt your database data at rest.
D.Flow logs require an Internet Gateway to export logs out of the VCN.
E.You can configure flow logs to capture accepted traffic, rejected traffic, or both.
AnswersA, E

Flow logs record network flows such as source/destination IPs, ports, and protocols.

Why this answer

VCN Flow Logs capture accepted and rejected traffic traffic flows across VNICs in your VCN. They can be stored in OCI Object Storage or streamed to Logging Analytics.

111
MCQmedium

You are configuring a FastConnect virtual circuit using the Oracle provider model. You have completed the setup in the OCI Console and received an Oracle Industry Partner token (OCID). What is the next step you must take?

A.Configure the token as the BGP ASN on your on-premises router.
B.Attach the token directly to the instance security list.
C.Paste the token into the OCI VCN route table settings.
D.Provide the Oracle Industry Partner token to your FastConnect provider so they can complete the provisioning from their network.
AnswerD

The provider uses the token to establish the virtual circuit link to OCI.

Why this answer

When using the FastConnect Provider model, you must provide the Oracle Industry Partner token (OCID) to your telecommunication or network provider so they can provision the circuit from their end.

112
Multi-Selectmedium

Which THREE features are supported by OCI Load Balancer?

Select 3 answers
B.Automatic packet filtering like a Next-Gen Firewall
C.HTTP/HTTPS layer 7 load balancing
D.SSL termination
E.Direct database query routing without backend compute instances
AnswersA, C, D

Load balancers support TCP stream proxying at layer 4.

Why this answer

OCI Load Balancers support TCP, HTTP, and HTTPS listeners, SSL termination, health checks, and multiple load balancing algorithms like weighted round robin and least connections.

113
Multi-Selectmedium

Which THREE criteria can OCI Traffic Management Steering Policies use to route DNS traffic?

Select 3 answers
A.OCI Compartment quota limits
B.Failover routing
C.ASN-based routing
D.SQL query performance metrics
E.Geolocation-based routing
AnswersB, C, E

Failover policies route traffic to primary endpoints and fail over to secondary endpoints if the primary fails.

Why this answer

OCI Traffic Management steering policies support multiple traffic steering strategies including Failover, Load Balancer, Geolocation, ASN-based, and Compute-based routing.

114
MCQhard

An enterprise customer has a Hybrid cloud architecture. They need to connect their on-premises datacenter to multiple VCNs in different OCI regions using a single dedicated connection. Which OCI component must be used as the central transit hub?

B.Dynamic Routing Gateway (DRG)
C.Local Peering Gateway (LPG)
D.Internet Gateway
AnswerB

A DRG is the required router for connecting on-premises networks and enabling cross-region or multi-VCN transit routing.

Why this answer

A Dynamic Routing Gateway (DRG) version 2 acts as a virtual router that provides a single point of entry for your network traffic and supports attachments to multiple VCNs across regions, as well as on-premises connections via FastConnect or VPN.

115
Multi-Selecthard

Which THREE statements regarding OCI VCN DNS and Hostname resolution are correct?

Select 3 answers
A.Instances in a VCN can resolve each other using their assigned hostnames.
B.Public DNS zones cannot be hosted on OCI.
C.The VCN Resolver can forward DNS queries to on-premises DNS servers.
D.You can create custom private DNS zones and associate them with your VCN.
E.OCI requires you to deploy external bind DNS servers for basic VCN hostname resolution.
AnswersA, C, D

VCN Resolver provides automatic internal DNS name resolution between instances.

Why this answer

OCI assigns internal domain names to instances based on VCN and subnet configuration. Instances can resolve each other using hostname prefixes or fully qualified domain names (FQDNs), and custom DNS zones can be integrated.

116
MCQmedium

You are designing an OCI VCN and need to configure DNS so that instances can resolve custom internal domain names as well as internet domain names. Which OCI VCN Resolver feature should you utilize?

A.Internet Gateway DNS proxy
B.Service Gateway name server
C.NAT Gateway DNS translation
D.VCN Resolver custom forwarders
AnswerD

Custom forwarders allow the VCN resolver to route specific private domain queries to internal name servers.

Why this answer

The VCN Resolver handles DNS resolution for instances. You can configure custom DNS forwarders in the VCN Resolver to forward queries for specific private domains to internal DNS servers while resolving internet queries normally.

117
Multi-Selecthard

Which THREE components are required when establishing a Site-to-Site VPN connection between your on-premises datacenter and an OCI VCN?

Select 3 answers
A.Internet Gateway attached to the private subnets
B.IPSec Connection between the CPE and the DRG
C.Local Peering Gateway (LPG)
D.Dynamic Routing Gateway (DRG) attached to the VCN
E.Customer-Premises Equipment (CPE) object in OCI
AnswersB, D, E

The IPSec Connection binds the CPE and DRG together and establishes encrypted tunnels.

Why this answer

A Site-to-Site VPN requires a Customer-Premises Equipment (CPE) object representing your gateway, a Dynamic Routing Gateway (DRG) attached to your VCN, and an IPSec Connection containing tunnels configured with static or dynamic routing.

118
MCQmedium

You are designing an OCI VCN and need to ensure that database instances in a private subnet can communicate with backend storage endpoints over the Oracle network backbone. Which gateway should you ensure is attached and routed to?

A.Service Gateway
B.Internet Gateway
D.Local Peering Gateway
AnswerA

Service Gateways connect private subnets to regional Oracle services privately.

Why this answer

Service Gateway provides private access to Oracle services like Object Storage across the Oracle network backbone.

← PreviousPage 2 of 2 · 118 questions total

Ready to test yourself?

Try a timed practice session using only Networking questions.