Scenario1 P
Scenario1 P
Introduction
These Network Routing Principles Scenarios are a scaffolded approach to preparing you to succeed in
your ultimate Final Skills Assessments. The Scenarios build on skills from previous Scenarios until all
required components are covered. Scenario 1 is used to deploy a basic routing network using dynamic
routing protocols, in this particular case RIPv2.
Purpose
In this Scenario you will design and construct a network consisting of three routers and one switch using
RIPv2. The skills attained in this Scenario will serve as a baseline for all remaining scenarios in this
Portfolio.
Methodology
This portion of the handout contains the necessary information to design and build your network.
Information on the assessment is at the end of the handout.
Network Topology
The Network topology is displayed in the figure below.
Subnetting
The first task you must perform is to subnet your Corporate network to create subnets for your VLANs.
The subnetting requirements are:
Please have a copy of your working in case it is needed during assessment. You will need to document
your assignment of IP addresses to Router Interfaces and PC Hosts
NOTE: You may use a subnetting Calculator to calculate the subnets but you should be able to do it
more quickly without one
Before continuing, you should run all necessary tests to confirm that the PCs have full connectivity
between each other, and that all devices can communicate properly with other directly connected
devices. Good practice should ensure you confirm that all networks are properly configured for direct
communications before you work to interconnect them with a routing protocol. You should use your
existing troubleshooting skills to verify this step.
Static Routes
In all our Scenarios – and in standard Industry practice – routing tables for subnets within a set of
centrally managed routers (ISP, corporation, etc) are generally fully managed by Routing Protocols. In
this case, its an Interior Routing Protocol of the type you will be learning about in this Unit. For the
Despite this, we often remain with a special case where corporate networks, particularly smaller ones
will not participate in BGP and therefore need an alternate configuration to connect to the Internet.
Similarly, ISPs need to manage a way to route traffic from the wider Internet to private corporate
networks. In these cases, we typically make use of static routes installed on the two edge routers that
connect these networks together. A static route is a manually entered route (not automated via a
Routing Protocol).
The corporate network will typically install a Static Default Route on its gateway router directing all
traffic to the ISP. The Static Default Route is then advertised within the corporate such that all internal
routers are able to reach the wider Internet.
The ISP will typically install a Static Route on its edge router directing all traffic for the corporate
network to the company gateway router. The Static Route is then advertised within the ISP such that all
external traffic routers is properly routed to the corporate network.
In this Scenario, Sedam_R2 serves as the gateway router connected to the ISP. We need to install a
static default route on this device with a destination IP address of the ISP edge router. The static default
route is equivalent to the default route installed on end PCs where you specify the IP address of the
router on your subnet.
or:
When entering the Default Static Route on Sedam_R2, the destination network is 0.0.0.0/0 . This
network address and subnet mask pair refer to all IPv4 addresses on the Internet. As more specific
routers are always preferred, this implies that the Static Default Route is only used for packets that do
not match any other destinations. Within a corporate network, this means all packets with destinations
in the wider Internet. When programming the <gateway_address>, we use the IP address installed on
s0/1/1 on the ISP Router.
We also need to install a Static Route on the ISP router directing external traffic to the Corporate
network. In this case, the network address and subnet mask pair refer to the un-subnetted Corporare
TNE20002/TNE70003 - Network CCNA2 Final Exam Portfolio Task
Routing Principles
Network Address, and the <gateway_address> refers to the IP address installed on s0/1/1 on
Sedam_R2.
For this Scenario we will be deploying RIPv2. RIP is an older routing protocol that is not used in practice,
however is excellent as a first pass as it is easier to understand, and easier to debug when things are not
working as expected. The processes you use to configure RIPv2 will reflect across to more modern
protocols in later Scenarios.
router rip
no router rip
To add extra configuration to RIP, you need to re-enter the router rip command to enter RIP
configuration mode.
You can specify which version of RIP to use with the version command. Only RIPv2 supports VLSM
subnetting, you will need to use the following command
version 2
For RIP, you specify which interfaces to include in the routing protocol using the network command as
per below
network <network_address>
In this command, <network_address> must be an unsubnetted class A/B/C network address. RIP will
find all subnets within <network_address>, which interfaces those subnets are connected to, and
then broadcast those subnets to other routers. As an example, the command
network 165.63.0.0
Will find all subnets of 165.63.0.0/16 on the router, and send that information to other routers
Occasionally you will have interfaces that contain networks that you wish to advertise to other routers,
but you will not need – or want – to send broadcast messages on. These are typically edge networks
where there are only end-devices – and not other routers – connected to. In this case, RIP will normally
continuously send routing broadcast information to these interfaces. This consumes unnecessary traffic
on this internal network. As such, while we are still required to advertise this interface (because other
routers need to learn about the network) we will want to disable sending of advertisements on these
interfaces. This is done using the following command within the RIP configuration.
passive-interface <iface_name>
For example, the command passive-interface g0/0/1 will disable sending updates out this
interface. Note that it is possible to disable broadcasts (using the passive-interface command) on
sub-interfaces as well.
Gateway routers within organisations will typically have a default route pointing to the ISP router. This
will route all traffic to subnets which are not known to the ISP. For the entire corporate network to
function, all routers need a default gateway programmed to redirect traffic to the gateway router. Just
as with internal networks, we don’t want to program this manually, as broken connection can cause the
default route to fail. We need to use the routing protocol (in this case RIP) to broadcast the default
route. This can be done issuing the following command on the router with the static default route
programmed
default-information originate
show ip rip database – Prints information on the internal RIP tables used to calculate
routes
Assessment
The Scenario is assessed in class by your Lab Supervisor. When you have successfully configured and
tested the Scenario, you will need to demonstrate functionality to your Supervisor. Upon successful
demonstration, the Supervisor will ask you 1 or 2 questions about the Scenario in order to confirm that
you completed the work and not another student. Upon successfully answering these questions, the
Scenario will be marked as complete.
The due date for Scenario 1 is at the start of the Lab in Week 3. As a pass task, later completions are
accepted, however tardiness will increase your workload later in semester so you should target
completion by the due date.
NOTE: The final date for assessment of Scenario 1 is in Week 7. Failure to complete by Week 7 will
result in failing this task