Cisco,CCNA,CCNP,Certification, computer Cisco CCNA / CCNP Certification Exam Lab: Frame Relay Subint


----------------------------------------------------------Permission is granted for the below article to forward,reprint, distribute, use for ezine, newsletter, website,offer as free bonus or part of a product for sale as longas no changes a Gone are those times when the companies and the organisations didn't need a hi-tech system to handle them. Owing to the considerable increase in the business sector and thus, an enormous increase in the complexity of the organisational struc


Earning your Cisco CCNA and CCNP is a tough proposition, and part of that is the fact that you quickly learn that there’s usually more than one way to do things with Cisco routers – and while that’s generally a good thing, you better know the ins and outs of all options when it comes to test day and working on production networks. Working with Frame Relay subinterfaces and split horizon is just one such situation.One reason for the use of subinterfaces isto circumvent the rule of split horizon. You recall from your CCNA studies that split horizon dictates that a route cannot be advertised out the same interface upon which it was learned in the first place. In the following example,R1 is thehub and R2 and R3 are the spokes. All three routers areusing their physical interfaces for frame relayconnectivity, and they are also running RIPv2 172.12.123.0 /24. Each router is also advertising a loopback interface, using the router number for each octet.R1(config)#int s0R1(config-if)#ip address 172.12.123.1 255.255.255.0R1(config-if)#no frame inverseR1(config-if)#frame map ip 172.12.123.2 122 broadcastR1(config-if)#frame map ip 172.12.123.3 123 broadcastR1(config-if)#no shutR2(config)#int s0R2(config-if)#encap frameR2(config-if)#no frame inverR2(config-if)#frame map ip 172.12.123.1 221 broadcastR2(config-if)#frame map ip 172.12.123.3 221 broadcastR2(config-if)#ip address 172.12.123.2 255.255.255.0R3(config)#int s0R3(config-if)#encap frameR3(config-if)#no frame inverR3(config-if)#frame map ip 172.12.123.1 321 broadcastR3(config-if)#frame map ip 172.12.123.2 321 broadcastR3(config-if)#ip address 172.12.123.3 255.255.255.0R1#show ip route rip 2.0.0.0/32 is subnetted, 1 subnetsR 2.2.2.2 [120/1] via 172.12.123.2, 00:00:20, Serial0 3.0.0.0/32 is subnetted, 1 subnetsR 3.3.3.3 [120/1] via 172.12.123.3, 00:00:22, Serial0R2#show ip route rip 1.0.0.0/32 is subnetted, 1 subnetsR 1.1.1.1 [120/1] via 172.12.123.1, 00:00:06, Serial0R3#show ip route rip 1.0.0.0/32 is subnetted, 1 subnetsR 1.1.1.1 [120/1] via 172.12.123.1, 00:00:04, Serial0The hub router R1 has a route to both loopbacks, but neither spoke has a route to the other spoke's loopback. That's because split horizon prevents R1 from advertising a network via Serial0 if the route was learned on Serial0 to begin with. We've got two options here, one of which is to disable spilt horizon on the interface. While doing so will have the desired effect in our little network, disabling split horizon is not a good idea and should be avoided whenever possible. We’re not going to do it in this lab, but here is the syntax to do so:R1(config)#interface serial0R1(config-if)#no ip split-horizonA better solution is to configure subinterfaces on R1. The IP addressing will have to be revisited, but that's no problem here. R1 and R2 will use172.12.123.0 /24to communicate, while R1 and R3 will use 172.12.13.0 /24. R3's serial0 interface will need to be renumbered, so let's look at all three router configurations:R1(config)#interface serial0R1(config-if)#encap frameR1(config-if)#no frame inverse-arpR1(config-if)#no ip addressR1(config-if)#interface serial0.12 multipointR1(config-subif)#ip address 172.12.123.1 255.255.255.0R1(config-subif)#frame map ip 172.12.123.2 122 broadcastR1(config-subif)#interface serial0.31 point-to-pointR1(config-subif)#ip address 172.12.13.1 255.255.255.0R1(config-subif)#frame interface-dlci 123R2(config)#int s0R2(config-if)#ip address 172.12.123.2 255.255.255.0R2(config-if)#encap frameR2(config-if)#frame map ip 172.12.13.3221 broadcastR2(config-if)#frame map ip 172.12.123.1221 broadcastR3(config)#int s0R3(config-if)#ip address 172.12.13.3 255.255.255.0R3(config-if)#encap frameR3(config-if)#frame map ip 172.12.13.1 321 broadcastR3(config-if)#frame map ip 172.12.123.2 321 broadcastA frame map statement always names the REMOTE IP address and the LOCAL DLCI. Don't forget the broadcast option!Show frame map shows us that all the static mappings on R1 are up and running. Note the "static" output, which indicates these mappings are a result of using the frame map command. Pings are not shown, but all three routers can ping each other at this point.R1#show frame mapSerial0 (up): ip 172.12.123.2 dlci 122(0x7A,0x1CA0), static, broadcast, CISCO, status defined, activeSerial0 (up): ip 172.12.13.3 dlci 123(0x7B,0x1CB0), static, broadcast, CISCO, status defined, activeAfter the 172.12.13.0 /24 network is added to R1 and R3’s RIP configuration, R2 and R3 now have each other's loopback network in their RIP routing tables.R2#show ip route rip 1.0.0.0/32 is subnetted, 1 subnetsR1.1.1.1 [120/1] via 172.12.123.1, 00:00:20, Serial0 3.0.0.0/32 is subnetted, 1 subnetsR 3.3.3.3 [120/1] via 172.12.123.1, 00:00:22, Serial0R3#show ip route rip 1.0.0.0/32 is subnetted, 1 subnetsR1.1.1.1 [120/1] via 172.12.13.1, 00:00:20, Serial0 2.0.0.0/32 is subnetted, 1 subnetsR2.2.2.2 [120/1] via 172.12.13.1, 00:00:22, Serial0While turning split horizon off is one way to achieve total IP connectivity, doing so can have other unintended results. The use of subinterfaces is a more effective way of allowing the spokes to see the hub's loopback network.

Cisco,CCNA,CCNP,Certification,

computer

Equipment Rental Software – Features And Cost

Equipment rental management software is an essential thing these days for any equipment rental company.A well-developed equipment rental software provides you with a variety of features that can really help you maintain and organise your cus ...

computer

5 Big Reasons Why I Migrated From Angularjs To React

I have 5 main reasons for my angularjs to react migration. No, it's not a comparison on which is better. A comparison between apples and oranges would make no point. React is a library, and angular is a framework. Both can do stuff in their ...

computer

How to troubleshoot McAfee error 2318?

Security software means McAfee! For many computer users, McAfee antivirus is the only choice for security software as it provides all the features and tools which are necessary for device and data protection. This robust antivirus merely sho ...

computer

Manage Multiple Counter With AlignBooks Point of Sale

Fulfilling your businesss needs which can grow your firm is our aim. AlignBooks is better known for providing a strong pillar to newly started or midway businesss. Those companies who dont want to fall back with irregularity manage the inven ...

computer

How to Autoplay Embedded YouTube Videos

Source: How to Autoplay Embedded YouTube VideosEmbedding a video or audio enables the users to share their videos with any of their preferred sites or any social networking platforms. They can do so by copying the embedded link of the parti ...

computer

3 Major Mistakes to Avoid in Retail Business

Truth be told, nearly half of the retail businesses survive longer than four years and which can be something to ponder for a newbie before stepping into the industry. However, this being said, it is also true that you can excel in the indus ...

computer

Start Your Own Computer Repair Business

1. Know your street value. In the early 90's, running a PC repair business centered around selling parts and products, with service on the side. Today, it's about selling hours. If you run a business, you need to consider the X3 rule. That m ...

computer

How Establishments Show Up in Restaurant Searches

The revolutionary rise of technology has made things easy-peasy for consumers in the restaurant industry. Unlike the old days, the availability of innumerable platforms has made it possible for diners to choose from various searching options ...

computer

GuildWars 2 :

The last expansion pack for Guild Wars 2 was Path of Fire, which was released in 2017 and brings you a new enemy-Balthazar, the evil god of war. Although this doesn't sound like another expansion pack currently in production, some fans ma ...

computer

Customer Support at the time of COVID-19 Pandemic

COVID-19 is the worst crisis of our time as we observe social distancing protocols being imposed all around the world. While these measures are a step in effectively managing the COVID-19 pandemic, Hospitality and Retail businesses are confr ...

computer

How to Choose a Contract Management Solution (CLM)?

Contract life cycle management (CLM) systems can simplify and automate contract creation, negotiation, execution and storage. They are an intelligent alternative to the tedious hand tools formerly used for these tasks, which lacked visibili ...

computer

Contacting Google Live Person to Resolve Your Issues

Users are fond of all the Google supported products and look forward to the best services. Also, Google as a whole has never disappointed its users and helped them at every point with its commendable services. Also, being a customer-oriente ...

computer

how to uninstall discord

How to Uninstall Discord in Windows 10? has supported open source technologies, our tool is secure and safe to use. To uninstall a discord from your windows, you'll use this method which is given below.USING THIRD PARTY TOOLS1. Firstly, you ...