Sunteți pe pagina 1din 2

Laboratory 3: More on router configuration

In this session you will learn how to migrate from RIP to IGRP, configure VLSM.
Use the saved configu.ration files to configure routers as in laboratory 3. Test your configuration.
1. Now you can use the following to migrate to IGRP & EIGRP:
Router(config)#router eigrp 25
Router(config-router)#network 192.168.1.0
Router(config-router)#network 192.168.2.0
Router(config-router)#network 192.168.3.0
Where 25 is the autonomous system number. Use the appropriate addresses for your router. Test with the following commands:
Show ip route
Debug ip routing
Do not forget to undebug all
Note your findings and comment on them. Remove RIP (no router rip). Use the commands listed above for testing again. Comment on any
differences. You can migrate to EIGRP in a similar manner. Just replace IGRP with EIGRP.
2. Configuring VLSM: Change the ip address configuration of ALL serial interfaces using a subnet mask of 255.255.255.252. Test the
network connectivity and routing table. You must have RIP version 2 configured. Turn off automatic route summarisation.
Router(config)#router rip
Router(config-router)#version 2
Router(config-router)#no auto-summary
3. IP unnumbered: You can further save address space by using ip unnmbered for serial links. Try for all serial links. See the example
below. Test the network for connectivity.
Router(config)#interface s0/0
Router(config-if)#ip unnumbered fastethernet 0/0
4. Configuring DHCP: Use the following commands to configure DHCP services on a router.
Router(config)#service dhcp
Router(config)#ip dhcp pool MyNet
Router(dhcpconfig)#network 10.0.0.0 255.0.0.0
Router(config)#ip dhcp excluded-address 10.0.0.1 10.0.0.10
Router(dhcpconfig)#default-router 10.0.0.1
Router(dhcpconfig)#dns-server 10.0.0.3
Router(dhcpconfig)#netbios-name-server 10.0.0.4
router(dhcpconfig)#domain-name abc.net
Release and renew Hosts IP configuration. Check Hosts configuration with ipconfig /all to verify that it received the proper IP
address, subnet mask, default gateway, DNS server address, and WINS server address.

Laboratory 4: Routing

with OSPF (Example):


Configuring OSPF:
OSPF is enabled with the router ospf process-id global
configuration command. The process-id is a number
between 1 and 65535 and is chosen by the network
administrator. The process-id is locally significant.
The inverse of the subnet mask results in the wildcard
mask.

The area area-id refers to the OSPF area. An OSPF area is a group of routers that share link-state information. All
OSPF routers in the same area must have the same link-state information in their link-state databases. This is
accomplished by routers flooding their individual link-states to all other routers in the area. The syntax is given
below:
Router(config)#Router ospf process-ID
Router(config-router)#network network-address wildcard-mask area area-id
Hence, the network given (once all basic configuration is carried out) can be configured as follows:

Exercise:
Design a network to meet the following
requirements:
Use a class B address (e.g. 130.1.0.0)
Number of hosts per subnet is given below:
Subnets 1-3 support 2100-4000 hosts each
Subnets 4-5 support 1100-2000 hosts each
Subnets 6-7 support 1100-2000 hosts each
Subnets 8-10 support 2100-4000 hosts each
Serial Links support 2 hosts each

Diagram to be used for both Lab3-Lab4 exercises

S-ar putea să vă placă și