1.
Complétez les zones vides. Reportez-vous à l'illustration.
Sur R1, la commande permettant de configurer une route statique vers le réseau 172.16.2.0 en indiquant l'adresse IP de tronçon suivant est ip route 172.16.2.0 255.255.255.0
Explanation
The given answer, 192.168.2.2, is the IP address of the next hop or the next device in the network path that will receive the traffic for the destination network 172.16.2.0. By configuring the static route with this IP address, the router R1 will know to send all the traffic destined for the network 172.16.2.0 to the device with the IP address 192.168.2.2.
2.
Complétez les zones vides.
Un réseau d' est un réseau accessible par une seule route
Explanation
Un réseau d'extrémité est un réseau accessible par une seule extrémité. Cela signifie qu'il n'y a qu'un seul point d'accès ou une seule route pour atteindre ce réseau. Cela peut être utile dans certaines situations où l'on souhaite limiter l'accès à un réseau spécifique à partir d'un seul point.
3.
Quelle combinaison d'adresse réseau et de masque de sous-réseau utiliseriez-vous pour créer une route statique par défaut qui correspond à n'importe quelle destination IPv4 ?
Correct Answer
A. 0.0.0.0 0.0.0.0
Explanation
The combination of network address 0.0.0.0 and subnet mask 0.0.0.0 is used to create a default static route that matches any IPv4 destination. This means that any packet that does not match a more specific route in the routing table will be forwarded to the default route. The subnet mask 0.0.0.0 indicates that all bits in the destination address are considered significant, allowing any destination address to match the default route.
4.
Un administrateur réseau remarque qu'une route statique correctement saisie n'est pas dans la table de routage. Quelles sont les deux commandes du routeur qu'un administrateur utiliserait pour déterminer si l'interface de sortie est opérationnelle et l'adresse du tronçon suivant disponible ? (Choisissez deux réponses.)
Correct Answer(s)
A. Ping
C. Show ip interface brief
Explanation
The administrator would use the "ping" command to determine if the outgoing interface is operational by sending a test packet to a specific IP address and checking for a response. They would also use the "show ip interface brief" command to check the status of all interfaces on the router and verify if the next hop address is available.
5.
Quelle est la caractéristique d'une route statique par défaut ?
Correct Answer
C. Elle identifie l’adresse IP passerelle à laquelle le routeur envoie tous les paquets d’IP pour lesquels il n’a pas de route statique ou acquise.
Explanation
A default static route is configured to identify the gateway IP address to which the router sends all IP packets for which it does not have a static or learned route. This means that if the router does not have a specific route for a particular destination, it will use the default static route to send the packets to the specified gateway.
6.
Examinez l'illustration. Quel jeu de commandes permet de configurer les routes statiques permettant aux routeurs Park et Alta de: a) transférer les paquets vers chaque LAN et b) diriger le reste du trafic vers Internet ?
Correct Answer
A. Park(config)# ip route 0.0.0.0 0.0.0.0 192.168.14.1
Alta(config)# ip route 10.0.234.0 255.255.255.0 192.168.14.2
Alta(config)# ip route 0.0.0.0 0.0.0.0 s0/0/0
Explanation
The correct answer is Park(config)# ip route 0.0.0.0 0.0.0.0 192.168.14.1, Alta(config)# ip route 10.0.234.0 255.255.255.0 192.168.14.2, and Alta(config)# ip route 0.0.0.0 0.0.0.0 s0/0/0. This configuration sets a default route on the Park router, directing all traffic with no specific route to the next hop IP address 192.168.14.1. It also configures a specific route on the Alta router for the network 10.0.234.0/24, directing traffic for that network to the next hop IP address 192.168.14.2. Finally, it sets a default route on the Alta router, directing all other traffic to the interface s0/0/0. This combination of routes ensures that packets are forwarded to each LAN and the rest of the traffic is directed to the Internet.
7.
Quelle commande ou quel jeu de commandes est utilisé pour déterminer si la configuration suivante du routeur HQ fonctionne comme prévu ?
ip route 0.0.0.0 0.0.0.0 serial 0/0/0 10
ip route 0.0.0.0 0.0.0.0 serial 0/1/0
Correct Answer
A. HQ(config)# interface serial 0/1/0
HQ(config-if)# shutdown
HQ(config-if)# end
HQ# show ip route
Explanation
The given answer suggests that the command sequence "HQ(config)# interface serial 0/1/0, HQ(config-if)# shutdown, HQ(config-if)# end, HQ# show ip route" is used to determine if the configuration of the router HQ is functioning as intended. This command sequence first accesses the interface configuration mode for the serial interface 0/1/0, then shuts down the interface, and finally ends the configuration mode. The "show ip route" command is then used to display the routing table, allowing the user to verify if the desired routes are present.
8.
Pourquoi configurer une route statique récapitulée sur un routeur ?
Correct Answer
D. Pour réduire la taille de la table de routage
Explanation
Configuring a summarized static route on a router helps to reduce the size of the routing table. By summarizing multiple specific routes into a single summarized route, the router can store and process fewer entries in its routing table. This reduces memory and processing requirements, improving the overall efficiency and performance of the router.
9.
Complétez les zones vides.
Une route statique _____________peut être utilisée pour fournir une route de secours vers une route apprise de manière automatique.
Correct Answer
flottante
Explanation
Une route statique flottante peut être utilisée pour fournir une route de secours vers une route apprise de manière automatique.
10.
Quelle commande permet de créer une route par défaut IPv6 valide ?
Correct Answer
C. Ipv6 route ::/0 2001:db8:acad:2::a
Explanation
The correct answer is "ipv6 route ::/0 2001:db8:acad:2::a". This command creates a valid IPv6 default route by specifying the destination network as "::/0" and the next-hop address as "2001:db8:acad:2::a".
11.
Quelle route statique IPv6 fait office de route de sauvegarde à une route dynamique apprise via le protocole OSPF ?
Correct Answer
C. Router1(config)# ipv6 route 2001:db8:acad:1::/32 2001:db8:acad:6::2 200
Explanation
This command "Router1(config)# ipv6 route 2001:db8:acad:1::/32 2001:db8:acad:6::2 200" sets a static IPv6 route with a higher administrative distance (200) than the dynamic route learned via OSPF. This means that if the dynamic route fails or becomes unavailable, the static route will be used as a backup route.
12.
Quelle instruction de route statique affiche une route statique IPv6 récursive ?
Correct Answer
D. Ipv6 route 2001:db8:cafe:1::/56 2001:db8:1000:10::1
Explanation
The correct answer is "ipv6 route 2001:db8:cafe:1::/56 2001:db8:1000:10::1". This is because the command includes both the destination network (2001:db8:cafe:1::/56) and the next-hop address (2001:db8:1000:10::1), indicating that the route is recursive and will be forwarded to the next-hop address for further processing.
13.
Un administrateur réseau exécute la commande suivante sur le routeur 1 : ip route 192.168.0.0 255.255.255.0 S0/1/0. Le routeur 1 reçoit alors un paquet destiné au réseau 192.168.0.22/24. Après avoir trouvé la route statique récemment configurée dans la table de routage, que fait le routeur 1 pour traiter le paquet ?
Correct Answer
D. Il encapsule le paquet dans une trame pour la liaison de réseau étendu et transfère le paquet à l’interface S0/1/0.
Explanation
The router 1, after finding the recently configured static route in the routing table, encapsulates the packet in a frame for the wide area network (WAN) link and transfers the packet to the S0/1/0 interface.
14.
Prenez la commande suivante :
ip route 192.168.10.0 255.255.255.0 10.10.10.2 5
Quelle route devrait être hors service pour que cette route statique apparaisse dans la table de routage ?
Correct Answer
B. Une route statique vers le réseau 192.168.10.0/24
Explanation
To make the given static route appear in the routing table, the static route to the network 192.168.10.0/24 should be removed. This means that if there is already a static route to the same network, it needs to be disabled or removed. The other options, a default route, a route acquired by OSPF, and a route acquired by EIGRP, are not relevant to the question and do not affect the appearance of the static route in the routing table.
15.
Quel type de route statique est créé lorsque l'adresse IP de tronçon suivant et l'interface de sortie sont spécifiées ?
Correct Answer
C. Route statique entièrement spécifiée
Explanation
When the IP address of the next hop and the outgoing interface are specified, a fully specified static route is created. This means that the exact next hop IP address and interface are specified, providing a detailed path for the packet to follow. This type of static route is commonly used when there is a specific next hop that should be used for forwarding the traffic.
16.
Examinez l'illustration. Quelle commande permet de configurer une route statique sur R1 afin que le trafic des deux LAN atteigne le réseau distant 2001:db8:1:4::/64 ?
Correct Answer
D. Ipv6 route 2001:db8:1:4::/64 2001:db8:1:3::2
Explanation
The correct answer is "ipv6 route 2001:db8:1:4::/64 2001:db8:1:3::2". This command configures a static route on R1 to reach the remote network 2001:db8:1:4::/64. The next-hop address for this route is 2001:db8:1:3::2. This means that any traffic destined for the network 2001:db8:1:4::/64 will be forwarded to the next-hop address 2001:db8:1:3::2.
17.
Reportez-vous à l'illustration. Pour le réseau 10.0.0.0/8, quelles commandes convertissent l’adresse de tronçon suivant 172.16.40.2 en 192.168.1.2 ? (Choisissez deux réponses.)
Correct Answer(s)
C. A(config)# ip route 10.0.0.0 255.0.0.0 192.168.1.2
E. A(config)# no ip route 10.0.0.0 255.0.0.0 172.16.40.2
Explanation
The correct answer is A(config)# ip route 10.0.0.0 255.0.0.0 192.168.1.2 and A(config)# no ip route 10.0.0.0 255.0.0.0 172.16.40.2. These commands are used to configure the routing table entries for the network 10.0.0.0/8. The first command adds a route to the network 10.0.0.0/8 with the next hop IP address of 192.168.1.2. The second command removes a previously configured route to the network 10.0.0.0/8 with the next hop IP address of 172.16.40.2.
18.
Quelles sont les informations requises dans une route statique entièrement spécifiée pour éliminer les recherches récurrentes ? (Choisissez deux réponses.)
Correct Answer(s)
D. L'adresse IP du voisin du tronçon suivant
E. L'ID de l'interface de sortie
Explanation
Une route statique entièrement spécifiée nécessite deux informations pour éliminer les recherches récurrentes : l'adresse IP du voisin du prochain saut et l'ID de l'interface de sortie. Ces informations permettent au routeur de savoir où envoyer les paquets pour atteindre la destination spécifiée sans avoir à effectuer des recherches supplémentaires.
19.
Reportez-vous à l'illustration. La table de routage de R2 est la suivante :
Gateway of last resort is not set
10.0.0.0/30 is subnetted, 2 subnets
C 10.0.0.0 is directly connected, Serial0/0/0
C 10.0.0.4 is directly connected, Serial0/0/1
192.168.10.0/26 is subnetted, 3 subnets
S 192.168.10.0 is directly connected, Serial0/0/0
C 192.168.10.64 is directly connected, FastEthernet0/0
S 192.168.10.128 [1/0] via 10.0.0.6
Quelle opération le routeur R2 effectue sur un paquet destiné à 192.168.10.129 ?
Correct Answer
A. Envoyer le paquet en sortie sur l’interface Serial0/0/1
Explanation
The routing table of R2 shows that the subnet 192.168.10.128/26 is directly connected to the interface Serial0/0/0. Therefore, when a packet is destined for 192.168.10.129, which falls within this subnet, the router R2 will send the packet out through the interface Serial0/0/1, as indicated in the routing table.
20.
Reportez-vous à l'illustration. Quelle solution de routage permettra à PC A et à PC B d'accéder à Internet avec une utilisation minimale de la bande passante du CPU du routeur et du réseau ?
Correct Answer
C. Configurer une route statique par défaut de R1 vers Edge, une route par défaut de Edge vers Internet et une route statique de Edge vers R1.
Explanation
The correct answer is to configure a default static route from R1 to Edge, a default route from Edge to the Internet, and a static route from Edge to R1. This solution allows PC A and PC B to access the Internet with minimal CPU bandwidth usage on the router and the network. By using a default static route from R1 to Edge, all traffic from PC A and PC B will be directed to Edge. Then, the default route from Edge to the Internet will forward the traffic to the Internet. Finally, the static route from Edge to R1 ensures that any return traffic from the Internet is properly routed back to PC A and PC B.
21.
Examinez l'illustration. La petite entreprise illustrée utilise le routage statique. Les utilisateurs du LAN de R2 ont signalé un problème de connectivité. Quel est le problème ?
Correct Answer
D. R1 doit disposer d'une route statique vers le LAN de R2.
Explanation
The problem is that R1 does not have a static route to the LAN of R2. This means that R1 does not know how to reach the LAN of R2 and therefore cannot forward any traffic to it. This is causing the connectivity issue for the users on the LAN of R2.
22.
Quelles commandes de dépannage d'IOS peuvent aider à isoler les problèmes avec une route statique ? (Choisissez trois réponses.)
Correct Answer(s)
A.
show ip interface brief
C. Show ip route
E. Ping
Explanation
The command "show ip interface brief" can help isolate problems with a static route by displaying the status and configuration of all interfaces on the device, allowing the user to verify if the interface associated with the static route is up and functioning correctly. The command "show ip route" can be used to verify the presence and correct configuration of the static route in the routing table. The command "ping" can be used to test connectivity to the destination network specified in the static route, helping to identify if the issue lies with the route itself.
23.
Une entreprise possède plusieurs réseaux, dont les exigences en matière d'adresses IP sont les suivantes :
Téléphones IP - 50
PC - 70
Caméras IP - 10
Points d'accès sans fil - 10
Imprimantes réseau - 10
Scanners réseau - 2
Quel bloc d'adresses minimal peut accueillir tous ces périphériques si chaque type de périphérique possède son propre réseau ?
Correct Answer
D. 172.16.0.0/24
Explanation
The correct answer is 172.16.0.0/24. This is because a /24 subnet mask allows for 256 IP addresses, which is sufficient to accommodate all the devices listed in the question. The other options (/22, /25, /23) would either provide too many or too few IP addresses for the given requirements.
24.
Prenez la commande suivante :
ip route 192.168.10.0 255.255.255.0 10.10.10.2 5
Quelle route devrait être hors service pour que cette route statique apparaisse dans la table de routage ?
Correct Answer
A. Une route statique vers le réseau 192.168.10.0/24
Explanation
To make the given static route appear in the routing table, the existing static route to the network 192.168.10.0/24 should be disabled.
25.
L’administrateur réseau configure le routeur avec la commande ip route 172.16.1.0 255.255.255.0 172.16.2.2 . Comment s’affiche cette route dans la table de routage ?
Correct Answer
C. S 172.16.1.0 [1/0] via 172.16.2.2
Explanation
The correct answer is "S 172.16.1.0 [1/0] via 172.16.2.2". This indicates that the route to the network 172.16.1.0/24 is a static route (S) and it is reachable via the next hop IP address 172.16.2.2. The [1/0] represents the administrative distance and metric of the route.
26.
Qu'arrive-t-il à une entrée de route statique de la table de routage lorsque l'interface sortante associée à cette route est mise hors service ?
Correct Answer
C. La route statique est supprimée de la table de routage.
Explanation
When the outgoing interface associated with a static route is disabled, the static route is removed from the routing table.
27.
Un administrateur exécute la commande ipv6 route 2001:db8:acad:1::/32 gigabitethernet0/0 2001:db8:acad:6::1 100 sur un routeur. Quelle distance administrative est attribuée à cette route ?
Correct Answer
C. 100
Explanation
L'administrateur a exécuté la commande "ipv6 route" pour configurer une route IPv6 sur le routeur. La distance administrative est un paramètre qui indique la préférence d'une route par rapport à une autre. Dans ce cas, la distance administrative attribuée à cette route est de 100. Cela signifie que cette route aura une priorité plus élevée par rapport à d'autres routes avec une distance administrative plus élevée ou égale.
28.
Examinez l'illustration. L'ingénieur réseau de l'entreprise représentée souhaite utiliser la connexion principale du FAI pour toutes les connexions externes. La connexion de secours du FAI est utilisée uniquement en cas d'échec de la connexion principale. Quel jeu de commandes doit être exécuté pour ce faire ?
Correct Answer
C. Ip route 0.0.0.0 0.0.0.0 s0/0/0
ip route 0.0.0.0 0.0.0.0 s0/1/0 10
Explanation
The correct answer is "ip route 0.0.0.0 0.0.0.0 s0/0/0; ip route 0.0.0.0 0.0.0.0 s0/1/0 10". These commands configure static default routes on the router. The first command sets the default route to use the primary ISP connection (s0/0/0), while the second command sets a backup default route to use the secondary ISP connection (s0/1/0) with a higher administrative distance (10) to be used only if the primary connection fails. This ensures that all external connections use the primary ISP connection unless it fails, in which case the backup connection is used.
29.
Examinez l'illustration. Quelle commande de route statique par défaut permettrait à R1 d'atteindre potentiellement tous les réseaux inconnus sur Internet ?
Correct Answer
D. R1(config)# ipv6 route ::/0 G0/1 fe80::
Explanation
The correct answer is "R1(config)# ipv6 route ::/0 G0/1 fe80::". This command sets up a default static route on R1, specifying that any traffic with a destination address that is not known should be sent out of interface G0/1 with the next-hop address of fe80::. This allows R1 to potentially reach all unknown networks on the Internet.
30.
Examinez l'illustration. L'administrateur réseau doit configurer une route par défaut sur le routeur périphérique. Quelle commande doit-il utiliser pour configurer une route par défaut nécessitant le moins de traitements du routeur possible lors de la transmission des paquets ?
Correct Answer
A.
Border(config)# ip route 0.0.0.0 0.0.0.0 s0/0/1
Explanation
The correct answer is "Border(config)# ip route 0.0.0.0 0.0.0.0 s0/0/1". This command configures a default route on the peripheral router, specifying that any packet with a destination address not matching any other route in the routing table should be forwarded out interface s0/0/1. This ensures that the router will forward all packets to the next hop without having to perform any additional processing or lookups.
31.
Quelle est la syntaxe correcte d’une route statique flottante ?
Correct Answer
D. Ip route 209.165.200.228 255.255.255.248 10.0.0.1 120
Explanation
The correct answer is "ip route 209.165.200.228 255.255.255.248 10.0.0.1 120". This is the correct syntax for a floating static route, where "209.165.200.228" is the destination network, "255.255.255.248" is the subnet mask, "10.0.0.1" is the next-hop IP address, and "120" is the administrative distance. The administrative distance is used to determine the priority of routes when there are multiple paths to the same destination.
32.
Un administrateur réseau a saisi une route statique sur un LAN Ethernet connecté à un routeur adjacent. Cependant, la route ne figure pas dans la table de routage. Quelle commande l'administrateur doit-il utiliser pour vérifier que l'interface de sortie est active ?
Correct Answer
B. Show ip interface brief
Explanation
The correct answer is "show ip interface brief". This command is used to display a brief summary of the status and configuration of all interfaces on the router. By using this command, the administrator can verify if the output interface for the static route is active or not.
33.
Observez le schéma. Quelle commande est utilisée sur le routeur A pour configurer une route statique afin de diriger le trafic du LAN A vers le LAN C ?
Correct Answer
E. A(config)# ip route 192.168.4.0 255.255.255.0 192.168.3.2
Explanation
The correct answer is A(config)# ip route 192.168.4.0 255.255.255.0 192.168.3.2. This command is used on router A to configure a static route to direct traffic from LAN A to LAN C. The command specifies the destination network 192.168.4.0 with a subnet mask of 255.255.255.0 and the next hop IP address 192.168.3.2. This means that any traffic destined for the LAN C will be sent to the next hop IP address 192.168.3.2, which is connected to the LAN C.
34.
Quelle est la caractéristique d'une route statique qui correspond à tous les paquets ?
Correct Answer
A. Elle identifie l’adresse IP passerelle à laquelle le routeur envoie tous les paquets d’IP pour lesquels il n’a pas de route statique ou acquise.
Explanation
The correct answer states that the characteristic of a static route is that it identifies the gateway IP address to which the router sends all IP packets for which it does not have a static or acquired route. This means that when a router receives a packet with a destination IP address for which it does not have a specific route, it will forward the packet to the specified gateway IP address. This allows the router to handle all packets that do not have a specific route in a consistent manner.
35.
Quels sont les deux avantages du routage statique sur le routage dynamique ? (Choisissez deux réponses.)
Correct Answer(s)
B. Le routage statique utilise moins de ressources du routeur que le routage dynamique.
C. Le routage statique est plus sûr puisqu'il n'envoie pas d'annonces sur le réseau.
Explanation
The two advantages of static routing over dynamic routing are that static routing uses fewer router resources and is safer because it does not send announcements over the network. Static routing requires less configuration and knowledge of the network, making it easier to implement and scale for evolving networks.
36.
Pourquoi une route statique flottante est-elle configurée avec une distance administrative supérieure à la distance administrative d'un protocole de routage dynamique qui s'exécute sur le même routeur ?
Correct Answer
D. Pour être utilise comme route de secours
Explanation
A floating static route is configured with a higher administrative distance than a dynamic routing protocol running on the same router in order to be used as a backup route. This means that if the dynamic routing protocol fails or the primary route becomes unavailable, the router will use the floating static route as a backup option. By assigning a higher administrative distance to the floating static route, it ensures that the dynamic routing protocol is preferred as the primary route under normal circumstances, but the floating static route is available as a backup option if needed.
37.
Quel type de route permet au routeur de transférer des paquets même si sa table de routage n’indique pas de route spécifique vers le réseau de destination ?
Correct Answer
B. Route par défaut
Explanation
A default route allows a router to transfer packets even if its routing table does not have a specific route to the destination network. This means that if the router does not have a specific route for a particular destination, it will use the default route to forward the packets. The default route is often used as a "catch-all" route when no other specific routes are available.
38.
Quel type de route statique configuré sur un routeur utilise uniquement l'interface de sortie ?
Correct Answer
C. Route statique directement connectée
Explanation
A route statique directement connectée est configurée sur un routeur en utilisant uniquement l'interface de sortie. Cela signifie que le routeur a une interface directement connectée au réseau de destination spécifié dans la route statique. Lorsqu'un paquet est reçu sur cette interface de sortie, le routeur sait qu'il peut atteindre directement le réseau de destination sans passer par un autre routeur.
39.
Examinez la commande suivante :
ip route 192.168.10.0 255.255.255.0 10.10.10.2 5
Comment l'administrateur devrait-il tester cette configuration ?
Correct Answer
A. Arrêter manuellement l'interface du routeur utilisée comme route principale.
Explanation
The correct answer is "Arrêter manuellement l'interface du routeur utilisée comme route principale." This is because the command "ip route 192.168.10.0 255.255.255.0 10.10.10.2 5" is used to add a static route to the routing table of the router. By manually stopping the interface used as the primary route, the administrator can test if the router will use the added static route as an alternative route for the network 192.168.10.0/24.