SlideShare a Scribd company logo
Anuj Kumar
                                               ciscobulls@gmail.com

                CCNP SWITCH
         PORTABLE STUDY GUIDE
                           &
             PRACTICE WORK BOOK


ANUJ KUMAR




                email:- ciscobulls@gmail.com
                   anuj_dev007@yahoo.com
                     networkbulls.com
Anuj Kumar
                                                                                                ciscobulls@gmail.com



                                                       VRRP
                                       Virtual Router Redundancy Protocol

Feature: -

       Like HSRP, VRRP is a default gateway redundancy method.
       RFC 2338
       Similar in functionality to HSRP
       The virtual router, representing a group of routers, is known as a VRRP group.
       Cisco switches and routers support VRRP on Ethernet, Fast Ethernet, and Gigabit Ethernet interfaces, and on
        MPLS VPNs and VLANs.
       The virtual router can use a physical IP address or a virtual IP address.
       VRRP group no range 0 to 255.
       VRRP router priority range from 1 to 254 (100 is the default priority of VRRP router)
       VRRP provides on redundant gateway address from a group of routers. The Active router is called Master router,
        even all other router are in backup state. The master router has highest priority in the VRRP group.
       VRRP sends its advertisements to the multicast address 224.0.0.18.
       It using IP protocol 445.
       The advertisement interval timer (default 1 second, hold 3 second)
       Preempt is by default is enable, you can manually disable it.
         It uses two types authentication for advertisement.

                                                Configuration of VRRP
Anuj Kumar
                                                                               ciscobulls@gmail.com

R1(config)# int s0/0
R1(config-if)#ip address 10.1.1.2 255.255.255.0
R1(config-if)#no shutdown
R1(config-if)#int s0/1
R1(config-if)#ip address 11.1.1.2 255.255.255.0
R1(config-if)#no shutdown
R1(config-router)#network 10.1.1.0 0.0.0.255
R1(config-router)#network 11.1.1.0 0.0.0.255
R1(config-router)#no auto-summary
R1(config-router)#network 192.168.102.0
R1(config-router)#exit
R1(config-if)#int f0/0
R1(config-if)#ip address 192.168.102.1 255.255.255.0
R1(config-if)#no sh

R2(config)# int s0/0
R2(config-if)#ip address 10.1.1.1 255.255.255.0
R2(config-if)#no shutdown
R2(config-if)#int f0/0
R2(config-if)#ip address 192.168.101.2 255.255.255.0
R2(config-if)#no shutdown
R2(config-if)#router ei 100
R2(config-router)#network 192.168.101.0
R2(config-router)#network 10.1.1.0 255.255.255.0
R2(config-router)#no network 10.1.1.0 255.255.255.0
R2(config-router)#network 10.1.1.0 0.0.0.255
R2(config-router)#no auto-summary
R2(config)#int f0/0
R2(config-if)#vrrp 1 ip 192.168.101.1
*Mar 1 00:45:34.391: %VRRP-6-STATECHANGE: Fa0/0 Grp 1 state Init -> Backup
*Mar 1 00:45:38.003: %VRRP-6-STATECHANGE: Fa0/0 Grp 1 state Backup -> Master
*Mar 1 00:45:34.391: %VRRP-6-STATECHANGE: Fa0/0 Grp 1 state Init -> Backup
As we change priority manually
R2(config-if)#vrrp 1 priority 101
*Mar 1 00:51:36.235: %VRRP-6-STATECHANGE: Fa0/0 Grp 1 state Backup -> Master
Tracking
R2(config)#track 1 interface serial 0/0 line-protocol
R2(config)#int f0/0
R2(config-if)#vrrp 1 track 1

R3(config)# int f0/0
R3(config-if)#ip address 192.168.101.3 255.255.255.0
R3(config-if)#no shutdown
R3(config-if)#int s0/0
R3(config-if)#ip address 11.1.1.1 255.255.255.0
Anuj Kumar
                                                                                              ciscobulls@gmail.com

R3(config-if)#no shutdown
R3(config-if)#router ei 100
R3(config-router)#network 192.168.101.0
R3(config-router)#network 11.1.1.0 0.0.0.255
R3(config-router)#no auto-summary
R3(config)#int f0/0
R3(config-if)#vrrp 1 ip 192.168.101.1
*Mar 1 00:47:13.987: %VRRP-6-STATECHANGE: Fa0/0 Grp 1 state Init -> Backup
*Mar 1 00:47:17.599: %VRRP-6-STATECHANGE: Fa0/0 Grp 1 state Backup -> Master
Note: - first we implement VRRP, In VRRP which has highest router id it will become Master.
*Mar 1 00:51:35.711: %VRRP-6-STATECHANGE: Fa0/0 Grp 1 state Master -> Backup
Tacking
R3(config)#track 1 interface serial 0/0 line-protocol
R3(config)#interface f0/0
R3(config-if)#vrrp 1 track 1




Verifying Command: -
R2#sh vrrp
FastEthernet0/0 - Group 1
 State is Master
 Virtual IP address is 192.168.101.1
 Virtual MAC address is 0000.5e00.0101
 Advertisement interval is 1.000 sec
 Preemption enabled
 Priority is 101
  Track object 1 state Up decrement 10
 Master Router is 192.168.101.2 (local), priority is 101
 Master Advertisement interval is 1.000 sec
 Master Down interval is 3.605 sec

R3# sh vrrp
FastEthernet0/0 - Group 1
 State is Backup
 Virtual IP address is 192.168.101.1
 Virtual MAC address is 0000.5e00.0101
 Advertisement interval is 1.000 sec
 Preemption enabled
 Priority is 100
  Track object 1 state Up decrement 10
 Master Router is 192.168.101.2, priority is 101
 Master Advertisement interval is 1.000 sec
Anuj Kumar
                                                                   ciscobulls@gmail.com

Master Down interval is 3.609 sec (expires in 2.761 sec)

R2#sh vrrp brief
Interface     Grp Pri Time Own Pre State Master addr Group addr
Fa0/0        1 101 3605     Y Master 192.168.101.2 192.168.101.1

R3#sh vrrp brief
Interface     Grp Pri Time Own Pre State Master addr Group addr
Fa0/0        1 100 3609     Y Backup 192.168.101.2 192.168.101.1

More Related Content

What's hot

EMEA Airheads - Aruba Remote Access Point (RAP) Troubleshooting
EMEA Airheads - Aruba Remote Access Point (RAP) TroubleshootingEMEA Airheads - Aruba Remote Access Point (RAP) Troubleshooting
EMEA Airheads - Aruba Remote Access Point (RAP) Troubleshooting
Aruba, a Hewlett Packard Enterprise company
 
Ccna command
Ccna commandCcna command
Ccna command
Siddhartha Rajbhatt
 
MikroTik MTCNA
MikroTik MTCNAMikroTik MTCNA
MikroTik MTCNA
Ali Layth
 
First hop redundancy
First hop redundancyFirst hop redundancy
First hop redundancy
Swapnil Kapate
 
Vlans and inter vlan routing
Vlans and inter vlan routingVlans and inter vlan routing
Vlans and inter vlan routing
Mohammedseleim
 
Ospf
OspfOspf
Call Routing in Huawei MSOFT
Call Routing in Huawei MSOFTCall Routing in Huawei MSOFT
Call Routing in Huawei MSOFT
emyl97
 
CCNA 2 Routing and Switching v5.0 Chapter 2
CCNA 2 Routing and Switching v5.0 Chapter 2CCNA 2 Routing and Switching v5.0 Chapter 2
CCNA 2 Routing and Switching v5.0 Chapter 2
Nil Menon
 
VoLTE KPI Performance
VoLTE KPI PerformanceVoLTE KPI Performance
VoLTE KPI Performance
Vikas Shokeen
 
Ericsson commond list, BSS+NSS=OSS
Ericsson commond list, BSS+NSS=OSSEricsson commond list, BSS+NSS=OSS
Ericsson commond list, BSS+NSS=OSS
Md Shameem
 
CCNA 2 Routing and Switching v5.0 Chapter 1
CCNA 2 Routing and Switching v5.0 Chapter 1CCNA 2 Routing and Switching v5.0 Chapter 1
CCNA 2 Routing and Switching v5.0 Chapter 1
Nil Menon
 
Fhrp notes
Fhrp notesFhrp notes
Fhrp notes
Krunal Shah
 
Sdcch
SdcchSdcch
Lte capacity monitoring
Lte capacity monitoringLte capacity monitoring
Lte capacity monitoring
Klajdi Husi
 
Call Setup Success Rate Definition and Troubleshooting
Call Setup Success Rate Definition and Troubleshooting Call Setup Success Rate Definition and Troubleshooting
Call Setup Success Rate Definition and Troubleshooting
Assim Mubder
 
Ppt of routing protocols
Ppt of routing protocolsPpt of routing protocols
Ppt of routing protocols
Bhagyashri Dhoke
 
Ospf.ppt
Ospf.pptOspf.ppt
Call Forwarding
Call ForwardingCall Forwarding
Call Forwarding
Akash Agrawal
 
Cisco router-commands
Cisco router-commandsCisco router-commands
Cisco router-commands
Robin Rohit
 
Cisco ospf
Cisco ospf Cisco ospf
Cisco ospf
sarasanandam
 

What's hot (20)

EMEA Airheads - Aruba Remote Access Point (RAP) Troubleshooting
EMEA Airheads - Aruba Remote Access Point (RAP) TroubleshootingEMEA Airheads - Aruba Remote Access Point (RAP) Troubleshooting
EMEA Airheads - Aruba Remote Access Point (RAP) Troubleshooting
 
Ccna command
Ccna commandCcna command
Ccna command
 
MikroTik MTCNA
MikroTik MTCNAMikroTik MTCNA
MikroTik MTCNA
 
First hop redundancy
First hop redundancyFirst hop redundancy
First hop redundancy
 
Vlans and inter vlan routing
Vlans and inter vlan routingVlans and inter vlan routing
Vlans and inter vlan routing
 
Ospf
OspfOspf
Ospf
 
Call Routing in Huawei MSOFT
Call Routing in Huawei MSOFTCall Routing in Huawei MSOFT
Call Routing in Huawei MSOFT
 
CCNA 2 Routing and Switching v5.0 Chapter 2
CCNA 2 Routing and Switching v5.0 Chapter 2CCNA 2 Routing and Switching v5.0 Chapter 2
CCNA 2 Routing and Switching v5.0 Chapter 2
 
VoLTE KPI Performance
VoLTE KPI PerformanceVoLTE KPI Performance
VoLTE KPI Performance
 
Ericsson commond list, BSS+NSS=OSS
Ericsson commond list, BSS+NSS=OSSEricsson commond list, BSS+NSS=OSS
Ericsson commond list, BSS+NSS=OSS
 
CCNA 2 Routing and Switching v5.0 Chapter 1
CCNA 2 Routing and Switching v5.0 Chapter 1CCNA 2 Routing and Switching v5.0 Chapter 1
CCNA 2 Routing and Switching v5.0 Chapter 1
 
Fhrp notes
Fhrp notesFhrp notes
Fhrp notes
 
Sdcch
SdcchSdcch
Sdcch
 
Lte capacity monitoring
Lte capacity monitoringLte capacity monitoring
Lte capacity monitoring
 
Call Setup Success Rate Definition and Troubleshooting
Call Setup Success Rate Definition and Troubleshooting Call Setup Success Rate Definition and Troubleshooting
Call Setup Success Rate Definition and Troubleshooting
 
Ppt of routing protocols
Ppt of routing protocolsPpt of routing protocols
Ppt of routing protocols
 
Ospf.ppt
Ospf.pptOspf.ppt
Ospf.ppt
 
Call Forwarding
Call ForwardingCall Forwarding
Call Forwarding
 
Cisco router-commands
Cisco router-commandsCisco router-commands
Cisco router-commands
 
Cisco ospf
Cisco ospf Cisco ospf
Cisco ospf
 

Viewers also liked

Link Aggregation Control Protocol
Link Aggregation Control ProtocolLink Aggregation Control Protocol
Link Aggregation Control Protocol
Kashif Latif
 
1/10/40GbE Switch Design Pattern for VRRP Clustering with Multicast
1/10/40GbE Switch Design Pattern for VRRP Clustering with Multicast1/10/40GbE Switch Design Pattern for VRRP Clustering with Multicast
1/10/40GbE Switch Design Pattern for VRRP Clustering with Multicast
Naoto MATSUMOTO
 
Vrrp Alp
Vrrp AlpVrrp Alp
Vrrp Alp
Alp isik
 
Cisco CCNA-CCNP IP SLA Configuration
Cisco CCNA-CCNP IP SLA ConfigurationCisco CCNA-CCNP IP SLA Configuration
Cisco CCNA-CCNP IP SLA Configuration
Hamed Moghaddam
 
CISCO HSRP VRRP GLBP
CISCO HSRP VRRP GLBPCISCO HSRP VRRP GLBP
CISCO HSRP VRRP GLBP
YACINE MESSAOUI
 
CCNA Routing & Switching. Novedades en Tecnologías LAN
CCNA Routing & Switching. Novedades en Tecnologías LANCCNA Routing & Switching. Novedades en Tecnologías LAN
CCNA Routing & Switching. Novedades en Tecnologías LAN
Francisco Javier Novoa de Manuel
 
Multilayer Campus Architectures and Design Principles
Multilayer Campus Architectures and Design PrinciplesMultilayer Campus Architectures and Design Principles
Multilayer Campus Architectures and Design Principles
Cisco Canada
 
Cisco CCNA Port Security
Cisco CCNA Port SecurityCisco CCNA Port Security
Cisco CCNA Port Security
Hamed Moghaddam
 
Virtualización en la Red del Data Center - Extreme Networks
Virtualización en la Red del Data Center - Extreme NetworksVirtualización en la Red del Data Center - Extreme Networks
Virtualización en la Red del Data Center - Extreme Networks
AEC Networks
 
Vlan
Vlan Vlan
Vlan
sanss40
 

Viewers also liked (10)

Link Aggregation Control Protocol
Link Aggregation Control ProtocolLink Aggregation Control Protocol
Link Aggregation Control Protocol
 
1/10/40GbE Switch Design Pattern for VRRP Clustering with Multicast
1/10/40GbE Switch Design Pattern for VRRP Clustering with Multicast1/10/40GbE Switch Design Pattern for VRRP Clustering with Multicast
1/10/40GbE Switch Design Pattern for VRRP Clustering with Multicast
 
Vrrp Alp
Vrrp AlpVrrp Alp
Vrrp Alp
 
Cisco CCNA-CCNP IP SLA Configuration
Cisco CCNA-CCNP IP SLA ConfigurationCisco CCNA-CCNP IP SLA Configuration
Cisco CCNA-CCNP IP SLA Configuration
 
CISCO HSRP VRRP GLBP
CISCO HSRP VRRP GLBPCISCO HSRP VRRP GLBP
CISCO HSRP VRRP GLBP
 
CCNA Routing & Switching. Novedades en Tecnologías LAN
CCNA Routing & Switching. Novedades en Tecnologías LANCCNA Routing & Switching. Novedades en Tecnologías LAN
CCNA Routing & Switching. Novedades en Tecnologías LAN
 
Multilayer Campus Architectures and Design Principles
Multilayer Campus Architectures and Design PrinciplesMultilayer Campus Architectures and Design Principles
Multilayer Campus Architectures and Design Principles
 
Cisco CCNA Port Security
Cisco CCNA Port SecurityCisco CCNA Port Security
Cisco CCNA Port Security
 
Virtualización en la Red del Data Center - Extreme Networks
Virtualización en la Red del Data Center - Extreme NetworksVirtualización en la Red del Data Center - Extreme Networks
Virtualización en la Red del Data Center - Extreme Networks
 
Vlan
Vlan Vlan
Vlan
 

Similar to Vrrp

Hsrp
HsrpHsrp
Hsrp
HsrpHsrp
Ccn pv7 route_lab2-1_eigrp-load-balancing_student
Ccn pv7 route_lab2-1_eigrp-load-balancing_studentCcn pv7 route_lab2-1_eigrp-load-balancing_student
Ccn pv7 route_lab2-1_eigrp-load-balancing_student
Angel Clavel
 
Dynamic Routing IGRP
Dynamic Routing IGRPDynamic Routing IGRP
Dynamic Routing IGRP
Kishore Kumar
 
OSPF (open shortest path first) part iii
OSPF (open shortest path first) part  iiiOSPF (open shortest path first) part  iii
OSPF (open shortest path first) part iii
Netwax Lab
 
EIGRP Route Summarization
EIGRP Route SummarizationEIGRP Route Summarization
EIGRP Route Summarization
NetProtocol Xpert
 
In depth understanding network security
In depth understanding network securityIn depth understanding network security
In depth understanding network security
Thanawan Tuamyim
 
Ciso commands
Ciso commandsCiso commands
Ciso commands
MAFANTIRI SELLO
 
Basic cisco commands_by_marcus_nielson_2
Basic cisco commands_by_marcus_nielson_2Basic cisco commands_by_marcus_nielson_2
Basic cisco commands_by_marcus_nielson_2
MAFANTIRI SELLO
 
Ciso commands
Ciso commandsCiso commands
Ciso commands
MAFANTIRI SELLO
 
Ncat ccna cheat sheet
Ncat ccna cheat sheetNcat ccna cheat sheet
Ncat ccna cheat sheet
EZREIG OMAR
 
ccna cheat_sheet
ccna cheat_sheetccna cheat_sheet
ccna cheat_sheet
Guntaka Reddy
 
Cisco Commands
Cisco CommandsCisco Commands
Cisco Commands
Fredrick Hall
 
cisco ccna cheat_sheet
cisco ccna cheat_sheetcisco ccna cheat_sheet
cisco ccna cheat_sheet
Guntaka Reddy
 
Service Provider Networks and Frame Relay
Service Provider Networks and Frame RelayService Provider Networks and Frame Relay
Service Provider Networks and Frame Relay
Tharindu Sankalpa
 
RIP (routing information protocol)
RIP (routing information protocol)RIP (routing information protocol)
RIP (routing information protocol)
Netwax Lab
 
Ccna command
Ccna commandCcna command
Ccna command
Sudhir Maherwal
 
Aula04 - configuração da topologia ppp - resolvido
Aula04 -  configuração da topologia ppp - resolvidoAula04 -  configuração da topologia ppp - resolvido
Aula04 - configuração da topologia ppp - resolvido
Carlos Veiga
 
Network Design on cisco packet tracer 6.0
Network Design on cisco packet tracer 6.0Network Design on cisco packet tracer 6.0
Network Design on cisco packet tracer 6.0
Saurav Pandey
 
Samplab19
Samplab19Samplab19

Similar to Vrrp (20)

Hsrp
HsrpHsrp
Hsrp
 
Hsrp
HsrpHsrp
Hsrp
 
Ccn pv7 route_lab2-1_eigrp-load-balancing_student
Ccn pv7 route_lab2-1_eigrp-load-balancing_studentCcn pv7 route_lab2-1_eigrp-load-balancing_student
Ccn pv7 route_lab2-1_eigrp-load-balancing_student
 
Dynamic Routing IGRP
Dynamic Routing IGRPDynamic Routing IGRP
Dynamic Routing IGRP
 
OSPF (open shortest path first) part iii
OSPF (open shortest path first) part  iiiOSPF (open shortest path first) part  iii
OSPF (open shortest path first) part iii
 
EIGRP Route Summarization
EIGRP Route SummarizationEIGRP Route Summarization
EIGRP Route Summarization
 
In depth understanding network security
In depth understanding network securityIn depth understanding network security
In depth understanding network security
 
Ciso commands
Ciso commandsCiso commands
Ciso commands
 
Basic cisco commands_by_marcus_nielson_2
Basic cisco commands_by_marcus_nielson_2Basic cisco commands_by_marcus_nielson_2
Basic cisco commands_by_marcus_nielson_2
 
Ciso commands
Ciso commandsCiso commands
Ciso commands
 
Ncat ccna cheat sheet
Ncat ccna cheat sheetNcat ccna cheat sheet
Ncat ccna cheat sheet
 
ccna cheat_sheet
ccna cheat_sheetccna cheat_sheet
ccna cheat_sheet
 
Cisco Commands
Cisco CommandsCisco Commands
Cisco Commands
 
cisco ccna cheat_sheet
cisco ccna cheat_sheetcisco ccna cheat_sheet
cisco ccna cheat_sheet
 
Service Provider Networks and Frame Relay
Service Provider Networks and Frame RelayService Provider Networks and Frame Relay
Service Provider Networks and Frame Relay
 
RIP (routing information protocol)
RIP (routing information protocol)RIP (routing information protocol)
RIP (routing information protocol)
 
Ccna command
Ccna commandCcna command
Ccna command
 
Aula04 - configuração da topologia ppp - resolvido
Aula04 -  configuração da topologia ppp - resolvidoAula04 -  configuração da topologia ppp - resolvido
Aula04 - configuração da topologia ppp - resolvido
 
Network Design on cisco packet tracer 6.0
Network Design on cisco packet tracer 6.0Network Design on cisco packet tracer 6.0
Network Design on cisco packet tracer 6.0
 
Samplab19
Samplab19Samplab19
Samplab19
 

Recently uploaded

SWOT analysis in the project Keeping the Memory @live.pptx
SWOT analysis in the project Keeping the Memory @live.pptxSWOT analysis in the project Keeping the Memory @live.pptx
SWOT analysis in the project Keeping the Memory @live.pptx
zuzanka
 
Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...
PsychoTech Services
 
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
National Information Standards Organization (NISO)
 
A Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two HeartsA Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two Hearts
Steve Thomason
 
Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47
MysoreMuleSoftMeetup
 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
Celine George
 
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) CurriculumPhilippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
MJDuyan
 
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptxPrésentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
siemaillard
 
Electric Fetus - Record Store Scavenger Hunt
Electric Fetus - Record Store Scavenger HuntElectric Fetus - Record Store Scavenger Hunt
Electric Fetus - Record Store Scavenger Hunt
RamseyBerglund
 
Stack Memory Organization of 8086 Microprocessor
Stack Memory Organization of 8086 MicroprocessorStack Memory Organization of 8086 Microprocessor
Stack Memory Organization of 8086 Microprocessor
JomonJoseph58
 
Nutrition Inc FY 2024, 4 - Hour Training
Nutrition Inc FY 2024, 4 - Hour TrainingNutrition Inc FY 2024, 4 - Hour Training
Nutrition Inc FY 2024, 4 - Hour Training
melliereed
 
B. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdfB. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdf
BoudhayanBhattachari
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
Nicholas Montgomery
 
Lifelines of National Economy chapter for Class 10 STUDY MATERIAL PDF
Lifelines of National Economy chapter for Class 10 STUDY MATERIAL PDFLifelines of National Economy chapter for Class 10 STUDY MATERIAL PDF
Lifelines of National Economy chapter for Class 10 STUDY MATERIAL PDF
Vivekanand Anglo Vedic Academy
 
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdfمصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
سمير بسيوني
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Fajar Baskoro
 
Standardized tool for Intelligence test.
Standardized tool for Intelligence test.Standardized tool for Intelligence test.
Standardized tool for Intelligence test.
deepaannamalai16
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
RAHUL
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
Nguyen Thanh Tu Collection
 
Bonku-Babus-Friend by Sathyajith Ray (9)
Bonku-Babus-Friend by Sathyajith Ray  (9)Bonku-Babus-Friend by Sathyajith Ray  (9)
Bonku-Babus-Friend by Sathyajith Ray (9)
nitinpv4ai
 

Recently uploaded (20)

SWOT analysis in the project Keeping the Memory @live.pptx
SWOT analysis in the project Keeping the Memory @live.pptxSWOT analysis in the project Keeping the Memory @live.pptx
SWOT analysis in the project Keeping the Memory @live.pptx
 
Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...
 
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
 
A Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two HeartsA Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two Hearts
 
Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47
 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
 
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) CurriculumPhilippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
 
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptxPrésentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
 
Electric Fetus - Record Store Scavenger Hunt
Electric Fetus - Record Store Scavenger HuntElectric Fetus - Record Store Scavenger Hunt
Electric Fetus - Record Store Scavenger Hunt
 
Stack Memory Organization of 8086 Microprocessor
Stack Memory Organization of 8086 MicroprocessorStack Memory Organization of 8086 Microprocessor
Stack Memory Organization of 8086 Microprocessor
 
Nutrition Inc FY 2024, 4 - Hour Training
Nutrition Inc FY 2024, 4 - Hour TrainingNutrition Inc FY 2024, 4 - Hour Training
Nutrition Inc FY 2024, 4 - Hour Training
 
B. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdfB. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdf
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
 
Lifelines of National Economy chapter for Class 10 STUDY MATERIAL PDF
Lifelines of National Economy chapter for Class 10 STUDY MATERIAL PDFLifelines of National Economy chapter for Class 10 STUDY MATERIAL PDF
Lifelines of National Economy chapter for Class 10 STUDY MATERIAL PDF
 
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdfمصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
 
Standardized tool for Intelligence test.
Standardized tool for Intelligence test.Standardized tool for Intelligence test.
Standardized tool for Intelligence test.
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
 
Bonku-Babus-Friend by Sathyajith Ray (9)
Bonku-Babus-Friend by Sathyajith Ray  (9)Bonku-Babus-Friend by Sathyajith Ray  (9)
Bonku-Babus-Friend by Sathyajith Ray (9)
 

Vrrp

  • 1. Anuj Kumar ciscobulls@gmail.com CCNP SWITCH PORTABLE STUDY GUIDE & PRACTICE WORK BOOK ANUJ KUMAR email:- ciscobulls@gmail.com anuj_dev007@yahoo.com networkbulls.com
  • 2. Anuj Kumar ciscobulls@gmail.com VRRP Virtual Router Redundancy Protocol Feature: -  Like HSRP, VRRP is a default gateway redundancy method.  RFC 2338  Similar in functionality to HSRP  The virtual router, representing a group of routers, is known as a VRRP group.  Cisco switches and routers support VRRP on Ethernet, Fast Ethernet, and Gigabit Ethernet interfaces, and on MPLS VPNs and VLANs.  The virtual router can use a physical IP address or a virtual IP address.  VRRP group no range 0 to 255.  VRRP router priority range from 1 to 254 (100 is the default priority of VRRP router)  VRRP provides on redundant gateway address from a group of routers. The Active router is called Master router, even all other router are in backup state. The master router has highest priority in the VRRP group.  VRRP sends its advertisements to the multicast address 224.0.0.18.  It using IP protocol 445.  The advertisement interval timer (default 1 second, hold 3 second)  Preempt is by default is enable, you can manually disable it.  It uses two types authentication for advertisement. Configuration of VRRP
  • 3. Anuj Kumar ciscobulls@gmail.com R1(config)# int s0/0 R1(config-if)#ip address 10.1.1.2 255.255.255.0 R1(config-if)#no shutdown R1(config-if)#int s0/1 R1(config-if)#ip address 11.1.1.2 255.255.255.0 R1(config-if)#no shutdown R1(config-router)#network 10.1.1.0 0.0.0.255 R1(config-router)#network 11.1.1.0 0.0.0.255 R1(config-router)#no auto-summary R1(config-router)#network 192.168.102.0 R1(config-router)#exit R1(config-if)#int f0/0 R1(config-if)#ip address 192.168.102.1 255.255.255.0 R1(config-if)#no sh R2(config)# int s0/0 R2(config-if)#ip address 10.1.1.1 255.255.255.0 R2(config-if)#no shutdown R2(config-if)#int f0/0 R2(config-if)#ip address 192.168.101.2 255.255.255.0 R2(config-if)#no shutdown R2(config-if)#router ei 100 R2(config-router)#network 192.168.101.0 R2(config-router)#network 10.1.1.0 255.255.255.0 R2(config-router)#no network 10.1.1.0 255.255.255.0 R2(config-router)#network 10.1.1.0 0.0.0.255 R2(config-router)#no auto-summary R2(config)#int f0/0 R2(config-if)#vrrp 1 ip 192.168.101.1 *Mar 1 00:45:34.391: %VRRP-6-STATECHANGE: Fa0/0 Grp 1 state Init -> Backup *Mar 1 00:45:38.003: %VRRP-6-STATECHANGE: Fa0/0 Grp 1 state Backup -> Master *Mar 1 00:45:34.391: %VRRP-6-STATECHANGE: Fa0/0 Grp 1 state Init -> Backup As we change priority manually R2(config-if)#vrrp 1 priority 101 *Mar 1 00:51:36.235: %VRRP-6-STATECHANGE: Fa0/0 Grp 1 state Backup -> Master Tracking R2(config)#track 1 interface serial 0/0 line-protocol R2(config)#int f0/0 R2(config-if)#vrrp 1 track 1 R3(config)# int f0/0 R3(config-if)#ip address 192.168.101.3 255.255.255.0 R3(config-if)#no shutdown R3(config-if)#int s0/0 R3(config-if)#ip address 11.1.1.1 255.255.255.0
  • 4. Anuj Kumar ciscobulls@gmail.com R3(config-if)#no shutdown R3(config-if)#router ei 100 R3(config-router)#network 192.168.101.0 R3(config-router)#network 11.1.1.0 0.0.0.255 R3(config-router)#no auto-summary R3(config)#int f0/0 R3(config-if)#vrrp 1 ip 192.168.101.1 *Mar 1 00:47:13.987: %VRRP-6-STATECHANGE: Fa0/0 Grp 1 state Init -> Backup *Mar 1 00:47:17.599: %VRRP-6-STATECHANGE: Fa0/0 Grp 1 state Backup -> Master Note: - first we implement VRRP, In VRRP which has highest router id it will become Master. *Mar 1 00:51:35.711: %VRRP-6-STATECHANGE: Fa0/0 Grp 1 state Master -> Backup Tacking R3(config)#track 1 interface serial 0/0 line-protocol R3(config)#interface f0/0 R3(config-if)#vrrp 1 track 1 Verifying Command: - R2#sh vrrp FastEthernet0/0 - Group 1 State is Master Virtual IP address is 192.168.101.1 Virtual MAC address is 0000.5e00.0101 Advertisement interval is 1.000 sec Preemption enabled Priority is 101 Track object 1 state Up decrement 10 Master Router is 192.168.101.2 (local), priority is 101 Master Advertisement interval is 1.000 sec Master Down interval is 3.605 sec R3# sh vrrp FastEthernet0/0 - Group 1 State is Backup Virtual IP address is 192.168.101.1 Virtual MAC address is 0000.5e00.0101 Advertisement interval is 1.000 sec Preemption enabled Priority is 100 Track object 1 state Up decrement 10 Master Router is 192.168.101.2, priority is 101 Master Advertisement interval is 1.000 sec
  • 5. Anuj Kumar ciscobulls@gmail.com Master Down interval is 3.609 sec (expires in 2.761 sec) R2#sh vrrp brief Interface Grp Pri Time Own Pre State Master addr Group addr Fa0/0 1 101 3605 Y Master 192.168.101.2 192.168.101.1 R3#sh vrrp brief Interface Grp Pri Time Own Pre State Master addr Group addr Fa0/0 1 100 3609 Y Backup 192.168.101.2 192.168.101.1