Migration from Cisco GLBP to industry standard VRRPE

Size: px
Start display at page:

Download "Migration from Cisco GLBP to industry standard VRRPE"

Transcription

1 Migration from Cisco GLBP to industry standard VRRPE Technical white paper Table of contents Overview... 2 Gateway load balancing protocols... 2 Introduction to Cisco GLBP... 2 Introduction to VRRPE... 2 Comparison of GLBP and VRRPE... 5 Gateway load balancing configuration example... 5 Network diagram... 5 GLBP configuration... 6 Verifying the configuration... 7 Migration from Cisco GLBP to VRRPE... 8 Migration guidelines... 8 Configuring VRRP... 9 Verifying the configuration Summary For more information... 14

2 Overview Gateway load balancing protocols Most gateway redundant backup technologies, such as Virtual Router Redundancy Protocol (VRRP) (RFC 3768), and Cisco proprietary Hot Standby Router Protocol (HSRP), if mature, are inefficient. With any of these protocols, only one router (the master or the active router) in a backup group forwards traffic for a LAN. The other routers in the group function as backups, and do not forward traffic when the master or the active router is operating normally. To better use network resources, Cisco developed Gateway Load Balancing Protocol (GLBP) and developed VRRP Extended (VRRPE) to balance traffic among gateways in a backup group. Introduction to Cisco GLBP GLBP is a proprietary protocol of Cisco. It can bind one virtual IP address to up to four MAC addresses. The clients in a network use the same virtual IP address as their gateway address. The client sends ARP requests to the gateway. After receiving the request, the active router in the GLBP group replies to the clients with different MAC addresses. This enables corresponding routers in the GLBP group to forward packets from individual clients; thus implementing load balancing. With HSRP and VRRP, an active router or master router must be selected to forward packets, while the other backup routers are only for backup purposes. With GLBP, no active or master router is necessarily selected, because all routers in a GLBP group can participate in packet forwarding while providing redundant router backup. GLBP elects an active virtual gateway (AVG) according to the priority. The router with the higher priority wins the election. In the case of routers with equal priority, the router with the higher IP address wins. If the AVG fails, a new AVG election process will begin. The AVG in a GLBP group is responsible for assigning virtual MAC addresses to the routers (including the AVG itself) in the group in order. A router whose virtual MAC address is assigned by the AVG is called the primary virtual forwarder (PVF) of the virtual MAC address, while a router whose virtual MAC address is learned by the hello message is called the secondary virtual forwarder (SVF) of the virtual MAC address. The router that is responsible for forwarding the packets destined for the virtual MAC address is called active virtual forwarder (AVF). When the PVF works normally, the PVF is the AVF. If the PVF fails, the SVF with the highest weight becomes the AVF. Compared with HSRP and VRRP, GLBP features the following: With HSRP and VRRP, multiple backup groups must be created and different gateway addresses must be configured for different hosts in a LAN, if you want multiple routers to share packet-forwarding load. Using GLBP, packet forwarding load sharing can be implemented by creating only one backup group and specifying only one gateway for different hosts in the LAN. GLBP implements redundant backup of virtual forwarders (VFs). When a router in the GLBP group fails, the other routers in the group can take over the virtual MAC address of the failed router to enable uninterrupted communications among the hosts in a LAN. Introduction to VRRPE VRRP addresses the single-point of failure of gateway. In a VRRP group, only the master router can forward packets, and the backup routers do not participate in packet forwarding and only act as backups for the master when the master works normally, resulting in low usage of network resources. VRRP Extended (VRRPE) adds the load balancing feature on the basis of VRRP. VRRPE binds one virtual IP address to multiple virtual MAC addresses. Each router in a VRRPE group corresponds to a virtual MAC address. The virtual gateway router replies to the ARP requests (in an IPv4 network) or Neighbor Discovery (ND) requests (in an IPv6 network) with different virtual MAC addresses, so that different hosts send their packets to different routers, and each involved router in the VRRP group can forward the received packets. VRRPE inherits the master/backup election mechanism of VRRP. The master router is responsible for assigning virtual MAC addresses to the routers (including the master router itself) in the VRRPE group, replying the ARP/ND requests from the hosts to the gateway, and forwarding packets from the hosts; the backup routers, on one hand, act as the backups for the master router, and, on the other hand, forward packets as gateways. A router in a VRRPE group can be in any of the three states: initialize, master, and backup. 2

3 After the master router in a VRRPE group assigns a virtual MAC address to a router in the group, each router in the group creates a VF corresponding to the virtual MAC address; and the router assigned with the virtual MAC address is called the owner of the VF. A VF can be in any of the three states: initialize, active, and listening. The priority of a VF determines its state. The VF with the highest priority is in active state, and it is called the AVF, responsible for forwarding the packets destined for the virtual MAC address. The VFs corresponding to the virtual MAC address on other routers are in listening state, which are called LVFs, responsible for listening to the state of the AVF. In a VRRPE group, only the AVFs can forward packets from the hosts in a LAN. VRRPE uses four types of packets for exchanging information between master and backup routers: Advertisement: Advertises the states of the VRRPE group and the states of the AVFs on the local router. The master router and backup routers send advertisement packets periodically. Request: A backup router that is not the VF owner sends request packets to the master to request a virtual MAC address. Reply: After receiving a request packet, the master router sends a reply to the backup router to assign a virtual MAC address. After receiving the reply, the backup router creates a VF that corresponds to the virtual MAC address. The router is the owner of the VF. Release: If the VF owner times out, the router that takes over sends a release packet to notify the other routers in the VRRPE group to remove the VFs corresponding to the VF owner. Let s examine IPv4-based VRRPE as an example; the operation procedure is as follows: 1. The master in the VRRPE group assigns virtual MAC addresses to the routers (including the master router itself) in the group. As shown in Figure 1, in the VRRPE group with virtual IP address /24, Router A is the master router, and Router B is the backup router. Router A assigns virtual MAC address 000f-e2ff-0011 to itself, and 000f-e2ff-0012 to Router B. Figure 1: addresses assignment by the master Network Router A Master Router B Backup Virtual IP /24 : 000f-e2ff Allocates : 000f-e2ff-0012 to Router B Host A Host B 3

4 2. After receiving the ARP requests destined for the virtual IP address from the hosts, the master router, according to the load balancing algorithm, replies to the requests from different hosts with different virtual MAC addresses. As shown in Figure 2, Host A sends a request to obtain the MAC address corresponding to the gateway , and the master router uses the virtual MAC address of Router A to reply the request; Host B sends a request to obtain the MAC address corresponding to the gateway , and the master router uses the virtual MAC address of Router B to reply to the request. Figure 2: Reply of ARP requests by the master Network Router A Master Router B Backup Virtual IP /24 : 000f-e2ff : 000f-e2ff-0012 Gateway MAC: 000f-e2ff Gateway MAC: 000f-e2ff-0012 Host A Host B 3. Different virtual MAC addresses can lead the packets from different hosts to different routers. As shown in Figure 3, Host A regards the virtual MAC address of Router A the gateway address, and Host B regards the virtual MAC address of Router B the gateway address, so that the packets from Host A are forwarded by Router A, and those from Host B are forwarded by Router B. 4

5 Figure 3: Packet forwarding by different routers Network Router A Master Router B Backup Virtual IP /24 : 000f-e2ff : 000f-e2ff-0012 Gateway MAC: 000f-e2ff Gateway MAC: 000f-e2ff-0012 Host A Host B Comparison of GLBP and VRRPE Protocol GLBP VRRPE Standard Cisco proprietary protocol Proprietary protocol Hello time 1 to 60 seconds, 3 seconds by default 1 to 255 seconds, 1 second by default Hold time In the range (Hello time +1) to 180 seconds, 10 seconds by default 3 * Hello time + skew-time VF redirect interval VF timeout interval In the range 0 to 3600 seconds, 600 seconds by default In the range (Redirect interval +600) to seconds, seconds by default 600 seconds, which cannot be configured at CLI 1800 seconds, which cannot be configured at CLI VF preemption Configurable, enabled by default Enabled by default. This feature cannot be configured at CLI Interoperability Supported by some vendors, like Cisco Supported by many vendors Load balancing algorithm Cyclic algorithm, host-based algorithm, weight-based algorithm Host-based algorithm CPU load Medium Medium Maximum number of backup groups supported Gateway load balancing configuration example Network diagram As shown in Figure 4, Router A, Router B, and Router C are in backup group 1, which acts as the gateway of Host A, Host B, and Host C in the LAN. Router A, Router B, and Router C back up one another. When a router fails, another router can take over so as to enable uninterrupted traffic forwarding. Router A, Router B, and Router C belong to backup group 1 with the virtual IP address /24. 5

6 The hosts in network segment /24 use /24 as the default gateway. VRRP is used to make sure that when a router in the VRRP group fails, the hosts can still access the external network through the gateway address. Backup group 1 works in the load balancing mode to fully utilize gateway resources. On Router A, Router B, and Router C respectively, configure VFs to track the status of interface Ethernet 1/2. When an interface fails, the weight of the corresponding router decreases by a certain value, so that another router can take over. Figure 4: A simplified network diagram Network Router A Eth1/2 Router B Eth1/2 Eth1/2 Router C Master AVF 1 Backup AVF 2 Backup AVF 3 Eth1/1 IP: /24 VP: /24 Eth1/1 IP: /24 VP: /24 Eth1/1 IP: /24 VP: /24 IP: /24 IP: /24 IP: /24 Host A Host B Host C GLBP configuration 1. Configure Router A hostname RouterA track 1 interface Ethernet1/2 line-protocol interface Ethernet1/1 ip address glbp 1 ip glbp 1 ip glbp 1 priority 120 glbp 1 preempt delay minimum 5 glbp 1 load-balancing host-dependent glbp 1 weighting track 1 decrement 250 6

7 2. Configure Router B hostname RouterB track 1 interface Ethernet1/2 line-protocol interface Ethernet1/1 ip address glbp 1 ip glbp 1 priority 110 glbp 1 preempt delay minimum 5 glbp 1 load-balancing host-dependent glbp 1 weighting track 1 decrement Configure Router C hostname RouterC track 1 interface Ethernet1/2 line-protocol interface Ethernet1/1 ip address glbp 1 ip glbp 1 preempt delay minimum 5 glbp 1 load-balancing host-dependent glbp 1 weighting track 1 decrement 250 Verifying the configuration Check the GLBP status and configuration on Router A. The output shows that the configuration is effective, and that the backup group has been created. RouterA#show glbp Ethernet1/1 - Group 1 is Active 1 state change, last state change 00:12:00 Virtual IP address is Hello time 3 sec, hold time 10 sec Next hello sent in sec Redirect time 600 sec, forwarder time-out sec Preemption enabled, minimum delay 5 sec Active is local 7

8 Standby is , priority 110 (expires in sec) Priority 120 (configured) Weighting 100 (default 100), thresholds: lower 1, upper 100 Track object 1 state Up decrement 250 Load balancing: host-dependent Group members: ca00.06e ( ) local ca00.0c3c.0000 ( ) ca ( ) There are 3 forwarders (1 active) Forwarder 1 is Active 2 state changes, last state change 00:11:17 MAC address is 0007.b (default) is ca00.06e Redirection enabled Preemption enabled, minimum delay 30 sec Active is local, weighting 100 Forwarder 2 is Listen MAC address is 0007.b (learnt) is ca00.0c3c.0000 Redirection enabled, sec remaining (maximum 600 sec) Time to live: sec (maximum sec) Preemption enabled, minimum delay 30 sec Active is (primary), weighting 100 (expires in sec) Forwarder 3 is Listen MAC address is 0007.b (learnt) is ca Redirection enabled, sec remaining (maximum 600 sec) Time to live: sec (maximum sec) Preemption enabled, minimum delay 30 sec Active is (primary), weighting 100 (expires in sec) Migration from Cisco GLBP to VRRPE Migration guidelines Except traffic-based and weight-based load balancing algorithms, VRRPE supports all other configuration items as does GLBP. To migrate from a GLBP network to a VRRPE network, the key configuration items include virtual IP address, VF, priorities of the master router and backup routers, tracking, and holdtime in case of a failure. 8

9 Configure VRRPE as follows, to replace Cisco GLBP on Router A: Item GLBP value VRRPE value Interface IP address / /24 Backup group ID 1 1 Virtual IP address Backup group priority Preemption mode preempt preempt Hello time 3s 3s Tracked object Track 1 Track 1 Load balancing mode Host-based Host-based by default, which does not need to be configured Configure VRRPE as follows, to replace GLBP on Router B: Item GLBP value VRRPE value Interface IP address / /24 Backup group ID 1 1 Virtual IP address Backup group priority Preemption mode preempt preempt Hello time 3s 3s Tracked object Track 1 Track 1 Load balancing mode Host-based Host-based by default, which does not need to be configured Configure VRRPE as follows, to replace GLBP on Router C: Item GLBP value VRRPE value Interface IP address / /24 Backup group ID 1 1 Virtual IP address Backup group priority Preemption mode preempt preempt Hello time 3s 3s Tracked object Track 1 Track 1 Load balancing mode Host-based Host-based by default, which does not need to be configured Configuring VRRP 1. Configure Router A # Configure the router to work in VRRP load balancing mode. <RouterA> system-view [RouterA] vrrp mode load-balance # Create VRRP group 1, and assign virtual IP address to the group. [RouterA] interface ethernet 1/1 9

10 [RouterA-Ethernet1/1] ip address [RouterA-Ethernet1/1] vrrp vrid 1 virtual-ip # Configure the priority of Router A in VRRP group 1 as 120, which is higher than that of Router B (110), and that of Router C (100), so that Router A can become the master. [RouterA-Ethernet1/1] vrrp vrid 1 priority 120 # Configure Router A to work in preemptive mode so that it can become the master whenever it works normally. Configure the preemption delay as five seconds to avoid frequent status switchover. [RouterA-Ethernet1/1] vrrp vrid 1 preempt-mode timer delay 5 [RouterA-Ethernet1/1] quit # Create track entry 1 to associate with the physical status of Ethernet 1/2 on Router A. When the track entry becomes negative, it means that the interface has failed. [RouterA] track 1 interface ethernet 1/2 # Configure the VFs to monitor track entry 1, making the weight of Router A decrease by more than 245 (250 in this example) when track entry 1 turns to negative. In such a case, another router with a higher weight can take over. [RouterA] interface ethernet 1/1 [RouterA-Ethernet1/1] vrrp vrid 1 weight track 1 reduced Configure Router B # Configure the router to work in VRRP load balancing mode. <RouterB> system-view [RouterB] vrrp mode load-balance # Create VRRP group 1, and assign virtual IP address to the group. [RouterB] interface ethernet 1/1 [RouterB-Ethernet1/1] ip address [RouterB-Ethernet1/1] vrrp vrid 1 virtual-ip # Set the priority of Router B in VRRP group 1 to 110, which is higher than that of Router C (100), so that Router B can become the master when Router A fails. [RouterB-Ethernet1/1] vrrp vrid 1 priority 110 # Set Router B to work in preemptive mode and set the preemption delay to five seconds. [RouterB-Ethernet1/1] vrrp vrid 1 preempt-mode timer delay 5 [RouterB-Ethernet1/1] quit # Create track entry 1 to associate with the physical status of Ethernet 1/2 on Router B. When the track entry becomes negative, it means that the interface fails. [RouterB] track 1 interface ethernet 1/2 # Configure the VFs to monitor track entry 1, making the weight of Router B decrease by more than 245 (250 in this example) when track entry 1 turns to negative. In such a case, another router with a higher weight can take over. [RouterB] interface ethernet 1/1 [RouterB-Ethernet1/1] vrrp vrid 1 weight track 1 reduced Configure Router C # Configure the router to work in VRRP load balancing mode. <RouterC> system-view [RouterC] vrrp mode load-balance # Create VRRP group 1, and assign virtual IP address to the group. 10

11 [RouterC] interface ethernet 1/1 [RouterC-Ethernet1/1] ip address [RouterC-Ethernet1/1] vrrp vrid 1 virtual-ip # Set Router C to work in preemptive mode and set the preemption delay to five seconds. [RouterC-Ethernet1/1] vrrp vrid 1 preempt-mode timer delay 5 [RouterC-Ethernet1/1] quit # Create track entry 1 to associate with the physical status of Ethernet 1/2 on Router C. When the track entry becomes negative, it means that the interface fails. [RouterC] track 1 interface ethernet 1/2 # Configure the VFs to monitor track entry 1, making the weight of Router C decrease by more than 245 (250 in this example) when track entry 1 turns to negative. In such a case, another router with a higher weight can take over. [RouterC] interface ethernet 1/1 [RouterC-Ethernet1/1] vrrp vrid 1 weight track 1 reduced 250 Verifying the configuration Check that Host A can ping the external network. Use the display vrrp verbose command to verify the configuration. # Display detailed information about VRRP group 1 on Router A. [RouterA-Ethernet1/1] display vrrp verbose IPv4 Standby Information: Run Mode Run Method : Load Balance : Total number of virtual routers : 1 Interface Ethernet1/1 VRID : 1 Adver Timer : 1 Admin Status : Up : Master Config Pri : 120 Running Pri : 120 Preempt Mode : Yes Delay Time : 5 Auth Type : None Virtual IP : Member IP List : (Local, Master) (Backup) (Backup) Forwarder Information: 3 Forwarders 1 Active Config Weight : 255 Running Weight : 255 Forwarder 01 : Active : 000f-e2ff-0011 (Owner) : e Priority : 255 Active : local 11

12 Forwarder 02 : Listening : 000f-e2ff-0012 (Learnt) : e Forwarder 03 Priority : 127 Active : : Listening : 000f-e2ff-0013 (Learnt) : e Priority : 127 Active : Forwarder Weight Track Information: Track Object : 1 : Positive Weight Reduced : 250 # Display detailed information about VRRP group 1 on Router B. [RouterB-Ethernet1/1] display vrrp verbose IPv4 Standby Information: Run Mode Run Method : Load Balance : Total number of virtual routers : 1 Interface Ethernet1/1 VRID : 1 Adver Timer : 1 Admin Status : Up : Backup Config Pri : 110 Running Pri : 110 Preempt Mode : Yes Delay Time : 5 Auth Type : None Virtual IP : Member IP List : (Local, Backup) (Master) (Backup) Forwarder Information : 3 Forwarders 1 Active Config Weight : 255 Forwarder 01 Running Weight : 255 : Listening : 000f-e2ff-0011 (Learnt) : e Priority : 127 Active :

13 Forwarder 02 : Active : 000f-e2ff-0012 (Owner) : e Priority : 255 Active : local Forwarder 03 : Listening : 000f-e2ff-0013 (Learnt) : e Priority : 127 Active : Forwarder Weight Track Information: Track Object : 1 : Positive Weight Reduced : 250 # Display detailed information about VRRP group 1 on Router C. [RouterC-Ethernet1/1] display vrrp verbose IPv4 Standby Information: Run Mode Run Method : Load Balance : Total number of virtual routers : 1 Interface Ethernet1/1 VRID : 1 Adver Timer : 1 Admin Status : Up : Backup Config Pri : 100 Running Pri : 100 Preempt Mode : Yes Delay Time : 5 Auth Type : None Virtual IP : Member IP List : (Local, Backup) (Master) (Backup) Forwarder Information : 3 Forwarders 1 Active Config Weight : 255 Running Weight : 255 Forwarder 01 : Listening : 000f-e2ff-0011 (Learnt) : e Priority : 127 Active :

14 Forwarder 02 : Listening : 000f-e2ff-0012 (Learnt) : e Forwarder 03 Priority : 127 Active : : Active : 000f-e2ff-0013 (Owner) : e Priority : 255 Active : local Forwarder Weight Track Information: Track Object : 1 : Positive Weight Reduced : 250 The output shows that in VRRP group 1, Router A is the master, and Router B and Router C are the backups. On each of the three routers, there is one AVF and two LVFs that act as backups. Summary As noted in this document, the Cisco GLBP protocol is proprietary. On the other hand, the VRRPE protocol is an open industry standard with wide industry support. We recommend that enterprises carry our network wide migration from GLBP to VRRPE. Cisco GLBP and VRRPE are not interoperable Recommend network-wide migration from GLBP to VRRPE For more information Please visit, Copyright 2012 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. The only warranties for HP products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting an additional warranty. HP shall not be liable for technical or editorial errors or omissions contained herein. 4AA3-9289ENW, Created February 2012

GLBP - Gateway Load Balancing Protocol

GLBP - Gateway Load Balancing Protocol GLBP - Gateway Load Balancing Protocol Gateway Load Balancing Protocol (GLBP) protects data traffic from a failed router or circuit, like Hot Standby Router Protocol (HSRP) and Virtual Router Redundancy

More information

Cisco Networking Academy CCNP Multilayer Switching

Cisco Networking Academy CCNP Multilayer Switching CCNP3 v5 - Chapter 5 Cisco Networking Academy CCNP Multilayer Switching Implementing High Availability in a Campus Environment Routing issues Hosts rely on a router to find the best path Issues with established

More information

VRRPv3: Object Tracking Integration

VRRPv3: Object Tracking Integration Virtual Router Redundancy Protocol (VRRP) enables a group of devices to form a single virtual device to provide redundancy. The LAN clients then can be configured with the virtual device as the default

More information

GLBP Gateway Load Balancing Protocol

GLBP Gateway Load Balancing Protocol GLBP Gateway Load Balancing Protocol By MEDDANE Redouane Cisco Instructor 1 How GLBP Works. GLBP works by making use of a single virtual IP address, which is configured as the default gateway on the hosts.

More information

Layer 3 Redundancy with HSRP By Sunset Learning Instructor Andrew Stibbards

Layer 3 Redundancy with HSRP By Sunset Learning Instructor Andrew Stibbards Layer 3 Redundancy with HSRP By Sunset Learning Instructor Andrew Stibbards Hot Standby Router Protocol (HSRP) is a Cisco proprietary protocol which allows several routers or multilayer switches to appear

More information

- Redundancy and Load Balancing -

- Redundancy and Load Balancing - 1 - Redundancy and Load Balancing - Importance of Redundancy High availability is critical in most environments. Even a brief outage due to hardware failure may be considered unacceptable. Consider the

More information

VRRP Technology White Paper

VRRP Technology White Paper Issue 01 Date 2012-08-31 HUAWEI TECHNOLOGIES CO., LTD. 2012. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of

More information

CCNP Switch 642-813 Questions/Answers Implementing High Availability and Redundancy

CCNP Switch 642-813 Questions/Answers Implementing High Availability and Redundancy Which Catalyst 6500 switch component integrates on individual line modules as well as on the supervisor engine? A. CPU B. Flash C. ASIC D. NVRAM Answer: C Cisco Catalyst 6500 Series with Cisco IOS Software

More information

Redundancy and load balancing at L3 in Local Area Networks. Fulvio Risso Politecnico di Torino

Redundancy and load balancing at L3 in Local Area Networks. Fulvio Risso Politecnico di Torino Redundancy and load balancing at L3 in Local Area Networks Fulvio Risso Politecnico di Torino 1 Problem: the router is a single point of failure H1 H2 H3 VLAN4 H4 VLAN4 Corporate LAN Corporate LAN R1 R2

More information

Redundancy and load balancing at L3 in Local Area Networks. Fulvio Risso Politecnico di Torino

Redundancy and load balancing at L3 in Local Area Networks. Fulvio Risso Politecnico di Torino Redundancy and load balancing at L3 in Local Area Networks Fulvio Risso Politecnico di Torino 1 Default gateway redundancy (1) H1 DG: R1 H2 DG: R1 H3 DG: R1 R1 R2 ISP1 ISP2 Internet 3 Default gateway redundancy

More information

Cisco GLBP Load Balancing Options

Cisco GLBP Load Balancing Options Data Sheet Cisco GLBP Load Balancing Options Last updated: December 2005 INTRODUCTION The purpose of this document is to discuss the options that Cisco Gateway Load Balancing Protocol (GLBP) one of Cisco

More information

First Hop Redundancy (Layer 3) 1. Network Design First Hop. Agenda. First Hop Redundancy (Layer 3) 2. L102 - First Hop Redundancy

First Hop Redundancy (Layer 3) 1. Network Design First Hop. Agenda. First Hop Redundancy (Layer 3) 2. L102 - First Hop Redundancy First Hop Redundancy (Layer 3) 1 Network Design First Hop First Hop Redundancy, Server Redundancy The problem: How can local routers be recognized by IP hosts? Note: Normally IP host has limited view of

More information

Digi Certified Transport Technician Training Course (DCTT)

Digi Certified Transport Technician Training Course (DCTT) 1 2 A roadblock to this might be if dynamic routing using proprietary protocols, like EIGRP, are required. 3 (VRRP Can also be used over FDDI/Token Ring) HSRP (Hot Standby Router Protocol) is the Cisco

More information

Simulation of High Availability Internet Service Provider s Network

Simulation of High Availability Internet Service Provider s Network Abdullah Jameel Mahdi 1 and Anas Ali Hussain 2 1 Information and Communication department, Information Engineering Collage, Al-Nahrin University 2 Computer department, Engineering Collage, Al-Nahrin University

More information

RESILIENT NETWORK DESIGN

RESILIENT NETWORK DESIGN Matěj Grégr RESILIENT NETWORK DESIGN 1/36 2011 Brno University of Technology, Faculty of Information Technology, Matěj Grégr, igregr@fit.vutbr.cz Campus Best Practices - Resilient network design Campus

More information

Redundancy and load balancing at L3 in Local. Fulvio Risso Politecnico di Torino

Redundancy and load balancing at L3 in Local. Fulvio Risso Politecnico di Torino Redundancy and load balancing at L3 in Local Area Networks Fulvio Risso Politecnico di Torino 1 Copyright notice This set of transparencies, hereinafter referred to as slides, is protected by copyright

More information

M2M Series Routers. Virtual Router Redundancy Protocol (VRRP) Configuration Whitepaper

M2M Series Routers. Virtual Router Redundancy Protocol (VRRP) Configuration Whitepaper Virtual Router Redundancy Protocol (VRRP) Configuration Whitepaper Table of Contents What is VRRP?... 3 VRRP Terminology... 3 Virtual Router... 3 VRRP Instance... 3 Virtual Router ID... 3 Virtual Router

More information

IP Application Services Commands show vrrp. This command was introduced. If no group is specified, the status for all groups is displayed.

IP Application Services Commands show vrrp. This command was introduced. If no group is specified, the status for all groups is displayed. show vrrp show vrrp To display a brief or detailed status of one or all configured Virtual Router Redundancy Protocol (VRRP) groups on the router, use the show vrrp command in privileged EXEC mode. show

More information

CCNP SWITCH: Implementing High Availability and Redundancy in a Campus Network

CCNP SWITCH: Implementing High Availability and Redundancy in a Campus Network CCNP SWITCH: Implementing High Availability and Redundancy in a Campus Network Olga Torstensson SWITCHv6 1 Components of High Availability Redundancy Technology (including hardware and software features)

More information

High Availability. Vyatta System

High Availability. Vyatta System VYATTA, INC. Vyatta System High Availability REFERENCE GUIDE WAN Load Balancing VRRP Clustering Stateful NAT and Firewall Failover RAID 1 Configuration Synchronization Vyatta Suite 200 1301 Shoreway Road

More information

The VRRP Project. (Virtual Router Redundancy Protocol) Design Document

The VRRP Project. (Virtual Router Redundancy Protocol) Design Document The VRRP Project (Virtual Router Redundancy Protocol) Design Document Cathy.Zhou@Sun.Com Solaris Networking Sun Microsystems, Inc. Revision 1.0 July 7, 2009 Contents 1 Introduction...1 2 Requirements...1

More information

Chapter 12 Configuring VRRP and VRRPE

Chapter 12 Configuring VRRP and VRRPE Chapter 12 Configuring VRRP and VRRPE This chapter describes how to configure HP routing switches to configure the following router redundancy protocols: Virtual Router Redundancy Protocol (VRRP) The standard

More information

CHAPTER 10 LAN REDUNDANCY. Scaling Networks

CHAPTER 10 LAN REDUNDANCY. Scaling Networks CHAPTER 10 LAN REDUNDANCY Scaling Networks CHAPTER 10 10.0 Introduction 10.1 Spanning Tree Concepts 10.2 Varieties of Spanning Tree Protocols 10.3 Spanning Tree Configuration 10.4 First-Hop Redundancy

More information

Cisco.Selftestengine.642-813.v2013-11-30.by.Amy.32q

Cisco.Selftestengine.642-813.v2013-11-30.by.Amy.32q Cisco.Selftestengine.642-813.v2013-11-30.by.Amy.32q Number: 642-813 Passing Score: 825 Time Limit: 120 min File Version: 14.5 http://www.gratisexam.com/ Exam Code: 642-813 Exam Name: Cisco implementing

More information

Traffic monitoring with sflow and ProCurve Manager Plus

Traffic monitoring with sflow and ProCurve Manager Plus An HP ProCurve Networking Application Note Traffic monitoring with sflow and ProCurve Manager Plus Contents 1. Introduction... 3 2. Prerequisites... 3 3. Network diagram... 3 4. About the sflow protocol...

More information

Configuring IKEv2 Load Balancer

Configuring IKEv2 Load Balancer The IKEv2 Load Balancer feature provides support for enabling clusters of FlexVPN gateways and distributes incoming Internet Key Exchange Version 2 (IKEv2) connection requests among FlexVPN gateways. This

More information

REDUNDANCY PROTOCOLS FOR CAMPOUS NETWORK

REDUNDANCY PROTOCOLS FOR CAMPOUS NETWORK REDUNDANCY PROTOCOLS FOR CAMPOUS NETWORK Kabita Sahoo * and Jagannath Ballav Goswami * Centurion University of Technology and Management, BBSR. DRIEMS, Tangi, Cuttack. ABSTRACT In this paper we are describing

More information

High Availability. Vyatta System

High Availability. Vyatta System VYATTA, INC. Vyatta System High Availability REFERENCE GUIDE WAN Load Balancing VRRP Clustering Stateful NAT and Firewall Failover RAID 1 Configuration Synchronization Vyatta Suite 200 1301 Shoreway Road

More information

Configuring Enhanced Object Tracking

Configuring Enhanced Object Tracking Configuring Enhanced Object Tracking First Published: May 2, 2005 Last Updated: July 1, 2009 Before the introduction of the Enhanced Object Tracking feature, the Hot Standby Router Protocol (HSRP) had

More information

How to configure MAC authentication on a ProCurve switch

How to configure MAC authentication on a ProCurve switch An HP ProCurve Networking Application Note How to configure MAC authentication on a ProCurve switch Contents 1. Introduction... 3 2. Prerequisites... 3 3. Network diagram... 3 4. Configuring the ProCurve

More information

How to Configure Web Authentication on a ProCurve Switch

How to Configure Web Authentication on a ProCurve Switch An HP ProCurve Networking Application Note How to Configure Web Authentication on a ProCurve Switch Contents 1. Introduction... 2 2. Prerequisites... 2 3. Network diagram... 2 4. Configuring the ProCurve

More information

Sample Configuration Using the ip nat outside source static

Sample Configuration Using the ip nat outside source static Sample Configuration Using the ip nat outside source static Table of Contents Sample Configuration Using the ip nat outside source static Command...1 Introduction...1 Before You Begin...1 Conventions...1

More information

HP Device Manager 4.7

HP Device Manager 4.7 Technical white paper HP Device Manager 4.7 LDAP Troubleshooting Guide Table of contents Introduction... 2 HPDM LDAP-related context and background... 2 LDAP in HPDM... 2 Full domain account name login...

More information

Brocade to Cisco Comparisons

Brocade to Cisco Comparisons 1 2 3 Console cables - The console cables are not interchangeable between Brocade and Cisco. Each vendor provides their console cable with each manageable unit it sells. Passwords - Neither Cisco or Brocade

More information

Fast Fault Recovery in Switched Networks for Carrying IP Telephony Traffic

Fast Fault Recovery in Switched Networks for Carrying IP Telephony Traffic Technical report, IDE1002, February 2010 Fast Fault Recovery in Switched Networks for Carrying IP Telephony Traffic Master s Thesis in Computer Network Engineering ALI AKBAR EISAZADEH & NORA ESPAHBODI

More information

HP network adapter teaming: load balancing in ProLiant servers running Microsoft Windows operating systems

HP network adapter teaming: load balancing in ProLiant servers running Microsoft Windows operating systems HP network adapter teaming: load balancing in ProLiant servers running Microsoft Windows operating systems white paper Introduction... 2 Overview of teaming and load balancing... 2 Transmit Load Balancing...

More information

IP videoconferencing solution with ProCurve switches and Tandberg terminals

IP videoconferencing solution with ProCurve switches and Tandberg terminals An HP ProCurve Networking Application Note IP videoconferencing solution with ProCurve switches and Tandberg terminals Contents 1. Introduction... 3 2. Architecture... 3 3. Videoconferencing traffic and

More information

ICS 351: Today's plan

ICS 351: Today's plan ICS 351: Today's plan Quiz, on overall Internet function, linux and IOS commands, network monitoring, protocols IPv4 addresses: network part and host part address masks IP interface configuration IPv6

More information

Monitoring Traffic Interception

Monitoring Traffic Interception CHAPTER 2 This chapter describes how to use traffic interception to monitor your WAAS devices and contains the following sections: Verifying WCCPv2 Interception, page 2-1 Verifying Inline Interception,

More information

TESTING & INTEGRATION GROUP SOLUTION GUIDE

TESTING & INTEGRATION GROUP SOLUTION GUIDE TESTING & INTEGRATION GROUP SOLUTION GUIDE AppDirecor optimizing the delivery of VMware View 4.5 Contents INTRODUCTION... 2 RADWARE APPDIRECTOR... 2 VMWARE VIEW... 2 RADWARE APPDIRECTOR AND VMWARE VIEW

More information

PT Activity 8.1.2: Network Discovery and Documentation Topology Diagram

PT Activity 8.1.2: Network Discovery and Documentation Topology Diagram Topology Diagram All contents are Copyright 1992 2007 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 1 of 6 Addressing Table Device Interface IP Address Subnet

More information

DATA CENTER. Best Practices for High Availability Deployment for the Brocade ADX Switch

DATA CENTER. Best Practices for High Availability Deployment for the Brocade ADX Switch DATA CENTER Best Practices for High Availability Deployment for the Brocade ADX Switch CONTENTS Contents... 2 Executive Summary... 3 Introduction... 3 Brocade ADX HA Overview... 3 Hot-Standby HA... 4 Active-Standby

More information

HP Device Manager 4.6

HP Device Manager 4.6 Technical white paper HP Device Manager 4.6 LDAP Troubleshooting Guide Table of contents Introduction... 2 HPDM LDAP-related context and background... 2 LDAP in HPDM... 2 Configuring User Authentication...

More information

Quick Note 20. Configuring a GRE tunnel over an IPSec tunnel and using BGP to propagate routing information. (GRE over IPSec with BGP)

Quick Note 20. Configuring a GRE tunnel over an IPSec tunnel and using BGP to propagate routing information. (GRE over IPSec with BGP) Quick Note 20 Configuring a GRE tunnel over an IPSec tunnel and using BGP to propagate routing information. (GRE over IPSec with BGP) Appendix A GRE over IPSec with Static routes UK Support August 2012

More information

Layer 3 Routing User s Manual

Layer 3 Routing User s Manual User s Manual Second Edition, July 2011 www.moxa.com/product 2011 Moxa Inc. All rights reserved. User s Manual The software described in this manual is furnished under a license agreement and may be used

More information

IP network tools & troubleshooting. AFCHIX 2010 Nairobi, Kenya October 2010

IP network tools & troubleshooting. AFCHIX 2010 Nairobi, Kenya October 2010 IP network tools & troubleshooting AFCHIX 2010 Nairobi, Kenya October 2010 Network configuration Reminder, configure your network in /etc/ rc.conf ( x = your IP, from.10 to...) ifconfig_bge0= 41.215.76.x/24

More information

Samba on HP StorageWorks Enterprise File Services (EFS) Clustered File System Software

Samba on HP StorageWorks Enterprise File Services (EFS) Clustered File System Software Samba on HP StorageWorks Enterprise File Services (EFS) Clustered File System Software Installation and integration guide Abstract... 2 Introduction... 2 Application overview... 2 Application configuration...

More information

HP ProCurve 1800 Switches. Management and Configuration Guide

HP ProCurve 1800 Switches. Management and Configuration Guide HP ProCurve 1800 Switches Management and Configuration Guide July 2009 HP ProCurve 1800 Switches Management and Configuration Guide Copyright 2006, 2009 Hewlett-Packard Development Company, L.P. The information

More information

Advanced SLB High Availability and Stateless SLB

Advanced SLB High Availability and Stateless SLB Advanced SLB High Availability and Stateless SLB Objectives Upon completion of this module, you will be able to: Describe Server Load Balancing (SLB) high availability Distinguish between different high

More information

Firewall Load Balancing

Firewall Load Balancing CHAPTER 6 This chapter describes the (FWLB) feature. It includes the following sections: FWLB Overview, page 6-1 FWLB Features, page 6-2 FWLB Configuration Tasks, page 6-3 Monitoring and Maintaining FWLB,

More information

CA Nimsoft Monitor. Probe Guide for Internet Control Message Protocol Ping. icmp v1.1 series

CA Nimsoft Monitor. Probe Guide for Internet Control Message Protocol Ping. icmp v1.1 series CA Nimsoft Monitor Probe Guide for Internet Control Message Protocol Ping icmp v1.1 series CA Nimsoft Monitor Copyright Notice This online help system (the "System") is for your informational purposes

More information

HP Networking BGP and MPLS technology training

HP Networking BGP and MPLS technology training Course overview HP Networking BGP and MPLS technology training (HL046_00429577) The HP Networking BGP and MPLS technology training provides networking professionals the knowledge necessary for designing,

More information

How To Understand and Configure Your Network for IntraVUE

How To Understand and Configure Your Network for IntraVUE How To Understand and Configure Your Network for IntraVUE Summary This document attempts to standardize the methods used to configure Intrauve in situations where there is little or no understanding of

More information

Stateful Network Address Translators (NAT) Xiaohu Xu (xuxh@huawei.com) Dean Cheng (chengd@huawei.com) IETF75, Stockholm

Stateful Network Address Translators (NAT) Xiaohu Xu (xuxh@huawei.com) Dean Cheng (chengd@huawei.com) IETF75, Stockholm Redundancy and Load-Balancing Mechanisms for Stateful Network Address Translators (NAT) draft-xu-behave-stateful-nat-standby-00 Xiaohu Xu (xuxh@huawei.com) Dean Cheng (chengd@huawei.com) www.huawei.com

More information

Configuring Denial of Service Protection

Configuring Denial of Service Protection 24 CHAPTER This chapter contains information on how to protect your system against Denial of Service (DoS) attacks. The information covered in this chapter is unique to the Catalyst 6500 series switches,

More information

Cisco Certified Network Associate Exam. Operation of IP Data Networks. LAN Switching Technologies. IP addressing (IPv4 / IPv6)

Cisco Certified Network Associate Exam. Operation of IP Data Networks. LAN Switching Technologies. IP addressing (IPv4 / IPv6) Cisco Certified Network Associate Exam Exam Number 200-120 CCNA Associated Certifications CCNA Routing and Switching Operation of IP Data Networks Operation of IP Data Networks Recognize the purpose and

More information

Note: This case study utilizes Packet Tracer. Please see the Chapter 5 Packet Tracer file located in Supplemental Materials.

Note: This case study utilizes Packet Tracer. Please see the Chapter 5 Packet Tracer file located in Supplemental Materials. Note: This case study utilizes Packet Tracer. Please see the Chapter 5 Packet Tracer file located in Supplemental Materials. CHAPTER 5 OBJECTIVES Configure a router with an initial configuration. Use the

More information

HP Device Manager 4.6

HP Device Manager 4.6 Technical white paper HP Device Manager 4.6 Installation and Update Guide Table of contents Overview... 3 HPDM Server preparation... 3 FTP server configuration... 3 Windows Firewall settings... 3 Firewall

More information

A New Approach to Developing High-Availability Server

A New Approach to Developing High-Availability Server A New Approach to Developing High-Availability Server James T. Yu, Ph.D. School of Computer Science, Telecommunications, and Information Systems DePaul University jyu@cs.depaul.edu ABSTRACT This paper

More information

HP Auto Port Aggregation (APA) Release Notes

HP Auto Port Aggregation (APA) Release Notes HP Auto Port Aggregation (APA) Release Notes HP-UX 11i v3 HP Part Number: J4240-90036 Published: February 2007 Edition: February 2007, E0207 Copyright 2007 Hewlett-Packard Development Company, L.P. Confidential

More information

Using HP ProLiant Network Teaming Software with Microsoft Windows Server 2008 Hyper-V or with Microsoft Windows Server 2008 R2 Hyper-V

Using HP ProLiant Network Teaming Software with Microsoft Windows Server 2008 Hyper-V or with Microsoft Windows Server 2008 R2 Hyper-V Using HP ProLiant Network Teaming Software with Microsoft Windows Server 2008 Hyper-V or with Microsoft Windows Server 2008 R2 Hyper-V HOWTO, 4 TH Edition Introduction... 2 Software requirements... 2 Order

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Application Notes SAN/iQ Remote Copy Networking Requirements Legal Notices Warranty The only warranties for HP products and services are set forth in the express

More information

Introduction to Differentiated Services (DiffServ) and HP-UX IPQoS

Introduction to Differentiated Services (DiffServ) and HP-UX IPQoS Introduction to Differentiated Services (DiffServ) and HP-UX IPQoS What is Quality of Service (QoS)?... 2 Differentiated Services (DiffServ)... 2 Overview... 2 Example XYZ Corporation... 2 Components of

More information

Objectives. The Role of Redundancy in a Switched Network. Layer 2 Loops. Broadcast Storms. More problems with Layer 2 loops

Objectives. The Role of Redundancy in a Switched Network. Layer 2 Loops. Broadcast Storms. More problems with Layer 2 loops ITE I Chapter 6 2006 Cisco Systems, Inc. All rights reserved. Cisco Public 1 Objectives Implement Spanning Tree Protocols LAN Switching and Wireless Chapter 5 Explain the role of redundancy in a converged

More information

HP Load Balancing Module

HP Load Balancing Module HP Load Balancing Module Load Balancing Configuration Guide Part number: 5998-2685 Document version: 6PW101-20120217 Legal and notice information Copyright 2012 Hewlett-Packard Development Company, L.P.

More information

HP Device Manager 4.6

HP Device Manager 4.6 Technical white paper HP Device Manager 4.6 Disaster Recovery Guide Table of contents Overview... 2 General recovery process... 2 Recovering the HPDM Server... 5 Backing up the data... 5 Installing the

More information

IP Multicast and IGMP: Hewlett-Packard Procurve Switch 4108GL Default Behavior, Address Mapping, and Reserved Addresses

IP Multicast and IGMP: Hewlett-Packard Procurve Switch 4108GL Default Behavior, Address Mapping, and Reserved Addresses IP Multicast and IGMP: Hewlett-Packard Procurve Switch 4108GL Default Behavior, Address Mapping, and Reserved Addresses This article applies to the following Hewlett-Packard Procurve Switch: 4108GL (J4865A)

More information

HP Intelligent Management Center v7.1 Virtualization Monitor Administrator Guide

HP Intelligent Management Center v7.1 Virtualization Monitor Administrator Guide HP Intelligent Management Center v7.1 Virtualization Monitor Administrator Guide Abstract This guide describes the Virtualization Monitor (vmon), an add-on service module of the HP Intelligent Management

More information

How To Configure A Vyatta 4.2.0 As A Ds Internet Connection Router/Gateway With A Web Server On A Dspv.Net 4.0.1 (Dspv) On A Network With A D

How To Configure A Vyatta 4.2.0 As A Ds Internet Connection Router/Gateway With A Web Server On A Dspv.Net 4.0.1 (Dspv) On A Network With A D Open Informatics a An Information Technology Company Visit us on the web at www.openinformatics.net Tutorial Author: Zlatan Klebic Send Feedback: zklebic@openinformatics.net Configuring a Vyatta 4.0 release

More information

IPv6 Diagnostic and Troubleshooting

IPv6 Diagnostic and Troubleshooting 8 IPv6 Diagnostic and Troubleshooting Contents Introduction.................................................. 8-2 ICMP Rate-Limiting........................................... 8-2 Ping for IPv6 (Ping6)..........................................

More information

Configuring Server Load Balancing

Configuring Server Load Balancing Configuring Server Load Balancing This chapter describes how to configure the IOS Server Load Balancing (SLB) feature. For a complete description of the SLB commands in this chapter, refer to the Server

More information

ProCurve Networking. Hardening ProCurve Switches. Technical White Paper

ProCurve Networking. Hardening ProCurve Switches. Technical White Paper ProCurve Networking Hardening ProCurve Switches Technical White Paper Executive Summary and Purpose... 3 Insecure Protocols and Secure Alternatives... 3 Telnet vs. Secure Shell... 3 HTTP vs. HTTPS... 3

More information

CCNA Exploration 4.0: (II) Routing Protocols and Concepts. Chapter 1: Introduction to Routing and Packet Forwarding

CCNA Exploration 4.0: (II) Routing Protocols and Concepts. Chapter 1: Introduction to Routing and Packet Forwarding Http://elmaestrodelared.blogspot.com CCNA Exploration 4.0: (II) Routing Protocols and Concepts Chapter 1: Introduction to Routing and Packet Forwarding 1. If a router cannot find a valid configuration

More information

Security Considerations in IP Telephony Network Configuration

Security Considerations in IP Telephony Network Configuration Security Considerations in IP Telephony Network Configuration Abstract This Technical Report deals with fundamental security settings in networks to provide secure VoIP services. Example configurations

More information

Sample Configuration Using the ip nat outside source list C

Sample Configuration Using the ip nat outside source list C Sample Configuration Using the ip nat outside source list C Table of Contents Sample Configuration Using the ip nat outside source list Command...1 Introduction...1 Before You Begin...1 Conventions...1

More information

Interoperability between Avaya IP phones and ProCurve switches

Interoperability between Avaya IP phones and ProCurve switches An HP ProCurve Networking Application Note Interoperability between Avaya IP phones and ProCurve switches Contents 1. Introduction... 3 2. Architecture... 3 3. Checking PoE compatibility... 3 4. Configuring

More information

Clustering. Configuration Guide IPSO 6.2

Clustering. Configuration Guide IPSO 6.2 Clustering Configuration Guide IPSO 6.2 August 13, 2009 Contents Chapter 1 Chapter 2 Chapter 3 Overview of IP Clustering Example Cluster... 9 Cluster Management... 11 Cluster Terminology... 12 Clustering

More information

The Complete IS-IS Routing Protocol

The Complete IS-IS Routing Protocol Hannes Gredler and Walter Goralski The Complete IS-IS Routing Protocol 4y Springer Contents Foreword Credits and Thanks vii ix 1 Introduction, Motivation and Historical Background 1 1.1 Motivation 1 1.2

More information

HP Device Manager 4.6

HP Device Manager 4.6 Technical white paper HP Device Manager 4.6 FTP Server Configuration Table of contents Overview... 2 IIS FTP server configuration... 2 Installing FTP v7.5 for IIS... 2 Creating an FTP site with basic authentication...

More information

Chapter 3 Configuring Basic IPv6 Connectivity

Chapter 3 Configuring Basic IPv6 Connectivity Chapter 3 Configuring Basic IPv6 Connectivity This chapter explains how to get a ProCurve Routing Switch that supports IPv6 up and running. To configure basic IPv6 connectivity, you must do the following:

More information

Static and Dynamic Network Configuration

Static and Dynamic Network Configuration CHAPTER 6 This chapter describes: Static Networks Dynamic Networks Static Networks The mobile access router can be part of a static network or a dynamic network. A static network supports stub routers

More information

Astaro Deployment Guide High Availability Options Clustering and Hot Standby

Astaro Deployment Guide High Availability Options Clustering and Hot Standby Connect With Confidence Astaro Deployment Guide Clustering and Hot Standby Table of Contents Introduction... 2 Active/Passive HA (Hot Standby)... 2 Active/Active HA (Cluster)... 2 Astaro s HA Act as One...

More information

IP Routing Features. Contents

IP Routing Features. Contents 7 IP Routing Features Contents Overview of IP Routing.......................................... 7-3 IP Interfaces................................................ 7-3 IP Tables and Caches........................................

More information

HP Data Protector Integration with Autonomy IDOL Server

HP Data Protector Integration with Autonomy IDOL Server HP Data Protector Integration with Autonomy IDOL Server Introducing e-discovery for HP Data Protector environments Technical white paper Table of contents Summary... 2 Introduction... 2 Integration concepts...

More information

Chapter 7 Lab 7-1, Configuring Switches for IP Telephony Support

Chapter 7 Lab 7-1, Configuring Switches for IP Telephony Support Chapter 7 Lab 7-1, Configuring Switches for IP Telephony Support Topology Objectives Background Configure auto QoS to support IP phones. Configure CoS override for data frames. Configure the distribution

More information

Lab 4.5.4 Diagramming External Traffic Flows

Lab 4.5.4 Diagramming External Traffic Flows Lab 4.5.4 Diagramming External Traffic Flows Device Designation Device Name Address Subnet Mask Discovery Server Business Services 172.17.1.1 255.255.0.0 R1 R2 R3 FC-CPE-1 FC-CPE-2 ISP Fa0/1 172.17.0.1

More information

Lab 7-1 Configuring Switches for IP Telephony Support

Lab 7-1 Configuring Switches for IP Telephony Support Lab 7-1 Configuring Switches for IP Telephony Support Learning Objectives Configure auto QoS to support IP phones Configure CoS override for data frames Configure the distribution layer to trust access

More information

Configuring the Transparent or Routed Firewall

Configuring the Transparent or Routed Firewall 5 CHAPTER This chapter describes how to set the firewall mode to routed or transparent, as well as how the firewall works in each firewall mode. This chapter also includes information about customizing

More information

Link Load Balancing 2015-04-28 08:50:44 UTC. 2015 Citrix Systems, Inc. All rights reserved. Terms of Use Trademarks Privacy Statement

Link Load Balancing 2015-04-28 08:50:44 UTC. 2015 Citrix Systems, Inc. All rights reserved. Terms of Use Trademarks Privacy Statement Link Load Balancing 2015-04-28 08:50:44 UTC 2015 Citrix Systems, Inc. All rights reserved. Terms of Use Trademarks Privacy Statement Contents Link Load Balancing... 3 Link Load Balancing... 4 Configuring

More information

AUTO DEFAULT GATEWAY SETTINGS FOR VIRTUAL MACHINES IN SERVERS USING DEFAULT GATEWAY WEIGHT SETTINGS PROTOCOL (DGW)

AUTO DEFAULT GATEWAY SETTINGS FOR VIRTUAL MACHINES IN SERVERS USING DEFAULT GATEWAY WEIGHT SETTINGS PROTOCOL (DGW) AUTO DEFAULT GATEWAY SETTINGS FOR VIRTUAL MACHINES IN SERVERS USING DEFAULT GATEWAY WEIGHT SETTINGS PROTOCOL (DGW) Suman Dutta 1, Shouman Barua 2 and Jishu Sen 3 1 IT Trainer, Logitrain.com.au 2 PhD research

More information

Chapter 2 Lab 2-2, Configuring EtherChannel Instructor Version

Chapter 2 Lab 2-2, Configuring EtherChannel Instructor Version Chapter 2 Lab 2-2, Configuring EtherChannel Instructor Version Topology Objective Background Configure EtherChannel. Four switches have just been installed. The distribution layer switches are Catalyst

More information

Bridgewalling - Using Netfilter in Bridge Mode

Bridgewalling - Using Netfilter in Bridge Mode Bridgewalling - Using Netfilter in Bridge Mode Ralf Spenneberg, ralf@spenneberg.net Revision : 1.5 Abstract Firewalling using packet filters is usually performed by a router. The packet filtering software

More information

Configuring Static and Dynamic NAT Translation

Configuring Static and Dynamic NAT Translation This chapter contains the following sections: Network Address Translation Overview, page 1 Information About Static NAT, page 2 Dynamic NAT Overview, page 3 Timeout Mechanisms, page 4 NAT Inside and Outside

More information

How To Load Balance On A Cisco Cisco Cs3.X With A Csono Css 3.X And Csonos 3.5.X (Cisco Css) On A Powerline With A Powerpack (C

How To Load Balance On A Cisco Cisco Cs3.X With A Csono Css 3.X And Csonos 3.5.X (Cisco Css) On A Powerline With A Powerpack (C esafe Gateway/Mail v. 3.x Load Balancing for esafe Gateway 3.x with Cisco Web NS and CSS Switches Design and implementation guide esafe Gateway provides fast and transparent real-time inspection of Internet

More information

NetFlow Subinterface Support

NetFlow Subinterface Support NetFlow Subinterface Support Feature History Release Modification 12.2(14)S This feature was introduced. 12.2(15)T This feature was integrated into Cisco IOS Release 12.2 T. This document describes the

More information

Chapter 10 Configuring Metro Features

Chapter 10 Configuring Metro Features Chapter 10 Configuring Metro eatures This chapter describes the following Metro features: Topology groups A topology group enables you to control the Layer 2 protocol configuration and Layer 2 state of

More information

Link Layer Discovery Protocol

Link Layer Discovery Protocol 12 Link Layer Discovery Protocol Contents Overview..................................................... 12-2 LLDP..................................................... 12-2 LLDP Messages............................................

More information

Configuring EtherChannels

Configuring EtherChannels CHAPTER 12 This chapter describes how to configure EtherChannels on the Cisco 7600 series router Layer 2 or Layer 3 LAN ports. For complete syntax and usage information for the commands used in this chapter,

More information

ProLiant Essentials Intelligent Networking Active Path Failover in Microsoft Windows environments

ProLiant Essentials Intelligent Networking Active Path Failover in Microsoft Windows environments ProLiant Essentials Intelligent Networking Active Path Failover in Microsoft Windows environments white paper Abstract... 2 Introduction... 2 Benefits of Active Path Failover... 3 How the Active Path Failover

More information

Interoperability between Mitel IP Phones and ProCurve Switches

Interoperability between Mitel IP Phones and ProCurve Switches An HP ProCurve Networking Application Note Interoperability between Mitel IP Phones and ProCurve Switches Contents 1. Introduction... 3 2. Architecture... 3 3. Configuration... 3 3.1 Check power over Ethernet

More information