Which command should you run?

HOTSPOT
You have a server named Server1 that runs Windows Server 2016.
Server1 has the following IP configuration.

You need to configure the default gateway on Server1 to allow for connectivity to other subnets via IPv6.
Which command should you run? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:

microsoft-exams

4 thoughts on “Which command should you run?

  1. $var1 = “::/0”

    $var2 = “6”

    $var3 = “fe80::253”

    Explanation/Reference:
    ::/0 is the default gateway route destination for all IPv6 addresses “with 0 bit netmask”, “::” matches every IPv6 addresses on earth.
    The interface “Ethernet 3” is having Global IPv6 Address (public IP) with 2001::/16 prefix, you can assume this interface connects to the IPv6 Internet.
    Link-local IPv6 Address ….. : fe80::d5aa:888f:eb75:7c2a%6 from its included link-local address, you can see that its interface index is “6”.
    As the question is focusing on IPv6 only, you can disregard all IPv4 settings on the same interface.
    Moreover, it is not un-common that an IPv6 interface with public IPv6 enabled to have private IPv4 address assigned on same interface, see “Ethernet 3” in this
    question for example.
    A Computer usually uses the link local address (beginning with fe80) of the connecting router to configure the computers default gateway route.

    2
    2
  2. answer is:
    ::/0
    3
    ::

    -DestinationPrefix
    Specifies a destination prefix of an IP route. A destination prefix consists of an IP address prefix and a prefix length, separated by a slash (/). A value of 0.0.0.0/0 for IPv4 or ::/0 for IPv6 indicates that the value of the NextHop parameter is a default gateway.

    -InterfaceIndex
    Specifies the index of a network interface. The cmdlet adds a route for the interface located at the index that you specify.

    -NextHop
    Specifies the next hop for the IP route. The cmdlet assigns the next hop that you specify to the IP route. A value of 0.0.0.0 for IPv4 or :: for IPv6 indicates that the route is on the local subnet.

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.