Amazines Free Article Archive
www.amazines.com - Thursday, April 25, 2024
Read about the most recent changes and happenings at Amazines.com
Log into your account or register as a new author. Start submitting your articles right now!
Search our database for articles.
Subscribe to receive articles emailed straight to your email account. You may choose multiple categories.
View our newest articles submitted by our authors.
View our most top rated articles rated by our visitors.
* Please note that this is NOT the ARTICLE manager
Add a new EZINE, or manage your EZINE submission.
Add fresh, free web content to your site such as newest articles, web tools, and quotes with a single piece of code!
Home What's New? Submit/Manage Articles Latest Posts Top Rated Article Search
Google
Subscriptions Manage Ezines
CATEGORIES
 Article Archive
 Advertising (133573)
 Advice (161671)
 Affiliate Programs (34799)
 Art and Culture (73855)
 Automotive (145712)
 Blogs (75614)
 Boating (9851)
 Books (17223)
 Buddhism (4130)
 Business (1330640)
 Business News (426446)
 Business Opportunities (366518)
 Camping (10973)
 Career (72795)
 Christianity (15848)
 Collecting (11638)
 Communication (115089)
 Computers (241953)
 Construction (38962)
 Consumer (49953)
 Cooking (17080)
 Copywriting (6733)
 Crafts (18203)
 Cuisine (7549)
 Current Affairs (20319)
 Dating (45908)
 EBooks (19703)
 E-Commerce (48258)
 Education (185521)
 Electronics (83524)
 Email (6438)
 Entertainment (159855)
 Environment (28973)
 Ezine (3040)
 Ezine Publishing (5453)
 Ezine Sites (1551)
 Family & Parenting (111007)
 Fashion & Cosmetics (196605)
 Female Entrepreneurs (11853)
 Feng Shui (134)
 Finance & Investment (310615)
 Fitness (106469)
 Food & Beverages (63045)
 Free Web Resources (7941)
 Gambling (30227)
 Gardening (25202)
 Government (10519)
 Health (630137)
 Hinduism (2206)
 Hobbies (44083)
 Home Business (91657)
 Home Improvement (251211)
 Home Repair (46244)
 Humor (4723)
 Import - Export (5459)
 Insurance (45104)
 Interior Design (29616)
 International Property (3488)
 Internet (191031)
 Internet Marketing (146687)
 Investment (22861)
 Islam (1161)
 Judaism (1352)
 Law (80507)
 Link Popularity (4596)
 Manufacturing (20914)
 Marketing (99316)
 MLM (14140)
 Motivation (18233)
 Music (27000)
 New to the Internet (9496)
 Non-Profit Organizations (4048)
 Online Shopping (129734)
 Organizing (7813)
 Party Ideas (11855)
 Pets (38165)
 Poetry (2229)
 Press Release (12689)
 Public Speaking (5643)
 Publishing (7566)
 Quotes (2407)
 Real Estate (126700)
 Recreation & Leisure (95495)
 Relationships (87674)
 Research (16182)
 Sales (80350)
 Science & Technology (110291)
 Search Engines (23514)
 Self Improvement (153300)
 Seniors (6220)
 Sexuality (36010)
 Small Business (49312)
 Software (83034)
 Spiritual (23517)
 Sports (116155)
 Tax (7663)
 Telecommuting (34070)
 Travel & Tourism (308305)
 UK Property Investment (3123)
 Video Games (13382)
 Web Traffic (11790)
 Website Design (56919)
 Website Promotion (36663)
 World News (1000+)
 Writing (35843)
Author Spotlight
DESIGNPLUZ DIGITALAGENCY

Designpluz has steadily matured from a passionate graphics design start-up, into a full service digi...more
ELLIOT CHANG

Financial analyst and author writing on economy and business. ...more
TAL BARNEA

Tal is an electrical engineer with over 25 years of expertise with hardware, software, mechanical an...more
MANMOHAN SINGH

Digital marketing professional with 8 years of experience. A good listner, Stratgist and fun loving ...more
LEMUEL ASIBAL

Lemuel Asibal is a web content writer who also ventures on writing articles and blog posts about any...more


How to Configure GLBP in Cisco IOS Routers? by iris dan





Article Author Biography
How to Configure GLBP in Cisco IOS Routers? by
Article Posted: 12/23/2012
Article Views: 139
Articles Written: 93
Word Count: 869
Article Votes: 0
AddThis Social Bookmark Button

How to Configure GLBP in Cisco IOS Routers?


 
Computers,Telecommuting,Internet
Gateway Load Balancing Protocol (GLBP) as the name implies can be used to configure Gateway redundancy between a group of routers and at the same time load balance the traffic across all of them. GLBP is similar to the High availability protocols Hot Standby Redundancy Protocol (HSRP) & Virtual Router Redundancy Protocol (VRRP) except for the load balancing capabilities wherein HSRP and VRRP, the standby routers are configured for redundancy and act as standby only and become active only when the active router fails.

The advantage of GLBP is it provides load balancing over multiple routers (gateways) using a single virtual IP address and multiple virtual MAC addresses. The forwarding load is shared among all routers in a GLBP group rather than being handled by a single router while the other routers stand idle. Each host is configured with the same virtual IP address, and all routers in the virtual router group participate in forwarding packets. GLBP members communicate between each other through hello messages sent every 3 seconds to the multicast address 224.0.0.102, User Datagram Protocol (UDP) port 3222 (source and destination).

Here, I'm using two Cisco 2811 routers to configure GLBP on Fast Ethernet 0/0 interfaces and they track their gateway interfaces Serial 0/0/0 which affects the GLBP behavior Enable Interface and assign IP Address Router1# conf term Router1(config)# int fa0/0 Router1(config-if)# no shut Router1(config-if)# ip address 192.168.0.2 255.255.255.0

Enable GLBP & assign a GLBP group Virtual IP Router1(config-if)# glbp 1 ip 192.168.0.1

This commands enables GLBP on the interface and assigns the Virtual IP Address 192.168.0.1 for the GLBP group 1. Each physical interface can take upto 1024 GLBP groups and 4 virtual MAC-Addresses for each group. Set GLBP Redirect Timers Router1(config-if)# glbp 1 timers redirect 5 3600

This command sets the time interval (5 seconds) between which the Active Virtual Gateway (AVG) redirects clients to an Active Virtual Forwarder (AVF) in the event of a failure and the time interval 3600 seconds to set the timeout period in seconds before a secondary virtual forwarder becomes invalid. Enable Preempt Router1(config-if)# glbp 1 preempt

This command configures the router to take over as Active Virtual Gateway (AVG) for a GLBP group if it has a higher priority than the current AVG. This is disabled by default. You can configure a minimum delay time in seconds before which the preemption takes place as below. Router1(config-if)# glbp 1 preempt delay minimum 60

Track object for GLBP Router1(config-if)# glbp 1 weighting track 1 100

Specifies an object ("1" here is basically a track definition we will do later on. This could be an Interface "line protocol" or "IP routing") to be tracked that affects the weighting of a GLBP gateway. The value 100 specifies a reduction in the weighting of a GLBP gateway when a tracked object fails.

Set Tracked Object From the Global Configuration mode, let us define the Tracked object (referred in the glbp weighting command). Router1(config)# track 1 interface serial 0/0/0 line-protocol or with ip routing Router1(config)# track 1 interface serial 0/0/0 ip routing

With ideally same paramters except for the actual IP address of the GLBP interface, lets configure the Router 2 Router2# conf term Router2(config)# int fa0/0 Router2(config-if)# no shut Router2(config-if)# ip address 192.168.0.3 255.255.255.0 Router2(config-if)# glbp 1 ip 192.168.0.1 Router2(config-if)# glbp 1 timers redirect 5 3600 Router2(config-if)# glbp 1 preempt or with delay time Router2(config-if)# glbp 1 preempt delay minimum 60 Router2(config-if)# glbp 1 weighting track 1 100 Router2(config)# track 1 interface serial 0/0/0 line-protocol or with ip routing Router1(config)# track 1 interface serial 0/0/0 ip routing

Thats done. Now the 2 routers have their Fast Ethernet 0/0 interface in a GLBP group "1" tracking their individual gateway interfaces (serial0/0/0). To show the GLBP status, use Router1# sh glbp FastEthernet0/0 – Group 1 State is Active 15 state changes, last state change 3w2d Virtual IP address is 192.168.0.1 Hello time 3 sec, hold time 10 sec Next hello sent in 0.964 secs Redirect time 5 sec, forwarder time-out 3600 sec Preemption enabled, min delay 0 sec Active is local Standby is 192.168.0.3, priority 100 (expires in 9.976 sec) Priority 100 (default) Weighting 100 (default 100), thresholds: lower 1, upper 100 Track object 1 state Up decrement 100 Load balancing: round-robin Group members: 0000.1111.1111 (192.168.0.2) local 0000.2222.2222 (192.168.0.3) There are 2 forwarders (1 active) Forwarder 1 State is Active 3 state changes, last state change 3w2d MAC address is 0000.1111.1111 (default) Owner ID is 0011.1111.1111 Redirection enabled Preemption enabled, min delay 30 sec Active is local, weighting 100 Arp replies sent: 63569 Forwarder 2 State is Listen 6 state changes, last state change 3w1d MAC address is 0000.2222.2222 (learnt) Owner ID is 0022.2222.2222 Redirection enabled, 4.976 sec remaining (maximum 5 sec) Time to live: 3599.976 sec (maximum 3600 sec) Preemption enabled, min delay 30 sec Active is 192.168.0.2 (primary), weighting 100 (expires in 9.976 sec) Arp replies sent: 63546

To troubleshoot the following debug commands are useful. debug condition glbp debug glbp errors debug glbp events debug glbp packets debug glbp terse

More CISCO and Network Tips: Cisco First Hop Redundancy Protocols: HSRP, VRRP, GLBP How to Configure GLBP? GLBP Overview and Features GLBP & GLBP Basic Configuration

Related Articles - Cisco gateway-load-balancing-protocol, glbp, High-Availability, ios router, Configure GLBP in Cisco IOS Routers,

Email this Article to a Friend!

Receive Articles like this one direct to your email box!
Subscribe for free today!

 Rate This Article  
Completely useless, should be removed from directory.
Minimal useful information.
Decent and informative.
Great article, very informative and helpful.
A 'Must Read'.

 

Do you Agree or Disagree? Have a Comment? POST IT!

 Reader Opinions 
Submit your comments and they will be posted here.
Make this comment or to the Author only:
Name:
Email:
*Your email will NOT be posted. This is for administrative purposes only.
Comments: *Your Comments WILL be posted to the AUTHOR ONLY if you select PRIVATE and to this PUBLIC PAGE if you select PUBLIC, so write accordingly.
 
Please enter the code in the image:



 Author Login 
LOGIN
Register for Author Account

 

Advertiser Login

 

ADVERTISE HERE NOW!
   Limited Time $60 Offer!
   90  Days-1.5 Million Views  

 

Great Paranormal Romance


TIM FAY

After 60-plus years of living, I am just trying to pass down some of the information that I have lea...more
LAURA JEEVES

At LeadGenerators, we specialise in content-led Online Marketing Strategies for our clients in the t...more
ALEX BELSEY

I am the editor of QUAY Magazine, a B2B publication based in the South West of the UK. I am also the...more
GENE MYERS

Author of four books and two screenplays; frequent magazine contributor. I have four other books "in...more
SUSAN FRIESEN

Located in the lower mainland of B.C., Susan Friesen is a visionary brand strategist, entrepreneur, ...more
STEVERT MCKENZIE

Stevert Mckenzie, Travel Enthusiast. ...more
STEPHEN BYE

Steve Bye is currently a fiction writer, who published his first novel, ‘Looking Forward Through the...more
SHALINI MITTAL

A postgraduate in Fashion Technology. Shalini is a writer at heart! Writing for her is an expression...more
ADRIAN JOELE

I have been involved in nutrition and weight management for over 12 years and I like to share my kn...more
JAMES KENNY

James is a Research Enthusiast that focuses on the understanding of how things work and can be impro...more

HomeLinksAbout UsContact UsTerms of UsePrivacy PolicyFAQResources
Copyright © 2024, All rights reserved.
Some pages may contain portions of text relating to certain topics obtained from wikipedia.org under the GNU FDL license