Lab 26: Transparent Bridging, Remote Source-Route Bridging, LSAP Filtering-Part I

 <  Free Open Study  >  

Lab 25: OSPF Multiple Area Routing, Route Redistribution and Summarization ”Part II

Lab Walkthrough

Configure the Frame Relay switch and attach the four routers in a back-to-back manner to the Frame switch. Use V.35 cables or CSU/DSUs with crossover cables to connect the routers. Create the five LANs by the use of switches or hubs/MAUs, as illustrated in Figure 12-16.

When the physical connections are complete, assign IP addresses to all LAN and WAN interfaces, as depicted in Figure 12-16. Configure three loopback addresses on the chameleon router with the addresses 10.1.16.0/24, 10.1.17.0/24, and 10.1.18.0/24. Be sure that you can ping each router's local LAN and WAN interface before continuing. You will use frame-relay interface-dlci commands on all of the point-to-point interfaces. Example 12-48 lists the Frame Relay configurations, to this point, on all routers involved.

Example 12-48 Frame Relay Configurations
  hostname hin_hq   !   <<<text omitted>>>   !   interface Serial0   no ip address   encapsulation frame-relay   !   interface Serial0.1 point-to-point   ip address 10.1.128.1 255.255.255.0   frame-relay interface-dlci 121   !   interface Serial0.2 point-to-point   ip address 10.1.129.1 255.255.255.0   frame-relay interface-dlci 111   !   interface Serial0.3 point-to-point   ip address 10.1.130.1 255.255.255.0   frame-relay interface-dlci 150   !  ________________________________________________________________________  hostname gecko   !   <<<text omitted>>>   !   interface Serial0   no ip address   no ip directed-broadcast   encapsulation frame-relay   no ip mroute-cache   frame-relay lmi-type cisco   !   interface Serial0.1 point-to-point   ip address 10.1.128.2 255.255.255.0   no ip directed-broadcast   frame-relay interface-dlci 102   !  ________________________________________________________________________  hostname tree_frog   !   interface Serial0   no ip address   encapsulation frame-relay   no ip mroute-cache   !   interface Serial0.1 point-to-point   ip address 10.1.129.2 255.255.255.0   frame-relay interface-dlci 110   !  ________________________________________________________________________  hostname chameleon   !   <<<text omitted>>>   !   interface Serial0   no ip address   encapsulation frame-relay   frame-relay lmi-type cisco   !   interface Serial0.1 point-to-point   ip address 10.1.130.2 255.255.255.0   frame-relay interface-dlci 151   !  

To configure the WAN network between python and the boa, one end will need to be configured for clocking, or DCE. Example 12-49 lists the serial configuration of the boa router, which is the DCE side of the link. This is not necessary if you are using CSU/DSUs with crossover cables.

Example 12-49 Serial Configuration of the Router boa
  !   interface Serial1   ip address 10.1.80.2 255.255.255.0   clockrate 56000  

After the LAN and WAN interfaces have been configured and basic IP connectivity has been established, begin to configure OSPF and IGRP. First, you will configure OSPF, and then you will integrate it with IGRP. Recalling the detailed process to configure OSPF, you have the following:

Step 1. Perform area design, DR/BDR designation.

Step 2. Assign RIDs with the use of loopback on routers prior to Cisco IOS Software 12.0.

Step 3. Enable OSPF, and assign RIDs on routers running Cisco IOS Software Release 12.0 and later.

Step 4. Configure OSPF interfaces.

Step 5. Configure additional neighbor support, if required.

Step 6. Configure OSPF area types and virtual links.

Step 7. Configure other OSPF parameters, such as summarization and redistribution.

Step 1 involves area design. In this model, the Frame Relay point-to-point networks are in OSPF Area 0. The LAN interface of the gecko router is in OSPF Area 10, while the LAN interfaces of the tree_frog and python routers are in OSPF Area 20. The serial interface of the python router and all the interfaces of the boa router are in OSPF Area 75. As you probably can tell at this point, you will need a virtual link to connect Area 75 to the rest of the OSPF network.

Step 2 involves setting RIDs on the routers that have Cisco IOS Software prior to Release 12.0. To accomplish this, you will use loopback interfaces on those routers. Figure 12-17 shows the diagram with the router IDs that you have assigned and the virtual link marked .

Figure 12-17. HIN with RIDs Assigned

graphics/12fig17.gif

Again, Step 3 is where the real configuration begins. On all the routers except chameleon, you will enable OSPF in AS 2001 with the command router ospf 2001. On routers that have Cisco IOS Software Release 12.0, use the router command router-id ip_address to assign the static RIDs to the routers.

Step 4 involves configuring which interfaces will participate in OSPF routing and the areas in which they will reside. On the hin_hq router, the E0 interface will be in Area 0, along with the s0.1 and s0.2 point-to-point interfaces. Example 12-50 lists the OSPF configuration, to this point, of the router hin_hq.

Example 12-50 Preliminary OSPF Configuration of hin_hq
  router ospf 2001   router-id 192.168.200.5   redistribute igrp 2001 subnets tag 5   network 10.1.5.1 0.0.0.0 area 0   network 10.1.128.1 0.0.0.0 area 0   network 10.1.129.1 0.0.0.0 area 0   default-metric 64   !  

The network statements in the previous example could be simplified with one command ” network 10.1.0.0 0.0.255.255 area 0. In production networks, it pays to be specific on the mask. As changes occur in the network, new interfaces in different areas might be added. If the wildcard mask is too general, OSPF will have to be interrupted while new, more specific network statements are configured.

The LAN interface of the gecko router resides in OSPF Area 10, while its serial interface resides in OSPF Area 0. The tree_frog routers LAN interface resides in OSPF Area 20, while its serial interface also resides in OSPF Area 0. Example 12-51 presents the preliminary OSPF configurations for the gecko and tree_frog routers.

Example 12-51 Preliminary OSPF Configurations of the gecko and tree_frog Routers
  hostname gecko   !   router ospf 2001   router-id 192.168.200.6   network 10.1.6.1 0.0.0.0 area 10   network 10.1.128.2 0.0.0.0 area 0   !  ________________________________________________________________  hostname tree_frog   !   router ospf 2001   network 10.1.1.1 0.0.0.0 area 20   network 10.1.129.2 0.0.0.0 area 0   !  

NOTE

The tree_frog router does not show a router ID because it is using a loopback interface for its RID. The tree_frog router is running a Cisco IOS Software Release prior to 12.0.


The python router will have one interface in Area 20 and one in Area 75, while the boa router will have both interfaces in Area 75. Example 12-52 lists the OSPF configuration of these routers.

Example 12-52 Preliminary OSPF Configuration of the python and boa Routers
  hostname python   !   router ospf 2001   network 10.1.80.1 0.0.0.0 area 75   network 10.1.1.2 0.0.0.0 area 20   !  ____________________________________________________________________  hostname boa   !   router ospf 2001   network 10.1.0.0 0.0.255.255 area 75   !  

Step 5 requires you to configure the additional neighbor support. In this model, adjacencies automatically form over the Frame Relay point-to-point networks. No additional neighbor configuration support is needed.

At this point, OSPF is operational, except for Area 75, and you have IP connectivity to every router in the network. To verify this, you can examine the neighbors and route table, as well as perform standard ping s tests. Example 12-53 lists the output of the show ip ospf neighbor commands on the hin_hq, gecko, tree_frog, and python routers.

Example 12-53 Verifying OSPF Neighbors
 hin_hq#  show ip ospf neighbor  Neighbor ID     Pri   State           Dead Time   Address         Interface 192.168.200.6     1   FULL/  -        00:00:35    10.1.128.2      Serial0.1 192.168.200.1     1   FULL/  -        00:00:32    10.1.129.2      Serial0.2 hin_hq# __________________________________________________________________________________ tree_frog#  show ip ospf neighbor  Neighbor ID     Pri   State           Dead Time   Address         Interface 192.168.200.8     1   FULL/DR         00:00:35    10.1.1.2        Ethernet2 192.168.200.5     1   FULL/  -        00:00:34    10.1.129.1      Serial0.1 tree_frog# __________________________________________________________________________________ phython#  show ip ospf neighbor  Neighbor ID     Pri   State           Dead Time   Address         Interface 192.168.200.1     1   FULL/BDR        00:00:39    10.1.1.1        Ethernet0 192.168.200.7     1   FULL/  -        00:00:35    10.1.80.2       Serial0 python# 

Step 6 requires you to configure OSPF special areas, such as stub areas ”or, in this case, virtual links. As mentioned previously, you will need a virtual link to connect Area 75 to the rest of the OSPF domain. To configure a virtual link, you need to locate the two routers that will serve as your endpoints for the virtual links. In this model, Area 20 will be your transit area; therefore, your virtual links need to be defined on the routers tree_frog and python. The syntax on the tree_frog router will be area 20 virtual-link 192.168.200.8, which is the RID of the python router. The python router, in turn , points to the RID of the tree_frog router. The syntax on the python router will be area 20 virtual-link 192.168.200.1.

Static router IDs are vital to the operation of OSPF virtual circuits. If you have trouble bringing up the virtual link and have verified that there are no configuration errors, try reloading the routers. A common problem with virtual links is RIDs, and this will reassign them in routers running Cisco IOS Software prior to Release 12.0. To view whether the virtual link is working, use the show ip ospf virtual-link command. The routes from the boa router also should start appearing throughout the OSPF domain. Example 12-54 lists the output of the show ip ospf virtual-link command on the tree_frog router.

Example 12-54 Verifying the Virtual Link
 tree_frog#  show ip ospf virtual-links  Virtual Link OSPF_VL0 to router 192.168.200.8 is up   Run as demand circuit   DoNotAge LSA allowed.   Transit area 20, via interface Ethernet2, Cost of using 10   Transmit Delay is 1 sec, State POINT_TO_POINT,   Timer intervals configured, Hello 10, Dead 40, Wait 40, Retransmit 5     Hello due in 00:00:00     Adjacency State FULL (Hello suppressed) tree_frog# 

The OSPF domain is now fully functional. By viewing the route table on the boa router, you can see that you have routes to every destination in the network, as shown in Example 12-55.

Example 12-55 Verifying the OSPF Domain
 boa#  show ip route  Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP        D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area        N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2        E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP        i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, * - candidate default        U - per-user static route, o - ODR Gateway of last resort is not set      10.0.0.0/8 is variably subnetted, 8 subnets, 4 masks O IA    10.1.1.0/27 [110/74] via 10.1.80.1, 00:28:02, Serial1 O IA    10.1.6.0/28 [110/212] via 10.1.80.1, 00:28:02, Serial1 O IA    10.1.5.0/24 [110/148] via 10.1.80.1, 00:28:02, Serial1 C       10.1.70.0/24 is directly connected, Ethernet0 C       10.1.80.0/24 is directly connected, Serial1 O IA    10.1.129.0/24 [110/138] via 10.1.80.1, 00:28:02, Serial1 O IA    10.1.128.0/30 [110/266] via 10.1.80.1, 00:28:02, Serial1 O IA    10.1.128.0/24 [110/202] via 10.1.80.1, 00:28:02, Serial1 C    192.168.200.0/24 is directly connected, Loopback0 boa# 

To integrate the IGRP domain, configure IGRP on the chameleon and hin_hq routers. Example 12-56 lists the IGRP configuration on the hin_hq router. Be sure to use the passive-interface command to prevent unnecessary broadcast from the Ethernet and other serial interfaces. The IGRP configuration on hin_hq and chameleon will be identical.

Example 12-56 Configuring IGRP on hin_hq
  !   router igrp 2001   passive-interface Ethernet0   passive-interface Serial0.1   passive-interface Serial0.2   network 10.0.0.0   !  

Next, you need to configure redistribution between IGRP and OSPF. There is only one redistribution point in the network, so you do not have to worry about route feedback or redistribution loops . Example 12-57 lists the configuration of the hin_hq router, highlighting the redistribution commands. In this example, you use an OSPF default metric of 64 because it is the cost of a T1 interface. You also use the subnet keyword to redistribute multiple subnets into OSPF.

Example 12-57 Redistribution on the hin_hq Router
  !   router ospf 2001   router-id 192.168.200.5    redistribute igrp 2001 subnets tag 5  graphics/u2190.gif Redistribute IGRP into OSPF   network 10.1.5.1 0.0.0.0 area 0   network 10.1.128.1 0.0.0.0 area 0   network 10.1.129.1 0.0.0.0 area 0    default-metric 64  graphics/u2190.gif Default metric or cost   !   router igrp 2001    redistribute ospf 2001  graphics/u2190.gif Redistribute OSPF into IGRP   passive-interface Ethernet0   passive-interface Serial0.1   passive-interface Serial0.2   network 10.0.0.0    default-metric 1544 10 254 1 1500  graphics/u2190.gif IGRP metric   !  

After redistribution is enabled, if you viewed the route table on the chameleon router, you would find the results in Example 12-58.

Example 12-58 Route Table of the chameleon Router
 chameleon#  show ip route  Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP        D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area        N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2        E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP        i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area        * - candidate default, U - per-user static route, o - ODR        P - periodic downloaded static route Gateway of last resort is not set      10.0.0.0/24 is subnetted, 10 subnets C       10.1.3.0 is directly connected, TokenRing0 I       10.1.5.0 [100/8576] via 10.1.130.1, 00:00:00, Serial0.1 C       10.1.18.0 is directly connected, Loopback22 C       10.1.17.0 is directly connected, Loopback21 C       10.1.16.0 is directly connected, Loopback20 I       10.1.70.0 [100/8486] via 10.1.130.1, 00:00:00, Serial0.1 I       10.1.80.0 [100/8486] via 10.1.130.1, 00:00:00, Serial0.1 C       10.1.130.0 is directly connected, Serial0.1 I       10.1.129.0 [100/10476] via 10.1.130.1, 00:00:00, Serial0.1 I       10.1.128.0 [100/10476] via 10.1.130.1, 00:00:00, Serial0.1 chameleon# 

At first glance, it might appear that the route table is complete; however, upon closer examination, two routes are missing: 10.1.6.0/28 and 10.1.1.0/27. This is because IGRP can receive only routes that are on the same bit boundary as the interface receiving the routes. For the chameleon router to receive all the OSPF routes, they must be summarized on a 24-bit boundary that matches the bit boundary on its s0.1 interface. To summarize Area 20 and Area 10, use the router command area x range statements. The area range statement for the gecko router will be area 10 range 10.1.6.0 255.255.255.0, and the area range statement on the tree_frog router will be area 20 range 10.1.1.0 255.255.255.0. After adding the area range statements, the route table on the chameleon router now has all the routes to the OSPF domain, as verified by Example 12-59.

Example 12-59 Route Table of the chameleon Router
 chameleon#  show ip route  Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP        D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area        N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2        E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP        i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area        * - candidate default, U - per-user static route, o - ODR        P - periodic downloaded static route Gateway of last resort is not set      10.0.0.0/24 is subnetted, 12 subnets C       10.1.3.0 is directly connected, TokenRing0 I       10.1.1.0 [100/8486] via 10.1.130.1, 00:00:28, Serial0.1 I       10.1.6.0 [100/8486] via 10.1.130.1, 00:00:28, Serial0.1 I       10.1.5.0 [100/8576] via 10.1.130.1, 00:00:28, Serial0.1 C       10.1.18.0 is directly connected, Loopback22 C       10.1.17.0 is directly connected, Loopback21 C       10.1.16.0 is directly connected, Loopback20 I       10.1.70.0 [100/8486] via 10.1.130.1, 00:00:28, Serial0.1 I       10.1.80.0 [100/8486] via 10.1.130.1, 00:00:29, Serial0.1 C       10.1.130.0 is directly connected, Serial0.1 I       10.1.129.0 [100/10476] via 10.1.130.1, 00:00:29, Serial0.1 I       10.1.128.0 [100/10476] via 10.1.130.1, 00:00:29, Serial0.1 chameleon# 

If you have not configured the loopback interfaces on the chameleon router, do so at this time. You want to configure the hin_hq router to advertise the routes 10.1.16.0/24, 10.1.17.0/24, and 10.1.18.0/24 as a single OSPF route. To summarize networks from another AS, use the OSPF command summary-address command. The aggregate address is 10.1.16.0 with a 255.255.252.0 mask. Example 12-60 shows the OSPF configuration of hin_hq now.

Example 12-60 OSPF Configuration of hin_hq
  router ospf 2001   router-id 192.168.200.5   summary-address 10.1.16.0 255.255.252.0   redistribute igrp 2001 subnets tag 5   network 10.1.5.1 0.0.0.0 area 0   network 10.1.128.1 0.0.0.0 area 0   network 10.1.129.1 0.0.0.0 area 0   default-metric 64   !   router igrp 2001   redistribute ospf 2001   passive-interface Ethernet0   passive-interface Serial0.1   passive-interface Serial0.2   network 10.0.0.0   default-metric 1544 10 254 1 1500   !  

To view the summary route, list the route table on the boa router, as in Example 12-61.

Example 12-61 Route Table of the boa Router, Highlighting the Summary Route
 boa#  show ip route  Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP        D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area        N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2        E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP        i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, * - candidate default        U - per-user static route, o - ODR Gateway of last resort is not set      10.0.0.0/8 is variably subnetted, 12 subnets, 4 masks O E2    10.1.3.0/24 [110/64] via 10.1.80.1, 00:37:49, Serial1 O IA    10.1.1.0/27 [110/74] via 10.1.80.1, 00:27:57, Serial1 O IA    10.1.1.0/24 [110/84] via 10.1.80.1, 00:27:57, Serial1 O IA    10.1.6.0/24 [110/212] via 10.1.80.1, 00:28:57, Serial1 O IA    10.1.5.0/24 [110/148] via 10.1.80.1, 01:13:37, Serial1  O E2    10.1.16.0/22 [110/64] via 10.1.80.1, 00:17:23, Serial1  C       10.1.70.0/24 is directly connected, Ethernet0 C       10.1.80.0/24 is directly connected, Serial1 O E2    10.1.130.0/24 [110/64] via 10.1.80.1, 00:37:50, Serial1 O IA    10.1.129.0/24 [110/138] via 10.1.80.1, 01:13:37, Serial1 O IA    10.1.128.0/30 [110/266] via 10.1.80.1, 01:13:37, Serial1 O IA    10.1.128.0/24 [110/202] via 10.1.80.1, 01:13:37, Serial1 C    192.168.200.0/24 is directly connected, Loopback0 boa# 

The final portion of the lab calls for you to prevent the LAN network of the router boa, 10.1.3.0/24, from the gecko router. To accomplish this, configure an inbound distribute list on the gecko router. Example 12-62 demonstrates configuration of the filter on the gecko router.

Example 12-62 Configuring a Distribute List on gecko
 gecko(config)#  router ospf 2001   gecko(config-router)#    distribute-list 10 in s0.1  graphics/u2190.gif Applied to s0.1  gecko(config-router)#  exit   gecko(config)#    access-list 10 deny 10.1.70.0 0.0.0.255  graphics/u2190.gif deny 10.1.70.0/24  gecko(config)#  access-list 10 permit any  gecko(config)# 

To verify the access list, clear the route table on the gecko router and then relist it. Example 12-63 lists the route table of gecko after the distribute list is applied.

Example 12-63 Route Table on gecko
 gecko#  show ip route  Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP        D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area        N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2        E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP        i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area        * - candidate default, U - per-user static route, o - ODR        P - periodic downloaded static route Gateway of last resort is not set      10.0.0.0/8 is variably subnetted, 11 subnets, 5 masks O E2    10.1.3.0/24 [110/64] via 10.1.128.1, 00:00:03, Serial0.1 O IA    10.1.1.0/27 [110/148] via 10.1.128.1, 00:00:03, Serial0.1 O IA    10.1.1.0/24 [110/138] via 10.1.128.1, 00:00:03, Serial0.1 C       10.1.6.0/28 is directly connected, Ethernet0 O       10.1.5.0/24 [110/74] via 10.1.128.1, 00:00:04, Serial0.1 O E2    10.1.16.0/22 [110/64] via 10.1.128.1, 00:00:03, Serial0.1 O IA    10.1.80.0/24 [110/202] via 10.1.128.1, 00:00:04, Serial0.1 O E2    10.1.130.0/24 [110/64] via 10.1.128.1, 00:00:04, Serial0.1 O       10.1.129.0/24 [110/128] via 10.1.128.1, 00:00:04, Serial0.1 O       10.1.128.0/24 [110/128] via 10.1.128.1, 00:00:04, Serial0.1 C       10.1.128.0/24 is directly connected, Serial0.1 gecko# 

The optional portion of the lab involves changing the hello interval on the tree_frog router. To perform this, you need to change the ip ospf hello-interval on the E2 interface of the tree_frog router. If you change the timer on just one interface, the neighbor soon will drop and routing will be compromised. Whenever changing timers in OSPF, be sure to change the timers on all routers on the same IP network. In this model, you have to change the timer on the tree_frog router and also on the python router. Example 12-64 demonstrates the timer configuration on the tree_frog router.

Example 12-64 Changing the OSPF Hello Timer on an Interface
 tree_frog(config)#  int e2  tree_frog(config-if)#  ip ospf hello-interval 30  tree_frog(config-if)# 

To verify the timer change, check the status of the OSPF neighbors and perform the show ip ospf interface command on the interface. Example 12-65 lists the OSPF interface on the tree_frog router with the new timer change. The OSPF dead timer and wait timer automatically are adjusted to four times the hello timer.

Example 12-65 Viewing the OSPF Timer Change on tree_frog
 tree_frog#  show ip ospf interface e2  Ethernet2 is up, line protocol is up   Internet Address 10.1.1.1/27, Area 20   Process ID 2001, Router ID 192.168.200.1, Network Type BROADCAST, Cost: 10   Transmit Delay is 1 sec, State BDR, Priority 1   Designated Router (ID) 192.168.200.8, Interface address 10.1.1.2   Backup Designated router (ID) 192.168.200.1, Interface address 10.1.1.1  Timer intervals configured, Hello 30, Dead 120, Wait 120, Retransmit 5  Hello due in 00:00:11   Neighbor Count is 1, Adjacent neighbor count is 1     Adjacent with neighbor 192.168.200.8  (Designated Router)   Suppress hello for 0 neighbor(s) tree_frog# 

Examples 12-66 concludes this lab walkthrough with the complete configurations of the routers used in the model of the HIN.

Example 12-66 Final Configurations of the HIN
  hostname hin_hq   !   <<<text omitted>>>   !   interface Ethernet0   ip address 10.1.5.1 255.255.255.0   !   interface Serial0   no ip address   encapsulation frame-relay   !   interface Serial0.1 point-to-point   ip address 10.1.128.1 255.255.255.0   frame-relay interface-dlci 121   !   interface Serial0.2 point-to-point   ip address 10.1.129.1 255.255.255.0   frame-relay interface-dlci 111   !   interface Serial0.3 point-to-point   ip address 10.1.130.1 255.255.255.0   frame-relay interface-dlci 150   !   router ospf 2001   router-id 192.168.200.5   summary-address 10.1.16.0 255.255.252.0   redistribute igrp 2001 subnets tag 5   network 10.1.5.1 0.0.0.0 area 0   network 10.1.128.1 0.0.0.0 area 0   network 10.1.129.1 0.0.0.0 area 0   default-metric 64   !   router igrp 2001   redistribute ospf 2001   passive-interface Ethernet0   passive-interface Serial0.1   passive-interface Serial0.2   network 10.0.0.0   default-metric 1544 10 254 1 1500   !   ip classless   !  __________________________________________________________________________  hostname gecko   !   <<<text omitted>>>   !   interface Ethernet0   ip address 10.1.6.1 255.255.255.240   no ip directed-broadcast   !   interface Serial0   no ip address   no ip directed-broadcast   encapsulation frame-relay   no ip mroute-cache   frame-relay lmi-type cisco   !   interface Serial0.1 point-to-point   ip address 10.1.128.2 255.255.255.0   frame-relay interface-dlci 102   !   <<<text omitted>>>   !   router ospf 2001   router-id 192.168.200.6   area 10 range 10.1.6.0 255.255.255.0   network 10.1.6.1 0.0.0.0 area 10   network 10.1.128.2 0.0.0.0 area 0   distribute-list 10 in Serial0.1   !   ip classless   !  __________________________________________________________________________  hostname tree_frog   !   interface Loopback0   ip address 192.168.200.1 255.255.255.0   !   interface Ethernet0   no ip address   shutdown   media-type 10BaseT   !   interface Ethernet1   no ip address   shutdown   media-type 10BaseT   !   interface Ethernet2   ip address 10.1.1.1 255.255.255.224   ip ospf hello-interval 30   media-type 10BaseT   !   interface Serial0   no ip address   encapsulation frame-relay   no ip mroute-cache   !   interface Serial0.1 point-to-point   ip address 10.1.129.2 255.255.255.0   frame-relay interface-dlci 110   !   <<<text omitted>>>   !   router ospf 2001   network 10.1.1.1 0.0.0.0 area 20   network 10.1.129.2 0.0.0.0 area 0   area 20 range 10.1.1.0 255.255.255.0   area 20 virtual-link 192.168.200.8   !   ip classless   !  __________________________________________________________________________  hostname python   !   <<<text omitted>>>   !   interface Loopback0   ip address 192.168.200.8 255.255.255.0   !   interface Ethernet0   ip address 10.1.1.2 255.255.255.224   ip ospf hello-interval 30   !interface Serial1   ip address 10.1.80.1 255.255.255.0   !   <<<text omitted>>>   !   router ospf 2001   network 10.1.80.1 0.0.0.0 area 75   network 10.1.1.2 0.0.0.0 area 20   area 20 virtual-link 192.168.200.1   !   ip classless   !  __________________________________________________________________________  hostname boa   !   <<<text omitted>>>   !   interface Loopback0   ip address 192.168.200.7 255.255.255.0   !   interface Ethernet0   ip address 10.1.70.1 255.255.255.0   !   interface Serial1   ip address 10.1.80.2 255.255.255.0   clockrate 56000   !   router ospf 2001   network 10.1.0.0 0.0.255.255 area 75   !   ip classless   !  __________________________________________________________________________  hostname chameleon   !   <<<text omitted>>>   !   interface Loopback20   ip address 10.1.16.1 255.255.255.0   !   interface Loopback21   ip address 10.1.17.1 255.255.255.0   !   interface Loopback22   ip address 10.1.18.1 255.255.255.0   !   interface Serial0   no ip address   encapsulation frame-relay   frame-relay lmi-type cisco   !   interface Serial0.1 point-to-point   ip address 10.1.130.2 255.255.255.0   frame-relay interface-dlci 151   !   interface TokenRing0   ip address 10.1.3.1 255.255.255.0   ring-speed 16   !   router igrp 2001   network 10.0.0.0   !   ip classless  
 <  Free Open Study  >  


CCIE Practical Studies, Volume I
CCIE Practical Studies, Volume I
ISBN: 1587200023
EAN: 2147483647
Year: 2001
Pages: 283
Authors: Karl Solie

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net