Ch 1 Routing Services Review Flashcards
Converged Networks
- Contains a variety of different types of traffic, including the following:
- Voice & Video traffic - IP telephony, video broadcase and conferencing.
- Voice Apps traffic - Generated by voice-related apps such as contact centers.
- Mission-Critical traffic - Generated by apps critical to an org such as info generated by a stock exchange app at a finance company, or patient records at a hospital.
- Transactional traffic - Generated by apps such as those for e-commerce.
- Routing Protocol traffic - data from whichever routing protocols are running in the network, such as RIP, EIGRP, OSPF.
- Network management traffic - including info about the status of the network and its devices.
Cisco IIN
A strategy that addresses how the network is integrated with businesses and business priorities.
Cisco IIN
Three PHASES
Phase 1: Integrated Transport- Everything (data, voice, video) consolidated into one IP network for a secure network convergence.
Phase 2: Integrated Services- When the network infrastructur is converged, IT resources can be pooled and shared, or virtualized, to flexibly address the changing needs of the org. Integrated services help to unify common elements, such as storage, and data center server capacity.
Phase 3: Integrated Application- This phase focuses on making the network application-aware so that it can optimize application performance and more efficiently. Caching, load-balancing, application-level security.
Cisco Enterprise Architecture
Cisco provides an enterprisewide systems architecture that helps companies to protect, optimize, and grow.
Cisco Enterprise Architecture - Components
- Cisco Enterprise Campus
- Intelligent switching - high availability with multilayer design, redundant hardware/software.
- IP communications, mobility and advanced security.
- employs 802.1x, EAP, IPsec, MPLS VPNs, and VLANS.
- Cisco Enterprise Data Center
- Supports requirements for consolidation, business continuanace and security.
- Redundant data centers provide backup using synchronous and asynchronous data and application replication.
- Cisco Enterprice Branch
- Allows enterprises to extend head-office applications and services to remote locations.
- Advanced routing, VPNs redundant WAN links, app content caching and local IP telephony features are all available with high levels of resilience for all branch offices.
- Cisco Enterprise Teleworker
- Allows enterprises to securely deliver voice & data services to remote offices over a standard broadband access services, providing a business-resiliency solution for the enterprise.
- Centralized management minimizes the IP support costs.
*
Cisco Hierarchical Network Model
The 3-layered hierarchical network model framework is designed for flexibility and facilitates implementation and troubleshooting.
- Access layer - this layer is used to grant users access to network devices. (Switches with ports that provide connectivity to PCs and servers.)
- Distribution layer - This layer aggregates the wiring closet connections and uses switches to segment workgroups and isolate netowrk problems in a campus environment. (Aggregates WAN connections at the Edge of the campus and provides policy-based connectivity - implements the org’s policies.)
- Core layer - Also referred to as the Backbone, this layer is a high-speed backbone and is designed to switch packets as fast as possible. (must provide a high level of availablity and adapt to changes quickly)
Cisco Enterprise Composite Network Model
Cisco as developed a set of best practices for security, comprising a blueprint for network designers and admins for the proper deployment of security solutions to support network apps and the existing network infrastructure.
This blueprint is called “SAFE”
SAFE includes the Enterprise Composite Network Model, which can be used to describe and analyze any enterprise network.
Cisco Enterprise Composite Network Model
Three Functional Areas
- Enterprise Campus- this functional area contains the modules required to build hierarchical, highly robust campus network. Access, Distribution, and Core principles are applied to these modules.
- Enterprise Edge- This functional area aggregates connectivity from the various elements at the edge of the enterprise network, connectivity including to remote locations, the Internet, and remote users.
- Service Provider Edge - this area is not implemented by the org; instead, it is included to represent connectivity to ISPs, WAN providers,a nd PSTN (public switched telephone networks)
Cisco Enterprise Composite Network Model
Functional Area - Enterprise Campus
The Enterprise Campus comprises the following modules:
- Building - contains access switches and end-user devices.
- Building Distribution - includes distribution multilayer switches to provide access between workgroups and to the CORE.
- Core - the backbone provides high-speed connection between buildings themselves, and between buildings and the Server Farm and Edge Distribution.
- Edge Distribution - the interface between the Enterprise Campus and the The Enterprise Edge. This module concentrtes connectivity to and from all branches and teleworkers accessing the campus via a WAN or the Internet.
- Server Farm - represents the campus’s data center.
- Management - represents the network management functionality, including monitoring, logging, security, and other management features within the enterprise.
Cisco Enterprise Composite Network Model
Functional Area - Enterprise Edge
The Enterprise Edge comprises the following modules:
- ISP - represents Internet connection.
- PSTN - reprsents all nonpermanent connections, including analog phones, celluar phones, and ISDN.
- Frame Relay/ATM - represents all permenent connections to remote locations, including Frame Relay, ATM, leased-lines, cable, DSL, and wireless bridging.
Review IP Routing Principles
The primary responsibility of a router is to direct packets destined for local or remote networks by:
- Determining the best path to send packets.
- Forwarding packets toward their destination.
To forward the packets, routers must know abou the networks directly connected to its interfaces; it calculates the subnet of the interface by using the address and subnet mask configured on that interface.
For networks not directly connected to one of its interfaces, however, the router must rely on outside information. A router can be made aware of remote networks in two ways:
- Static routing
- Dynamic routing
Static routing
Static routing
- an admin can manually configure the information.
- are commonly used when routing from a network to a stub network.
- A stub network - a network accessed by a single route -only one-way in and out.
- Static route out next-hop addrss has Default Admin Distance of 1
- Static router out exit interface has Default Admin Distance of 1* however, since it is using the local router interface as exit, it is considering it a directly connected route; and the Default Admin Distance will be between 0 and 1.
* Admin Distance - a routing protocols trustworthiness.
When to use Static Routing
- When it is undesirable to have dynamic routing updates forwarded across slow bandwidth links, such as a dialup link.
- When the admin needs total control over the routes used by the router, such as in troubleshooting.
- When a backup to a dynamically recognized route is necessary.
- When it is necessary to reach a network accessible by only one path (ie stub network)
- When router connects to ISP - it only needs to have a default route pointing toward the ISP router, rather than learning many routers from the ISP.
- When a router is underpowered and does not have the CPU or memory resources necessary to handle a dynamic routing protocol.
- Hub to spoke design.
Configure a Static Route
Syntax to configure a static route at the global config command.
R(config)#ip route prefix mask {addrs | interface} [dhcp] [distance] [name next-hop-name] [permanent | track number] [tag tag]
- Prefix mask - The IP network and subnet mask for the remote network to be entered into the IP routing table - the IP address of where you want to go to that is not directly connected to you.
- Address as exit - The IP address of the next hop that can be used to reach the destination network - the IP address of the neighboring router that is directy connected to you to get to the desired network.
- Interface as exit - The local router outbound interface to be used to reach the destination network.
- DHCP - optional
- Distance - optional
Example Static Route
Enter a static route on R3 to reach R1’s LAN
R3#conf t
R3(conf)#ip route 192.168.1.0 255.255.255.0 192.168.3.1
R3(conf)#exit
R3#show ip route
S 192.168.1.0/24 [1/0] via 192.168.3.1