Free EMC D-SNC-DY-00 Practice Test & Real Exam Questions

  • Exam Code/Number: D-SNC-DY-00
  • Exam Name/Title: Dell SONiC Deploy Exam
  • Certification Provider: EMC
  • Corresponding Certification: Dell Networking
  • Exam Questions: 47
  • Updated On: Jul 06, 2026
What is the correct order of steps for data flow in asymmetric IRB frame encapsulation?
Correct Answer:

Explanation:
* Ingress VTEP performs a route lookup that is based on the destination IP address.
* Ingress VTEP encapsulates the packet with VXLAN and sends it on the appropriate VNI segment.
* Egress VTEP determines that the host is local to the VNI and switches the packet.
* Egress VTEP bridges the packet after decapsulation.
Steps and Correct Order:
* Ingress VTEP performs a route lookup that is based on the destination IP address.
* The ingress VTEP (Virtual Tunnel Endpoint) first needs to determine the next hop for the packet.
This involves performing a route lookup using the destination IP address.
* Ingress VTEP encapsulates the packet with VXLAN and sends it on the appropriate VNI segment.
* Once the route lookup is complete, the ingress VTEP encapsulates the packet in a VXLAN header, which includes the appropriate VNI (VXLAN Network Identifier) segment, and forwards it.
* Egress VTEP determines that the host is local to the VNI and switches the packet.
* The egress VTEP receives the encapsulated VXLAN packet, decapsulates it, and then checks its local VNI to determine if the destination host is within the same VNI.
* Egress VTEP bridges the packet after decapsulation.
* After determining the destination host's locality, the egress VTEP bridges the packet to the appropriate interface to deliver it to the final destination.
References:
* Dell Technologies Networking - SONiC
* Dell Enterprise SONiC Deployment Guide
These steps provide a comprehensive guide to understand the correct order of operations in asymmetric IRB (Integrated Routing and Bridging) frame encapsulation within a VXLAN environment.
A customer must configure a peer link between two switches in the L2 MC-LAG scenario.
SwitchB has already been configured. Configure the peer link on SwitchA.
Use the following configuration information:
MC-LAG domain 1
VLAN 101
Peer link Port-Channel 100
SwitchA IP: 192.168.1.1/24
SwitchB IP: 192.168.1.2/24
MC-LAG system MAC: 00:00:00:11:11:11
The physical ports to connect the peer switch are Eth 1/5 and Eth 1/6 for each switch.

Correct Answer:
see the explanation for all step by step solution with all explanation.
Explanation:
Here are the steps to configure the peer link on SwitchA:
* Enter Configuration Mode:
SwitchA# configure terminal
* Create VLAN 101:
SwitchA(config)# vlan 101
* Create Port-Channel 100:
SwitchA(config)# interface port-channel 100
SwitchA(config-if-po100)# switchport mode trunk
SwitchA(config-if-po100)# switchport trunk allowed vlan 101
SwitchA(config-if-po100)# exit
* Assign Physical Interfaces to Port-Channel 100:
SwitchA(config)# interface ethernet 1/5
SwitchA(config-if-eth1/5)# channel-group 100 mode active
SwitchA(config-if-eth1/5)# exit
SwitchA(config)# interface ethernet 1/6
SwitchA(config-if-eth1/6)# channel-group 100 mode active
SwitchA(config-if-eth1/6)# exit
* Configure MC-LAG Domain 1:
SwitchA(config)# mclag domain 1
SwitchA(config-mclag-domain)# peer-link port-channel 100
SwitchA(config-mclag-domain)# local-ip 192.168.1.1
SwitchA(config-mclag-domain)# peer-ip 192.168.1.2
SwitchA(config-mclag-domain)# system-mac 00:00:00:11:11:11
SwitchA(config-mclag-domain)# exit
* Save Configuration:
SwitchA# write memory
Comprehensive Detailed Step by Step Explanation with References:
* Enter Configuration Mode:
* Begin by entering the global configuration mode to make changes to the switch configuration.
* Create VLAN 101:
* Create VLAN 101 to be used for the MC-LAG peer link communication.
* Create Port-Channel 100:
* Enter the port channel interface configuration mode using interface port-channel 100.
* Set the port channel to trunk mode with switchport mode trunk.
* Allow VLAN 101 on the trunk with switchport trunk allowed vlan 101.
* Exit the port channel interface configuration mode.
* Assign Physical Interfaces to Port-Channel 100:
* Enter interface configuration mode for ethernet 1/5 and assign it to port channel 100 using the channel-group 100 mode active command.
* Exit the interface configuration mode.
* Repeat the same steps for ethernet 1/6.
* Configure MC-LAG Domain 1:
* Enter the MC-LAG domain configuration mode using mclag domain 1.
* Specify the peer link port channel with peer-link port-channel 100.
* Configure the local IP address as 192.168.1.1 using local-ip 192.168.1.1.
* Configure the peer IP address as 192.168.1.2 using peer-ip 192.168.1.2.
* Set the MC-LAG system MAC address using system-mac 00:00:00:11:11:11.
* Exit the MC-LAG domain configuration mode.
* Save Configuration:
* Save the configuration to ensure the changes persist after a reboot using the write memory command.
References:
* Dell Technologies Networking - SONiC
* Dell Enterprise SONiC Deployment Guide
These steps provide a comprehensive guide to configure the peer link for an MC-LAG scenario on SwitchA, ensuring the specific requirements for IP addressing, VLAN configuration, and port channel setup are met.
Enterprise SONiC Switch 1 and Switch 2 are part of a symmetric VXLAN fabric in a data center environment.
Switch 1 has learned MAC addresses from its local VLANs.
What role does BGP EVPN play in this scenario?
Correct Answer: A Vote an answer
Explanation: Only visible for Pass4Leader members. You can sign-up / login (it's free).
Refer to the exhibit.

Which three actions can a customer take to change interface Eth1/10 to operate in access mode for VLAN 40?
Correct Answer: A,D,E Vote an answer
Explanation: Only visible for Pass4Leader members. You can sign-up / login (it's free).
In what order should these commands be entered to configure an access port in SONiC CLI if the required VLAN is already configured?
Correct Answer:

Explanation:
To configure an access port on the SONiC CLI, the commands should be entered in the following order:
* Enter global configuration mode with configure terminal.
* Specify the interface to configure using interface ethernet 1/1.
* Set the interface to access mode and assign it to VLAN 20 with switchport access vlan 20.
* Exit the interface configuration mode with exit.
References:
* Dell Technologies SONiC Command Reference Guide
* Dell Networking Configuration Guide