• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/69

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

69 Cards in this Set

  • Front
  • Back
Describe the process of routing packets.
Routing is the act of moving information across an internetwork from a source to a destination.
What are some routing algorithm types?
Static, dynamic, flat, hierarchical, host-intelligent, router-intelligent, intradomain, interdomain, link-state, and distance vector.
Describe the difference between static and dynamic routing.
Static routing is configured by the network administrator and is not capable of adjusting to changes in the network without network administrator intervention. Dynamic routing adjusts to changing network circumstances by analyzing incoming routing update messages without administrator intervention.
What are some of the metrics used by routing protocols?
Path length, reliability, delay, bandwidth, load, and communication cost.
What are the design goals of routing algorithms?
Optimality
Simplicity and low overhead
Robustness and stability
Rapid convergence
Flexibility
What are the two types of routing algorithms and give examples of each?
Distance Vector: RIP, RIPv2, and IGRP
Link State: OSPF
Why do routers use network-layer addresses as the basis for routing?
To ease the tasks of sorting and recall because network addresses are hierarchial.
What is the dotted decimal system?
decimal number, between 0:255, seperated by dots (periods).
Which organization isssues IP addresses?
Network Information Center or NIC.
What is the IP address of the "default network"?
0.0.0.0
What is the IP address of the "Internal Loopback Network"?
127.0.0.0
What is an IP address with all host bits set to 0?
It is the "Network Address".
What is an IP address with all host bits set to 1?
Broadcast address
Which networks are reserved for private use and cannot be used on the Internet?
10.x.x.x
172.16.x.x to 172.31.x.x
192.168.x.x
Define subnetting.
Procedure for dividing Class A, B, and C networks into smaller, more manageable sections. Uses a three-level hierarchy that divides the host portion of an IP address into two sections: a subnet number and the remaining host portion.
What is "classful addressing"?
IP addresses are divided into categories called classes. Each IP class is designed to accommodate different size networks.
why is the command "ip subnet-zero" used?
To enable the use of subnet zero for interface addresses.
What is the "extended network prefix"?
the combination of network and subnet portions of the ip address.
Why shouldn't subnets, with all bits equal to 0, be used?
Some routing protocols do not transmit subnet masks with route updates, so classful is assumed.
Name two protocols that do not include subnet masks in routine updates.
Routing Information Protocol version 1 (RIPv1) and
Interior Gateway Routing Protocol (IGRP).
Which five protocols support variable length subnet masks (VLSM)?
Open Shortest Path First (OSPF)
Enhanced Interior Gateway Routing Protocol (EIGRP)
Routing Information Protocol version 2 (RIPv2)
Integrated Intermediate System to Intermediate System (Integrate IS-IS).
Static Routing
What is route aggregation?
The process of combining multiple subnets into a single routing update.
What characteric must be present to effectively utilize route aggregation?
IP addressing scheme must be topologically significant (subnets must be assigned contiguously to each other).
Which IOS configuration command is used to enable IP Supernetting?
config# ip classless
What is a discontiguous network?
a network which has been subnetted but the two subnets are not physically accessable to each other via a router because of the use of a different network address.
Name 2 protocols that don't handle discontiguous networks well.
RIPv1
IGRP
Define CIDR.
Classless InterDomain Routing. Technique based on route aggregation. CIDR allows routers to group routes together in order to cut down on the quantity of routing information carried by the core routers.
Which protocols support CIDR's need to exchange prefix info?
Border Gateway Protocol version 4, (BGP)
EIGRP,
OSPF,
IS-IS
Which protocols are part of the IP Protocol Suite?
Address Resolution Protocol (ARP)
What 2 pieces of infomation does an ARP table entry associate?
MAC address and IP address.
What is a proxy arp?
Variation of the ARP protocol in which an intermediate device (i.e., a router) sends an ARP response on behalf of an end node to the requesting host. Proxy ARP can lessen bandwidth use on slow-speed WAN links.
What is spoofing?
when one machine pretends to be another machine in order to intercept packets.
What is ICMP?
Internet Control Message Protocol. Used in ping. ICMP messages are either error messages or queries and responses used to manage communication on internetworks.
What is a "gateway of last resort"?
A destination network that a router should send packets to if it doesn't have a specific entry to the destination entry to the destination network in its routing table. The gateway address can either be configured directly on the router or it can be learned from another network.
What is a "default route"?
Routing table entry that is used to direct frames for which a next hop is not explicitly listed in the routing table.
How does configure a gateway of last resort?
config# ip default-network <ip address>
What is a static route?
it is a route that you manually configure into a routing table. With a static route you can specify that packets destined for a specific network, subnet, or host should be forwarded to a desired network or interface. You can also assign administrative distances to static routes.
How is a static route configured?
config# ip route <ip route prefix> <mask> <ip address>
How do I display the ip routing table?
router# show ip route
How do I display only those routing table entries that were learned via a specific protocol?
router# show ip route <protocol>
How do I display the route table entries for a specific network address?
router# show ip route <ip address>
How do I display the number of networks and subnets that have been learned and the amount of memory used to store each?
router# show ip route summary
How do I clear one or all entries from the routing table?
router# clear ip route <* or ip address>
How do I display, by protocol, the parameters that are being used to send and receive updates, the metrics it is using, and the networks it is advertising.
router# show ip protocols
How do I display the ARP Table?
router# show ip arp
How do I clear the ARP Table?
router# clear arp-cache
How do I display a secondary ip address, if it exists, for an interface?
router# show ip interface
How do I display statistics for all interfaces?
router# show interfaces
How do I display just the ip addresses assigned on each interface and the status of each interface?
router# show ip interface brief
Name 2 diagnostic commands?
Ping and Traceroute.
For what does ping stand?
Packet INternet Groper
What does ping do?
Sends ICMP echo messages. When received by destination, it sends an echo response.
How do I enter extended ping commands?
on the command line, enter only ping, causing user prompts for arguments. Answer yes (y) to question "Extended commands?"
Why use traceroute vs. ping with record option?
Ping can only record up to 9 hops where traceroute is unlimited.
From what protocol are the traceroute probe packets?
UDP: User Datagram Protocol
What are the 2 error messages traceroute probe packets generate and at which routers are they seen?
"Time exceeded", seen at 1st and all routers except the last destination node which will then give the error message "ICMP port unreachable".
How do I display the number of packets received, generated or forwarded?
router# debug ip packet
What packet types are not recorded by traceroute?
Fast-Switched Packets.
How do I disable fast switching of packets?
config-if# no ip route-cache
How do I display routing transaction information for a particular protocol?
router# debug ip <protocol>
How do I display routing table updates and route-cache updates?
route# debug ip routing
How do I display ICMP transaction information?
router# debug ip icmp
Name 5 Classless routing protocols
RIPv2
EIGRP
OSPF
IS-IS
BGP
Name 2 Classful routing protocols
RIPv1
IGRP
What does IGP and EGP stand for?
Interior Gateway Protocol
Exterior Gateway Protocol
What is the only viable EGP?
Border Gateway Protocol (BGP)
Name 5 IGPs
RIP, IGRP, EIGRP, OSPF, IS-IS
How do I display RIP route information?
config# show ip rip database
How can Administrative Distance be displayed for a static route or directly connected device?
router# show ip route <ip route>
this form of the show ip route command show more detail when the ip route option is given.