| Term 
 
        | The protocols of the OSI model ______ layer specify addressing and processes that enable transport layer data to be packaged and transported. |  | Definition 
 | 
        |  | 
        
        | Term 
 
        | Each router a packet crosses to reach the destination host is called a ____. |  | Definition 
 | 
        |  | 
        
        | Term 
 
        | Which four basic processes does the network layer use to exchange data across the network? |  | Definition 
 
        | 1. Addressing end devices 2. Encapsulation 3. Routing 4. De-encapsulation |  | 
        |  | 
        
        | Term 
 
        | What are the two network layer protocols that are commonly implemented? |  | Definition 
 
        | Internet Protocol Version 4 (IPv4) and Internet Protocol Version 6 (IPv6) |  | 
        |  | 
        
        | Term 
 
        | The _________ layer adds a header so segments can be reassembled at the destination. |  | Definition 
 | 
        |  | 
        
        | Term 
 
        | What is the benefit of layer-by-layer data encapsulation? |  | Definition 
 
        | The process of encapsulating data layer by layer enables the services at the different layers to develop and scale without affecting the other layers. This means the transport layer segments can be readily packaged by IPv4 or IPv6 or by any new protocol that might be developed in the future. |  | 
        |  | 
        
        | Term 
 
        | Is the transport layer PDU modified as it moves from router to router? |  | Definition 
 
        | No. Only the network layer PDU is observed by the router. |  | 
        |  | 
        
        | Term 
 
        | In TCP/IP based networks, the network layer PDU is the _________. |  | Definition 
 | 
        |  | 
        
        | Term 
 
        | What are the three general characteristics of the IP protocol? |  | Definition 
 
        | 
Connectionless: No connection with the destination is established before sending data packets.Best Effort: IP is inherently unreliable because packet delivery is not guaranteed.Media Independent: Operation is independent of the medium (i.e., copper, fiber optic, or wireless) carrying the data. |  | 
        |  | 
        
        | Term 
 
        | Was IP designed to track and manage the flow of packets? |  | Definition 
 
        | No. It provides only the functions that are necessary to deliver a packet from a source to a destination over an interconnected system of networks. |  | 
        |  | 
        
        | Term 
 
        | IP is ___________, meaning that no dedicated end-to-end connection is created before data is sent. |  | Definition 
 | 
        |  | 
        
        | Term 
 
        | Why is IP connectionless? |  | Definition 
 
        | In order to greatly reduce the overhead of IP. |  | 
        |  | 
        
        | Term 
 
        | What are the three drawbacks to the connectionless feature of the IP protocol? |  | Definition 
 
        | With no pre-established end-to-end connection, senders are unaware whether destination devices are present and functional when sending packets, nor are they aware if the destination receives the packet, or if they are able to access and read the packet. |  | 
        |  | 
        
        | Term 
 
        | Describe the best-effort characteristic of the IP protocol. |  | Definition 
 
        | Best-effort means that IP does not have the capability to manage and recover from undelivered or corrupt packets. This is because while IP packets are sent with information about the location of delivery, they contain no information that can be processed to inform the sender whether delivery was successful. IP also provides no capability for packet retransmissions if errors occur. |  | 
        |  | 
        
        | Term 
 
        | If an issue occurs with a packet during the transmission process, how is this issue resolved? |  | Definition 
 
        | Applications using the data, or upper layer services, must resolve this issue. This allows IP to function very efficiently. |  | 
        |  | 
        
        | Term 
 
        | What does it mean that IP is media-independent? |  | Definition 
 
        | This means that IP packets can be transported over any medium: communicated as electronic signals over copper cable, as optical signals over fiber, or wirelessly as radio signals. |  | 
        |  | 
        
        | Term 
 | Definition 
 
        | Maximum Transmission Unit   This refers to the maximum size of the PDU that each medium can transport. This is established by the network layer after the data link layer passes this information to the network layer.  |  | 
        |  | 
        
        | Term 
 
        | What is the one major characteristic of the media that the network layer considers? |  | Definition 
 
        | The Maximum Transmission Unit (MTU), which is the maximum size that a packet can be to be transported on a specific medium, and this information is considered by the network layer when packets are created.     |  | 
        |  | 
        
        | Term 
 
        | Describe packet fragmentation. |  | Definition 
 
        | In some cases, an intermediate device, usually a router, must split up a packet when forwarding it from one medium to another medium with a smaller MTU. |  | 
        |  | 
        
        | Term 
 
        | What is the 4-bit binary value that identifies an IPv4 packet? |  | Definition 
 | 
        |  | 
        
        | Term 
 
        | Name the following parts in the diagram. What is this a diagram of?   [image] |  | Definition 
 
        | IPv4 Protocol Header   
VersionInternet Header LengthDifferentiated Services (DS)Differentiated Services Code Point (DSCP)Explicit Congestion Notification (ECN)Total LengthIdentificationFlagFragment OffsetTime-to-LiveProtocolHeader ChecksumSource IP AddressDestination IP Address |  | 
        |  | 
        
        | Term 
 
        | What is the purpose of the version in an IPv4 header? |  | Definition 
 
        | The version contains a 4-bit binary value set to 0100 that identifies this as an IP version 4 packet. |  | 
        |  | 
        
        | Term 
 
        | What is the purpose of the Differentiated Services or DiffServ (DS) portion of the IPv4 header? |  | Definition 
 
        | Formerly called the Type of Service (ToS) field, the DS field is an 8-bit field used to determine the priority of each packet. The six most significant bits of the DiffServ field is the Differentiated Services Code Point (DSCP) and the last two bits are the Explicit Congestion Notification (ECN) bits. |  | 
        |  | 
        
        | Term 
 
        | What is the purpose of the Time-to-Live (TTL) portion of the IPv4 header? |  | Definition 
 
        | The Time-to-Live (TTL) contains an 8-bit binary value that is used to limit the lifetime of a packet. The packet sender sets the initial TTL value, and it is decreased by one each time the packet is processed by a router. If the TTL field decrements to zero, the router discards the packet and sends an Internet Control Message Protocol (ICMP) Time Exceeded message to the source IP address.   |  | 
        |  | 
        
        | Term 
 
        | What is the purpose of the Protocol portion of the IPv4 header? Name three common values it may contain, and provide their associated values. |  | Definition 
 
        | Protocol - Field is used to identify the next level protocol. This 8-bit binary value indicates the data payload type that the packet is carrying, which enables the network layer to pass the data to the appropriate upper-layer protocol. Common values include ICMP (1), TCP (6), and UDP (17). |  | 
        |  | 
        
        | Term 
 
        | What is the purpose of the Source IPv4 Address portion of the IPv4 header? How many bits does this portion contain? |  | Definition 
 
        | Contains a 32-bit binary value that represents the source IPv4 address of the packet. The source IPv4 address is always a unicast address. |  | 
        |  | 
        
        | Term 
 
        | Is the source IPv4 address a unicast, multicast, or broadcast address? How about the destination IPv4 address? |  | Definition 
 
        | Source IPv4 Address: Always unicast Destination IPv4 Address: Unicast, multicast, or broadcast |  | 
        |  | 
        
        | Term 
 
        | What is the purpose of the Destination IPv4 Address portion of the IPv4 header? How many bits does this portion contain? |  | Definition 
 
        | Contains a 32-bit binary value that represents the destination IPv4 address of the packet. The destination IPv4 address is a unicast, multicast, or broadcast address. |  | 
        |  | 
        
        | Term 
 
        | What is the purpose of the Internet Header Length (IHL), Total Length, and Header Checksum fields in an IPv4 header? |  | Definition 
 
        | The Internet Header Length (IHL), Total Length, and Header Checksum fields are used to identify and validate the packet. |  | 
        |  | 
        
        | Term 
 
        | The IPv4 packet uses the ________, ________, and _______ fields to keep track of the fragments in a fragmented packet. |  | Definition 
 
        | Identification, Flags, and Fragment Offset |  | 
        |  | 
        
        | Term 
 
        | What are the minimum and maximum sizes of an IPv4 header? |  | Definition 
 | 
        |  | 
        
        | Term 
 
        | What are the three major limitations of IPv4? |  | Definition 
 
        | 
IP address depletion - Not enough unique, public IP addresses to go around.Internet routing table expansion - A routing table is used by routers to make best path determinations. As the number of servers connected to the Internet increases, so too does the number of network routes. These IPv4 routes consume a great deal of memory and processor resources on Internet routers.Lack of end-to-end connectivity - Network Address Translation (NAT) is a technology commonly implemented within IPv4 networks. NAT provides a way for multiple devices to share a single public IPv4 address. However, because the public IPv4 address is shared, the IPv4 address of an internal network host is hidden. This can be problematic for technologies that require end-to-end connectivity. |  | 
        |  | 
        
        | Term 
 | Definition 
 
        | Network Address Translation   NAT provides a way for multiple devices to share a single public IPv4 address. However, because the public IPv4 address is shared, the IPv4 address of an internal network host is hidden. This can be problematic for technologies that require end-to-end connectivity. |  | 
        |  | 
        
        | Term 
 
        | How many unique IPv4 addresses are possible? How many unique IPv6 addresses are possible? |  | Definition 
 
        | IPv4: 4 billion IPv6: 340 undecillion (1 undecillion: 10^36) |  | 
        |  | 
        
        | Term 
 
        | Which organization created IPv6? |  | Definition 
 
        | The Internet Engineering Task Force (IETF) |  | 
        |  | 
        
        | Term 
 
        | How many bits are in an IPv6 address? |  | Definition 
 | 
        |  | 
        
        | Term 
 
        | What are 3-6 primary benefits of IPv6 over IPv4? |  | Definition 
 
        | 
Increased address space - IPv6 addresses are based on 128-bit hierarchical addressing as opposed to IPv4 with 32 bits.Improved packet handling - The IPv6 header has been simplified with fewer fields for more efficient packet handling.Eliminates the need for NAT - With such a large number of public IPv6 addresses, NAT between a private IPv4 address and a public IPv4 is not needed. This avoids some of the NAT-induced application problems experienced by applications requiring end-to-end connectivity.Larger Payload - Larger payload for increased throughput and transport efficiency.Hierarchical network architecture for routing efficiency.Autoconfiguration for addresses. |  | 
        |  | 
        
        | Term 
 
        | Name the fields in the following diagram. What is this a diagram of?   [image] |  | Definition 
 
        | IPv6 Packet Header   
VersionTraffic ClassFlow LabelPayload LengthNext HeaderHop LimitSource IP AddressDestination IP Address |  | 
        |  | 
        
        | Term 
 
        | What is the purpose of the version field in the IPv6 header? What value is this field set to? |  | Definition 
 
        | This field contains a 4-bit binary value set to 0110 that identifies this as an IP version 6 packet. |  | 
        |  | 
        
        | Term 
 
        | What is the purpose of the Traffic Class field in the IPv6 header? How large is it, and what is its equivalent in IPv4? |  | Definition 
 
        | This 8-bit field is equivalent to the IPv4 Differentiated Services (DS) field. It determines the priority of each packet. |  | 
        |  | 
        
        | Term 
 
        | What is the purpose of the Flow Label field of the IPv6 header? How large is it? |  | Definition 
 
        | This 20-bit field suggests that all packets with the same flow label receive the same type of handling by routers. |  | 
        |  | 
        
        | Term 
 
        | What is the purpose of the Payload Length field in the IPv6 header? How large is this field? |  | Definition 
 
        | This 16-bit field indicates the length of the data portion or payload of the IPv6 packet. |  | 
        |  | 
        
        | Term 
 
        | What is the purpose of the Next Header field in the IPv6 header? Which IPv4 field is this field equivalent to, and what size is this field? |  | Definition 
 
        | This 8-bit field is equivalent to the IPv4 Protocol field. It indicates the data payload type that the packet is carrying, enabling the network layer to pass the data to the appropriate upper-layer protocol. |  | 
        |  | 
        
        | Term 
 
        | What is the purpose of the Hop Limit field in the IPv6 header? What is the size of this field, and how does it function? |  | Definition 
 
        | This 8-bit field is equivalent to the IPv4 Protocol field. It indicates the data payload type that the packet is carrying, enabling the network layer to pass the data to the appropriate upper-layer protocol. |  | 
        |  | 
        
        | Term 
 
        | What is the purpose of the Source IP Address field in the IPv6 header? How large is this field? |  | Definition 
 
        | This 128-bit field identifies the IPv6 address of the sending host. |  | 
        |  | 
        
        | Term 
 
        | What is the purpose of the Destination IP Address field in the IPv6 header? How large is this field? |  | Definition 
 
        | This 128-bit field identifies the IPv6 address of the receiving host. |  | 
        |  | 
        
        | Term 
 
        | An IPv6 packet may also contain _________, which provide optional network layer information. ___________ are optional and are placed between the IPv6 header and the payload. They are used for fragmentation, security, to support mobility and more. |  | Definition 
 | 
        |  | 
        
        | Term 
 
        | Is it possible for an IPv6 packet to be fragmented by a router? |  | Definition 
 
        | No - only IPv4 packets are sometimes fragmented by routers. |  | 
        |  | 
        
        | Term 
 
        | How can you identify a link-local IPv6 address? |  | Definition 
 
        | The address begins with fe80 |  | 
        |  | 
        
        | Term 
 
        | What is a link-local IP address? |  | Definition 
 
        | In a computer network, a link-local address is a network address that is valid only for communications within the network segment (link) or the broadcast domain that the host is connected to. Link-local addresses are not guaranteed to be unique beyond a single network segment. |  | 
        |  | 
        
        | Term 
 
        | Which three locations can a host send a packet to? |  | Definition 
 
        | 1. Itself 2. A local host. 3. A remote host. |  | 
        |  | 
        
        | Term 
 
        | What is the loopback interface? What is it used for? |  | Definition 
 
        | A special IPv4 address of 127.0.0.1. Pinging the loopback interface tests the TCP/IP protocol stack on the host. |  | 
        |  | 
        
        | Term 
 
        | Devices that are beyond the local network segment are known as __________. |  | Definition 
 | 
        |  | 
        
        | Term 
 
        | The router connected to the local network segment is referred to as the _________. |  | Definition 
 | 
        |  | 
        
        | Term 
 
        | Does the default gateway have a local IP address in the same address range as other hosts on the network? |  | Definition 
 | 
        |  | 
        
        | Term 
 
        | What is a default gateway address? |  | Definition 
 
        | This is the IP address of the default gateway, or router in the network. Hosts must know this address in order to send packets to remote networks. |  | 
        |  | 
        
        | Term 
 
        | The host receives the IPv4 address of the default gateway in two ways: either ___________ or ____________. |  | Definition 
 
        | dynamically from Dynamic Host Configuration Protocol (DHCP) configured manually |  | 
        |  | 
        
        | Term 
 | Definition 
 
        | Having a default gateway configured creates a default route in the routing table of the PC. A default route is the route or pathway your computer will take when it tries to contact a remote network.    The default route is derived from the default gateway configuration and is placed in the host computer’s routing table.  |  | 
        |  | 
        
        | Term 
 
        | On a Windows host, the ______ or ________ command can be used to display the host routing table. |  | Definition 
 | 
        |  | 
        
        | Term 
 
        | Which three pieces of information are displayed when you use netstat -r to display the host routing table? |  | Definition 
 
        | 
Interface List - Lists the Media Access Control (MAC) address and assigned interface number of every network-capable interface on the host, including Ethernet, Wi-Fi, and Bluetooth adapters.IPv4 Route Table - Lists all known IPv4 routes, including direct connections, local network, and local default routes.IPv6 Route Table - Lists all known IPv6 routes, including direct connections, local network, and local default routes. |  | 
        |  | 
        
        | Term 
 
        | When a host sends a packet to another host, it will use its ___________ to determine where to send the packet. |  | Definition 
 | 
        |  | 
        
        | Term 
 
        | What does a router use to determine where to forward a packet that it receives? |  | Definition 
 | 
        |  | 
        
        | Term 
 
        | Name and describe the three types of information that can be stored on a router's routing table. |  | Definition 
 
        | 
Directly-connected routes - These routes come from the active router interfaces. Routers add a directly connected route when an interface is configured with an IP address and is activated. Each of the router's interfaces is connected to a different network segment.Remote routes - These routes come from remote networks connected to other routers. Routes to these networks can be manually configured on the local router by the network administrator or dynamically configured by enabling the local router to exchange routing information with other routers using a dynamic routing protocol.Default route – Like a host, routers also use a default route as a last resort if there is no other route to the desired network in the routing table. |  | 
        |  | 
        
        | Term 
 
        | When a packet arrives at the router interface, what does the router do? |  | Definition 
 
        | The router examines the packet header to determine the destination network. |  | 
        |  | 
        
        | Term 
 
        | What is the router's process for forwarding a packet, if the route is found in the routing table? |  | Definition 
 
        | If the destination network matches a route in the routing table, the router forwards the packet using the information specified in the routing table. If there are two or more possible routes to the same destination, the metric is used to decide which route appears in the routing table. |  | 
        |  | 
        
        | Term 
 
        | When a router interface is configured with an IPv4 address, a subnet mask, and is activated, two routing table entries are automatically created. Name and describe these. |  | Definition 
 
        | 
C - Identifies a directly-connected network. Directly-connected networks are automatically created when an interface is configured with an IP address and activated.L - Identifies that this is a local interface. This is the IPv4 address of the interface on the router. |  | 
        |  | 
        
        | Term 
 
        | Describe the following three portions of a directly connected routing table entry.   [image] |  | Definition 
 
        | 
Route Source: Identifies how the network was learned by the router.Destination Network: Identifies the destination network and how it was learned.Outgoing Interface: Identifies the exit interface to use to forward a packet toward the final destination. |  | 
        |  | 
        
        | Term 
 
        | Name and describe the following parts of a router's remote network routing table entry:   [image] |  | Definition 
 
        | 
Route Source: Identifies how the network was learned by the router. Common route sources include S (static route), D (Enhanced Interior Gateway Routing Protocol or EIGRP), and O (Open Shortest Path First or OSPF).Destination Network: Identifies the destination network.Administrative Distance: Identifies the administrative distance (i.e., trustworthiness) of the route source. Lower values indicate increased trustworthiness of the route source.Metric: Identifies the value assigned to reach the remote network. Lower values indicate preferred routes.viaNext-Hop: Identifies the IP address of the next router to forward the packet to, in order to get to the destination network.Route Timestamp: Identifies when the next-hop router was last heard from.Outgoing Interface: Identifies the exit interface on the router to use to forward a packet toward the final destination. |  | 
        |  | 
        
        | Term 
 
        | What is a next-hop address? |  | Definition 
 
        | A next-hop address is the address of a router to which another router that currently has a packet must forward the packet to, in order for the packet to eventually reach its destination.   When a packet destined for a remote network arrives at the router, the router matches the destination network to a route in the routing table. If a match is found, the router forwards the packet to the next hop address out of the identified interface. |  | 
        |  | 
        
        | Term 
 
        | Why would directly connected networks with a route source of C and L have no next-hop address? |  | Definition 
 
        | Because a router can forward packets directly to hosts on these networks using the designated interface. |  | 
        |  | 
        
        | Term 
 
        | If a route representing the destination network is not in the router's routing table, what happens to the packet? |  | Definition 
 | 
        |  | 
        
        | Term 
 
        | Name and describe the three general families of routers. Which family of routers is the focus of the CCNA certification? |  | Definition 
 
        | 
Branch - Teleworkers, small businesses, and medium-size branch sites. Includes Cisco Integrated Services Routers (ISR) G2 (2nd generation).WAN - Large businesses, organizations, and enterprises. Includes the Cisco Catalyst Series Switches and the Cisco Aggregation Services Routers (ASR).Service Provider - Large service providers. Includes Cisco ASR, Cisco CRS-3 Carrier Routing System, and 7600 Series routers. Learning about the branch routers is the focus of the CCNA certification. |  | 
        |  | 
        
        | Term 
 
        | Similar to computers, what three things does a router require? |  | Definition 
 
        | 
Central processing units (CPU).Operating systems (OS).Memory consisting of random-access memory (RAM), read-only memory (ROM), nonvolatile random-access memory (NVRAM), and flash. |  | 
        |  | 
        
        | Term 
 | Definition 
 
        | Cisco Internetwork Operating System |  | 
        |  | 
        
        | Term 
 
        | Name and describe the four types of memory that a Cisco router uses. |  | Definition 
 
        | 
RAM - This is volatile memory used in Cisco routers to store applications, processes, and data needed to be executed by the CPU. Cisco routers use a fast type of RAM called synchronous dynamic random access memory (SDRAM).ROM - This non-volatile memory is used to store crucial operational instructions and a limited IOS. Specifically, ROM is firmware embedded on an integrated circuit inside the router which can only be altered by Cisco.NVRAM – This is non-volatile memory is used as the permanent storage for the startup configuration file (startup-config).Flash - This non-volatile computer memory used as permanent storage for the IOS and other system related files such as log files, voice configuration files, HTML files, backup configurations, and more. When a router is rebooted, the IOS is copied from flash into RAM. |  | 
        |  | 
        
        | Term 
 
        | What type of RAM does a Cisco router use? |  | Definition 
 
        | Synchronous dynamic random access memory (SDRAM). |  | 
        |  | 
        
        | Term 
 
        | In which type of memory is the startup-config file stored on a router? |  | Definition 
 | 
        |  | 
        
        | Term 
 
        | When a router is rebooted, the IOS is copied from _____ into ______. |  | Definition 
 | 
        |  | 
        
        | Term 
 
        | Name four applications and processes that are used by RAM in a router. |  | Definition 
 
        | 
The IOS image and running configuration fileThe routing table used to determine the best path to use to forward packetsThe ARP cache used to map IPv4 addresses to MAC addressesThe Packet buffer used to temporarily store packets before forwarding to the destination |  | 
        |  | 
        
        | Term 
 
        | Name three things that ROM on a router stores. |  | Definition 
 
        | 
Bootup information that provides the startup instructionsPower-on self-test (POST) that tests all the hardware componentsLimited IOS to provide a backup version of the IOS. It is used for loading a full feature IOS when it has been deleted or corrupted. |  | 
        |  | 
        
        | Term 
 
        | Fill in the table below.   [image] |  | Definition 
 
        | 
Running IOSRouting Table, ARP TableRunning Configuration FilePacket BufferStartup Configuration FileIOS FilesPOST, ROM Monitor Firmware (Limited IOS) |  | 
        |  | 
        
        | Term 
 | Definition 
 
        | Enhanced High-Speed WAN Interface Card slot   Labeled as eHWIC 0 and eHWIC 1 to provide modularity and flexibility by enabling the router to support different types of interface modules, including serial, digital subscriber line (DSL), switch port, and wireless. |  | 
        |  | 
        
        | Term 
 
        | What are Compact Flash slots? What are they labeled as on the Cisco router? |  | Definition 
 
        | Labeled as CF0 and CF1 to provide increased storage flash space upgradable to 4 GB compact flash card per slot. By default, CF0 is populated with a 256 MB compact flash card and is the default boot location. |  | 
        |  | 
        
        | Term 
 
        | Describe the Console ports on the back of a Cisco router. |  | Definition 
 
        | For the initial configuration and command-line interface (CLI) management access. Two ports are available; the commonly used regular RJ-45 port and a new USB Type-B (mini-B USB) connector. However, the console can only be accessed by one port at a time. |  | 
        |  | 
        
        | Term 
 
        | Describe the function of the Auxillary port on the back of a Cisco router. |  | Definition 
 
        | RJ-45 port for remote management access similar to the Console port. Now considered a legacy port as it was used to provide support for dial-up modems. |  | 
        |  | 
        
        | Term 
 
        | Describe the function of the Gigabit Ethernet ports on the back of a Cisco router. |  | Definition 
 
        | Interfaces labeled as GE0/0 and GE0/1. Typically used to provide LAN access by connecting to switches and users, or to interconnect to another router. |  | 
        |  | 
        
        | Term 
 
        | Describe the function of a USB port on the back of a Cisco router. |  | Definition 
 
        | Ports labeled as USB 0 and USB 1 to provide additional storage space similar to flash. |  | 
        |  | 
        
        | Term 
 
        | Like many networking devices, Cisco devices use ______________ to provide status information. |  | Definition 
 
        | light emitting diode (LED) indicators |  | 
        |  | 
        
        | Term 
 
        | The connections on a Cisco router can be grouped into two categories: ____________ and ___________. |  | Definition 
 
        | In-band router interfaces and management ports |  | 
        |  | 
        
        | Term 
 
        | There are several ways to access user EXEC mode in the CLI environment on a Cisco router. Name the three most common ways. |  | Definition 
 
        | 
Console – This is a physical management port that provides out-of-band access to a Cisco device. Out-of-band access refers to access via a dedicated management channel that is used for device maintenance purposes only.Secure Shell (SSH) – SSH is a method for remotely establishing a secure CLI connection through a virtual interface, over a network. Unlike a console connection, SSH connections require active networking services on the device including an active interface configured with an address.Telnet - Telnet is an insecure method of remotely establishing a CLI session through a virtual interface, over a network. Unlike SSH, Telnet does not provide a securely encrypted connection. User authentication, passwords, and commands are sent over the network in plaintext. |  | 
        |  | 
        
        | Term 
 
        | What is the difference between in-band router interfaces and management ports on a Cisco router? Name the ports for each. |  | Definition 
 
        | In-Band Router Interfaces: Are the LAN (i.e. Gigabit Ethernet) and WAN (i.e., eHWICs) interfaces configured with IP addressing to carry user traffic. Ethernet interfaces are the most common LAN connections, while common WAN connections include serial and DSL interfaces. Management Ports: Include the console and AUX ports which are used to configure, manage, and troubleshoot the router. Unlike LAN and WAN interfaces, management ports are not used for packet forwarding user traffic. |  | 
        |  | 
        
        | Term 
 
        | Are management ports inband or out-of-band? |  | Definition 
 
        | Management ports are out-of-band. |  | 
        |  | 
        
        | Term 
 
        | Does the Cisco IOS allow two active interfaces on the same router to belong to the same network? |  | Definition 
 
        | No. Every configured and active interface on the router is a member or host on a different IP network. Each interface must be configured with an IPv4 address and subnet mask of a different network. |  | 
        |  | 
        
        | Term 
 
        | Describe the difference between Ethernet LAN and Serial WAN interfaces. |  | Definition 
 
        | Ethernet LAN Interfaces: Labeled GE 0/0 (i.e., G0/0) and GE 0/1 (i.e., G0/1). Ethernet interfaces are used for connecting to other Ethernet-enabled devices including switches, routers, firewalls, etc. Each LAN interface has its own IPv4 address and subnet mask and/or IPv6 address and prefix, which identifies it as a member of a specific network. Serial WAN Interfaces: Added to eHWIC0 and labeled Serial 0 (i.e., S0/0/0) and Serial 1 (i.e., S0/0/1). Serial interfaces are used for connecting routers to external WAN networks. Each serial WAN interface has its own IP address and subnet mask, which identifies it as a member of a specific network. |  | 
        |  | 
        
        | Term 
 
        | Files Copied to RAM during Bootup Fill in the following table:   [image] |  | Definition 
 
        | 1. IOS image 2. Other system-related files 3. Cisco IOS 4. startup-config 5. running-config |  | 
        |  | 
        
        | Term 
 
        | In order of occurrence, what are the three general processes that occur during the router bootup process? |  | Definition 
 
        | 1. Perform the POST and load the bootstrap program.   2. Locate and load the Cisco IOS software.   3. Locate and load the startup configuration file or enter setup mode. |  | 
        |  | 
        
        | Term 
 
        | Name and describe the first step in the router bootup process. |  | Definition 
 
        | 1. Performing POST and Load Bootstrap Program   During the Power-On Self-Test (POST), the router executes diagnostics from ROM on several hardware components, including the CPU, RAM, and NVRAM. After the POST, the bootstrap program is copied from ROM into RAM. The main task of the bootstrap program is to locate the Cisco IOS and load it into RAM.   Note: At this point, if you have a console connection to the router, you begin to see the output on the screen. |  | 
        |  | 
        
        | Term 
 
        | Name and describe the second step in the Cisco Router bootup process. |  | Definition 
 
        | 2. Locating and Loading Cisco IOS   The IOS is typically stored in flash memory and is copied into RAM for execution by the CPU. If the IOS image is not located in flash, then the router may look for it using a Trivial File Transfer Protocol (TFTP) server. If a full IOS image cannot be located, a limited IOS is copied into RAM, which can be used to diagnose problems and transfer a full IOS into Flash memory. |  | 
        |  | 
        
        | Term 
 
        | Name and describe the third step in the Cisco Router bootup process. |  | Definition 
 
        | 3. Locating and Loading the Configuration File   The bootstrap program then copies the startup configuration file from NVRAM into RAM. This becomes the running configuration. If the startup configuration file does not exist in NVRAM, the router may be configured to search for a TFTP server. If a TFTP server is not found, then the router displays the setup mode prompt. |  | 
        |  | 
        
        | Term 
 
        | When you're prompted to answer setup mode while booting a router, what should you always answer? |  | Definition 
 
        | No.   If you do enter setup mode, press Ctrl+C to exit setup mode.  |  | 
        |  | 
        
        | Term 
 
        | Which command do you use if you want to view information about your router? |  | Definition 
 | 
        |  | 
        
        | Term 
 
        | Which seven tasks should you complete to configure the initial settings on a router? |  | Definition 
 
        | 1. Configure the device name hostname name   2. Secure user EXEC mode line console 0 password password login   3. Secure remote Telnet / SSH access line vty 0 15 password password login   4. Secure privileged EXEC mode enable secret password   5. Secure all passwords in the config file service password-encryption   6. Provide legal notification banner motd delimiter message delimiter   7. Save the configuration copy running-config  startup-config |  | 
        |  | 
        
        | Term 
 
        | For routers to be reachable, the _________ must be configured. |  | Definition 
 
        | in-band router interfaces |  | 
        |  | 
        
        | Term 
 
        | What are the four steps that you take to configure an interface on a router? |  | Definition 
 
        | 
interface type-and-numberdescription  description-textip address ipv4-address subnet-maskno shutdown |  | 
        |  | 
        
        | Term 
 
        | What information should be added to the description of a router interface during interface configuration? |  | Definition 
 
        | Information about the type of network that the interface is connected to, and whether there are any routers on that network.    If the interface connects to an ISP or service carrier, enter the third party connection and contact information. |  | 
        |  | 
        
        | Term 
 
        | When configuring a router interface, what does the no shutdown command do? |  | Definition 
 
        | Using the no shutdown command activates the interface and is similar to powering on the interface. |  | 
        |  | 
        
        | Term 
 
        | For the physical layer to be active on a router interface, what must be done? |  | Definition 
 
        | The interface must also be connected to another device, such as a switch or a router. |  | 
        |  | 
        
        | Term 
 
        | There are several commands that can be used to verify interface configuration. The most useful of these is the _________ command. |  | Definition 
 | 
        |  | 
        
        | Term 
 
        | When using the show ip interface brief command, the configured and connected interfaces should display a ________ and _________. |  | Definition 
 
        | Status of “up” Protocol of “up” |  | 
        |  | 
        
        | Term 
 
        | When using the ping command to verify connectivity to a router, how should the router respond if it is connected? |  | Definition 
 
        | With five exclamation marks (!!!!!) |  | 
        |  | 
        
        | Term 
 
        | You can verify connectivity from a Cisco Router interface using the ______ command. |  | Definition 
 | 
        |  | 
        
        | Term 
 
        | Other than show ip interface brief, name and describe three commands that allow you to verify Cisco router interface configuration. |  | Definition 
 
        | 
show ip route - Displays the contents of the IPv4 routing table stored in RAM.show interfaces - Displays statistics for all interfaces on the device.show ip interface - Displays the IPv4 statistics for all interfaces on a router. |  | 
        |  | 
        
        | Term 
 
        | When is the only time that a default gateway is used by a host on a network? |  | Definition 
 
        | When the host wants to send a packet to a device on another network. |  | 
        |  | 
        
        | Term 
 
        | To remotely access the switch from another network using SSH or Telnet, the switch must have an SVI with an ________, _________, and __________ configured. |  | Definition 
 
        | IPv4 address subnet mask default gateway address |  | 
        |  | 
        
        | Term 
 
        | If a switch is accessed from a host within the local network, it does not need __________. Otherwise, if the switch is in a remote network, it needs ______. |  | Definition 
 
        | the default gateway IPv4 address. |  | 
        |  | 
        
        | Term 
 
        | To configure a default gateway on a switch, use the __________ global configuration command. |  | Definition 
 | 
        |  | 
        
        | Term 
 
        | Does a switch use its configured IP address and default gateway to determine where to send packets that it receives from hosts on its network? |  | Definition 
 
        | No. The IP address and default gateway information is only used for packets that originate from the switch. Packets originating from host computers connected to the switch must already have the default gateway address configured on their host computer operating systems. |  | 
        |  | 
        
        | Term 
 
        | When "bandwidth" is indicated on a WAN serial interface, what does this mean? |  | Definition 
 
        | Bandwidth on serial interfaces is used by the routing process to determine the best path to a destination. It does not indicate the actual bandwidth of the interface. The actual bandwidth is negotiated with the service provider. |  | 
        |  |