RSVP Message Authentication

Size: px
Start display at page:

Download "RSVP Message Authentication"

Transcription

1 RSVP Message Authentication The Resource Reservation Protocol (RSVP) Message Authentication feature provides a secure method to control quality of service (QoS) access to a network. Feature Specifications for RSVP Message Authentication Feature History Release Modification 12.2(15)T This feature was introduced. 12.0(26)S Restrictions were added for interfaces that use Fast Reroute (FRR) node or link protection and for RSVP hellos for FRR for packet over SONET (POS) interfaces. Supported Platforms For platforms supported in and 12.2(15)T, consult Cisco Feature Navigator. Finding Support Information for Platforms and Cisco IOS Software Images Use Cisco Feature Navigator to find information about platform support and Cisco IOS software image support. Access Cisco Feature Navigator at You must have an account on Cisco.com. If you do not have an account or have forgotten your username or password, click Cancel at the login dialog box and follow the instructions that appear. Contents Prerequisites for RSVP Message Authentication, page 2 Restrictions for RSVP Message Authentication, page 2 Information About RSVP Message Authentication, page 2 How to Configure RSVP Message Authentication, page 5 Configuration Examples for RSVP Message Authentication, page 16 Additional References, page 18 Command Reference, page 21 Corporate Headquarters: Cisco Systems, Inc., 170 West Tasman Drive, San Jose, CA USA Copyright 2003 Cisco Systems, Inc. All rights reserved.

2 Prerequisites for RSVP Message Authentication RSVP Message Authentication Glossary, page 22 Prerequisites for RSVP Message Authentication Ensure that RSVP is configured on two or more routers within the network before you can use the RSVP Message Authentication feature. Restrictions for RSVP Message Authentication The RSVP Message Authentication feature is only for authenticating RSVP neighbors. The RSVP Message Authentication feature cannot discriminate between various QoS applications or users, of which many may exist on an authenticated RSVP neighbor. Authentication is not supported on interfaces that are protected by FRR. Authentication is not supported on interfaces that use RSVP hellos. Information About RSVP Message Authentication To configure RSVP Message Authentication, you need to understand the following concepts: Feature Design of RSVP Message Authentication, page 2 Special Considerations for RSVP Message Authentication, page 4 Benefits of RSVP Message Authentication, page 4 Feature Design of RSVP Message Authentication Network administrators need the ability to establish a security domain to control the set of systems that initiate RSVP requests. The RSVP Message Authentication feature permits neighbors in an RSVP network to use a secure hash to sign all RSVP signaling messages digitally, thus allowing the receiver of an RSVP message to verify the sender of the message without relying solely on the sender s IP address as is done by issuing the ip rsvp neighbor command with an access control list (ACL). The signature is accomplished on a per-rsvp-hop basis with an RSVP integrity object in the RSVP message. This method provides protection against forgery or message modification. However, the receiver must know the security key used by the sender in order to validate the digital signature in the received RSVP message. Network administrators manually configure a common key for each RSVP neighbor interface on the shared network. A sample configuration is shown in Figure 1. 2

3 RSVP Message Authentication Information About RSVP Message Authentication Figure 1 RSVP Message Authentication Configuration Trust Boundary Untrusted Trusted Trust Boundary Untrusted X Host 2 1 Host Router X 1 X X Router Trusted Backbone Router X X 2 2 Host NTP Time Server (Optional) NTP Time Server (Optional) Host 1 = Knows Authentication Key; Accepted 2 = Does Not Know Key; Rejected X = RSVP Authentication Enabled

4 Information About RSVP Message Authentication RSVP Message Authentication Special Considerations for RSVP Message Authentication In Figure 2, to enable authentication between Internet service providers (ISPs) A and B, A and C, and A and D, the ISPs must share a common key. However, sharing a common key also enables authentication between ISPs B and C, C and D, and B and D. You may not want authentication among all the ISPs because they might be different companies with unique security domains. Figure 2 RSVP Message Authentication in an Ethernet Configuration Access Network Access Network Access Network Key X for ISP Router A's IP Address ISP Router B Key Y for ISP Router A's IP Address ISP Router C Key Z for ISP Router A's IP Address ISP Router D Ethernet DMZ DMZ = Demilitarized Zone ISP = Internet Service Provider Key X for ISP Router B's IP Address Key Y for ISP Router C's IP Address Key Z for ISP Router D's IP Address ISP Router A Backbone This release does not support the above topology. You need separate Ethernet networks for A to B, B to A, A to C, C to A, A to D, and D to A. Then configure unique interface keys for them. Benefits of RSVP Message Authentication Improved Security The RSVP Message Authentication feature greatly reduces the chance of an RSVP-based spoofing attack and provides a secure method to control QoS access to a network. Multiple Environments The RSVP Message Authentication feature can be used in traffic engineering (TE) and non-te environments as well as with subnetwork bandwidth manager (SBM). Multiple Platforms and Interfaces The RSVP Message Authentication feature can be used on any supported RSVP platform or interface. 4

5 RSVP Message Authentication How to Configure RSVP Message Authentication How to Configure RSVP Message Authentication The following configuration parameters instruct RSVP on how to generate and verify integrity objects in various RSVP messages. Note There are two configuration procedures full and minimal. This section contains the following procedures for a full configuration: Enabling RSVP on an Interface, page 5 (required) Configuring an RSVP Authentication Type, page 6 (optional) Configuring an RSVP Authentication Key, page 7 (required) Enabling RSVP Key Encryption, page 8 (optional) Enabling RSVP Authentication Challenge, page 9 (optional) Configuring RSVP Authentication Lifetime, page 10 (optional) Configuring RSVP Authentication Window Size, page 11 (optional) Activating RSVP Authentication, page 12 (required) Verifying RSVP Message Authentication, page 13 (optional) This section contains the following tasks for a minimal configuration: Enabling RSVP on an Interface, page 5 (required) Configuring an RSVP Authentication Key, page 7 (required) Activating RSVP Authentication, page 12 (required) Enabling RSVP on an Interface Perform this task to enable RSVP on an interface. SUMMARY STEPS 1. enable 2. configure terminal 3. interface [type number] 4. ip rsvp bandwidth [interface-kbps] [single-flow-kbps] 5. end 5

6 How to Configure RSVP Message Authentication RSVP Message Authentication DETAILED STEPS Step 1 Step 2 enable Router> enable configure terminal Enables privileged EXEC mode. Enter your password if prompted. Enters global configuration mode. Step 3 Step 4 Step 5 Router# configure terminal interface [type number] Router(config)# interface Ethernet0/0 ip rsvp bandwidth [interface-kbps] [single-flow-kbps] Router(config-if)# ip rsvp bandwidth end Enters interface configuration mode. The type number argument identifies the interface to be configured. Enables RSVP on an interface. The optional interface-kbps and single-flow-kbps arguments specify the amount of bandwidth that can be allocated by RSVP flows or to a single flow, respectively. Values are from 1 to 10,000,000. Note Repeat this command for each interface that you want to enable. Exits to privileged EXEC mode. Router(config-if)# end Configuring an RSVP Authentication Type Perform this task to configure an RSVP authentication type. SUMMARY STEPS 1. enable 2. configure terminal 3. interface [type number] 4. ip rsvp authentication type {md5 sha-1} 5. end 6

7 RSVP Message Authentication How to Configure RSVP Message Authentication DETAILED STEPS Step 1 Step 2 enable Router> enable configure terminal Enables privileged EXEC mode. Enter your password if prompted. Enters global configuration mode. Step 3 Step 4 Step 5 Router# configure terminal interface [type number] Router(config)# interface Ethernet0/0 ip rsvp authentication type {md5 sha-1} Router(config-if)# ip rsvp authentication type sha-1 end Enters interface configuration mode. The type number argument identifies the interface to be configured. Specifies the algorithm used to generate cryptographic signatures in RSVP messages. The algorithms are md5, the default, and sha-1, which is newer and more secure than md5. Exits to privileged EXEC mode. Router(config-if)# end Configuring an RSVP Authentication Key Perform this task to configure an RSVP authentication key. SUMMARY STEPS 1. enable 2. configure terminal 3. interface [type number] 4. ip rsvp authentication key passphrase 5. end 7

8 How to Configure RSVP Message Authentication RSVP Message Authentication DETAILED STEPS Step 1 Step 2 enable Router> enable configure terminal Enables privileged EXEC mode. Enter your password if prompted. Enters global configuration mode. Step 3 Step 4 Step 5 Router# configure terminal interface [type number] Router(config)# interface Ethernet0/0 ip rsvp authentication key passphrase Router(config-if)# ip rsvp authentication key end Enters interface configuration mode. The type number argument identifies the interface to be configured. Specifies the data string (key) for the authentication algorithm. The key consists of 8 to 40 characters. It can include spaces and multiple words. It can also be encrypted or appear in clear text when displayed. Exits to privileged EXEC mode. Router(config-if)# end Enabling RSVP Key Encryption SUMMARY STEPS Perform this task to enable RSVP key encryption when the key is stored in the router configuration. (This prevents anyone from seeing the clear text key in the configuration file.) 1. enable 2. configure terminal 3. key config-key 1 string 4. end 8

9 RSVP Message Authentication How to Configure RSVP Message Authentication DETAILED STEPS Step 1 Step 2 enable Router> enable configure terminal Enables privileged EXEC mode. Enter your password if prompted. Enters global configuration mode. Step 3 Step 4 Router# configure terminal key config-key 1 string Router(config)# key config-key end Enables key encryption in the configuration file. The string argument can contain up to eight alphanumeric characters. Exits to privileged EXEC mode. Router(config)# end Enabling RSVP Authentication Challenge Perform this task to enable RSVP authentication challenge. SUMMARY STEPS 1. enable 2. configure terminal 3. interface [type number] 4. ip rsvp authentication challenge 5. end DETAILED STEPS Step 1 Step 2 enable Router> enable configure terminal Enables privileged EXEC mode. Enter your password if prompted. Enters global configuration mode. Router# configure terminal 9

10 How to Configure RSVP Message Authentication RSVP Message Authentication Step 3 Step 4 Step 5 interface [type number] Router(config)# interface Ethernet0/0 ip rsvp authentication challenge Router(config-if)# ip rsvp authentication challenge end Enters interface configuration mode. The type number argument identifies the interface to be configured. Makes RSVP perform a challenge-response handshake when RSVP learns about any new challenge-capable neighbors on a network. Exits to privileged EXEC mode. Router(config-if)# end Configuring RSVP Authentication Lifetime Perform this task to configure the lifetimes of security associations between RSVP neighbors. SUMMARY STEPS 1. enable 2. configure terminal 3. interface [type number] 4. ip rsvp authentication lifetime hh:mm:ss 5. end DETAILED STEPS Step 1 Step 2 enable Router> enable configure terminal Enables privileged EXEC mode. Enter your password if prompted. Enters global configuration mode. Step 3 Router# configure terminal interface [type number] Router(config)# interface Ethernet0/0 Enters interface configuration mode. The type number argument identifies the interface to be configured. 10

11 RSVP Message Authentication How to Configure RSVP Message Authentication Step 4 Step 5 ip rsvp authentication lifetime hh:mm:ss Router(config-if)# ip rsvp authentication 00:05:00 end Controls how long RSVP maintains security associations with RSVP neighbors. The default security association for hh:mm:ss is 30 minutes; the range is 1 second to 24 hours. Exits to privileged EXEC mode. Router(config-if)# end Configuring RSVP Authentication Window Size Perform this task to configure RSVP authentication window size. SUMMARY STEPS 1. enable 2. configure terminal 3. interface [type number] 4. ip rsvp authentication window-size [n] 5. end DETAILED STEPS Step 1 Step 2 enable Router> enable configure terminal Enables privileged EXEC mode. Enter your password if prompted. Enters global configuration mode. Step 3 Router# configure terminal interface [type number] Router(config)# interface Ethernet0/0 Enters interface configuration mode. The type number argument identifies the interface to be configured. 11

12 How to Configure RSVP Message Authentication RSVP Message Authentication Step 4 Step 5 ip rsvp authentication window-size [n] Router(config-if)# ip rsvp authentication window-size 2 end Specifies the maximum number of authenticated messages that can be received out of order. The default value is one message; the range is 1 to 64 messages. Exits to privileged EXEC mode. Router(config-if)# end Activating RSVP Authentication Perform this task to activate RSVP authentication. SUMMARY STEPS 1. enable 2. configure terminal 3. interface [type number] 4. ip rsvp authentication 5. end DETAILED STEPS Step 1 Step 2 enable Router> enable configure terminal Enables privileged EXEC mode. Enter your password if prompted. Enters global configuration mode. Step 3 Router# configure terminal interface [type number] Router(config)# interface Ethernet0/0 Enters interface configuration mode. The type number argument identifies the interface to be configured. 12

13 RSVP Message Authentication How to Configure RSVP Message Authentication Step 4 ip rsvp authentication Activates RSVP cryptographic authentication. Step 5 Router(config-if)# ip rsvp authentication end Exits to privileged EXEC mode. Router(config-if)# end Verifying RSVP Message Authentication Perform this task to verify that the RSVP Message Authentication feature is functioning. SUMMARY STEPS 1. enable 2. show ip rsvp interface [interface-type interface-number] [detail] 3. show ip rsvp authentication [detail] [ip-address hostname] 4. show ip rsvp counters [interface interface_unit summary neighbor] DETAILED STEPS Step 1 Step 2 enable Router> enable show ip rsvp interface [interface-type interface-number] [detail] Router# show ip rsvp interface detail Enables privileged EXEC mode. Enter your password if prompted. Displays information about interfaces on which RSVP is enabled, including the current allocation budget and maximum available bandwidth. The optional detail keyword displays the bandwidth, signaling, and authentication parameters. 13

14 How to Configure RSVP Message Authentication RSVP Message Authentication Step 3 Step 4 show ip rsvp authentication [detail] [ip-address hostname] Router# show ip rsvp authentication detail show ip rsvp counters [interface interface_unit summary neighbor] Router# show ip rsvp counters summary Displays the security associations that RSVP has established with other RSVP neighbors. The optional detail keyword displays state information that includes IP addresses, interfaces enabled, and configured cryptographic authentication parameters about security associations that RSVP has established with neighbors. (Optional) Displays the number of RSVP messages that were sent and received on each interface; shows error counter incrementing whenever an RSVP message is received on an interface with RSVP authentication enabled, but authentication checks failed on that message. Note The error counter can also increment when it receives an error not related to authentication. The optional summary keyword shows the cumulative number of RSVP messages sent and received by the platform. Examples This section provides the following example output: Sample Output for the show ip rsvp authentication detail Command, page 14 Sample Output for the show ip rsvp interface detail Command, page 14 Sample Output for the show ip rsvp authentication detail Command In this example, the show ip rsvp authentication detail command displays information, including IP addresses, interfaces enabled, and configured cryptographic authentication parameters about security associations that RSVP has established with neighbors. Router# show ip rsvp authentication detail Neighbor: Key ID (hex): 62d0b Interface: Ethernet0/0 Key type: Static Direction: Send Expiration: 000d 00h 29m 39s Last seq # sent: Neighbor: Key ID (hex): 62d164fc00000 Interface: Ethernet0/0 Key type: Static Direction: Receive Expiration: 000d 00h 29m 39s Last valid seq # rcvd: Challenge: Not configured Sample Output for the show ip rsvp interface detail Command In this example, the show ip rsvp interface detail command displays detailed information, including the cryptographic authentication parameters, for all RSVP-configured interfaces on a router. 14

15 RSVP Message Authentication How to Configure RSVP Message Authentication Note The authentication key in the following example appears encrypted (<encrypted>). That is because the key config-key 1 string command was issued prior to the show ip rsvp interface detail command. Router# show ip rsvp interface detail Et0/0: Bandwidth: Curr allocated: 0 bits/sec Max. allowed (total): 7500K bits/sec Max. allowed (per flow): 7500K bits/sec Max. allowed for LSP tunnels using sub-pools: 0 bits/sec Set aside by policy (total):0 bits/sec Neighbors: Using IP encap: 0. Using UDP encap: 0 Signalling: Refresh reduction: disabled Authentication: enabled Key: <encrypted> Type: sha-1 Window size: 2 Challenge: enabled Troubleshooting Tips To troubleshoot the RSVP Message Authentication feature, use the following commands in privileged EXEC mode: Command Router# debug ip rsvp authentication Router# debug ip rsvp dump signalling Displays output related to RSVP authentication. Displays brief information about signaling (Path and Resv) messages. 15

16 Configuration Examples for RSVP Message Authentication RSVP Message Authentication Configuration Examples for RSVP Message Authentication This section provides the following configuration example: RSVP Message Authentication Example, page 16 RSVP Message Authentication Example In the following output, the cryptographic authentication parameters, including type, key, challenge, lifetime, window size, are configured; and authentication is activated: Router# configure terminal Enter configuration commands, one per line. End with CNTL/Z. Router(config)# interface e0/0 Router(config-if)# ip rsvp bandwidth Router(config-if)# ip rsvp authentication type sha-1 Router(config-if)# ip rsvp authentication key Router(config-if)# ip rsvp authentication challenge Router(config-if)# ip rsvp authentication lifetime 00:30:05 Router(config-if)# ip rsvp authentication window-size 2 Router(config-if)# ip rsvp authentication In the following output from the show ip rsvp interface detail command, notice the cryptographic authentication parameters that you configured for the Ethernet0/0 interface: Router# show ip rsvp interface detail Et0/0: Bandwidth: Curr allocated: 0 bits/sec Max. allowed (total): 7500K bits/sec Max. allowed (per flow): 7500K bits/sec Max. allowed for LSP tunnels using sub-pools: 0 bits/sec Set aside by policy (total): 0 bits/sec Neighbors: Using IP encap: 0. Using UDP encap: 0 Signalling: Refresh reduction: disabled Authentication: enabled Key: Type: sha-1 Window size: 2 Challenge: enabled In the preceding example, the authentication key appears in clear text. If you enter the key-config-key 1 string command, the key appears encrypted, as in the following example: Router# show ip rsvp interface detail 16

17 RSVP Message Authentication Configuration Examples for RSVP Message Authentication Et0/0: Bandwidth: Curr allocated: 0 bits/sec Max. allowed (total): 7500K bits/sec Max. allowed (per flow): 7500K bits/sec Max. allowed for LSP tunnels using sub-pools: 0 bits/sec Set aside by policy (total): 0 bits/sec Neighbors: Using IP encap: 0. Using UDP encap: 0 Signalling: Refresh reduction: disabled Authentication: enabled Key: <encrypted> Type: sha-1 Window size: 2 Challenge: enabled In the following output, notice the authentication key changes from encrypted to clear text after the no key config-key 1 command is issued: Router# show run int e0/0 Building configuration... Current configuration :247 bytes! interface Ethernet0/0 ip address no ip directed-broadcast ip pim dense-mode no ip mroute-cache no cdp enable ip rsvp bandwidth ip rsvp authentication key 7>70>9:7<872>?74 ip rsvp authentication end Router# configure terminal Enter configuration commands, one per line. End with CNTL/Z. Router(config)# no key config-key 1 Router(config)# end Router# show run *Jan 30 08:02:09.559:%SYS-5-CONFIG_I:Configured from console by console int e0/0 Building configuration... Current configuration :239 bytes! interface Ethernet0/0 ip address no ip directed-broadcast ip pim dense-mode no ip mroute-cache no cdp enable ip rsvp bandwidth ip rsvp authentication key ip rsvp authentication end 17

18 Additional References RSVP Message Authentication Additional References For additional information related to the RSVP Message Authentication feature, refer to the following references: Related Documents, page 19 Standards, page 19 MIBs, page 19 RFCs, page 19 Technical Assistance, page 20 18

19 RSVP Message Authentication Additional References Related Documents Related Topic RSVP commands: complete command syntax, command mode, defaults, usage guidelines, and examples QoS features including signaling, classification, and congestion management Error messages Document Title Cisco IOS Release 12.0 Quality of Service Solutions Command Reference Cisco IOS Release 12.0 Quality of Service Solutions Configuration Guide Cisco IOS Software System Error Messages Standards Standards No new or modified standards are supported by this feature, and support for existing standards has not been modified by this feature. Title MIBs MIBs No new or modified MIBs are supported by this feature, and support for existing standards has not been modified by this feature. MIBs Link To locate and download MIBs for selected platforms, Cisco IOS releases, and feature sets, use Cisco MIB Locator found at the following URL: RFCs RFCs 1 RFC 1321 RFC 2104 RFC 2205 RFC 2209 RFC 2401 RFC 2747 RFC Not all supported RFCs are listed. Title The MD5 Message Digest Algorithm HMAC: Keyed-Hashing for Messaging Authentication Resource Reservation Protocol RSVP Version 1 Message Processing Rules Security Architecture for the Internet Protocol RSVP Cryptographic Authentication US Secure Hash Algorithm 1 (SHA1) 19

20 Additional References RSVP Message Authentication Technical Assistance Description Technical Assistance Center (TAC) home page, containing 30,000 pages of searchable technical content, including links to products, technologies, solutions, technical tips, and tools. Registered Cisco.com users can log in from this page to access even more content. Link 20

21 RSVP Message Authentication Command Reference Command Reference There are no new or modified commands for this feature in this release. All the commands used with this feature are documented in the Cisco IOS Release 12.0 command reference publications. 21

22 Glossary RSVP Message Authentication Glossary admission control The process in which an RSVP reservation is accepted or rejected based on end-to-end available network resources. bandwidth The difference between the highest and lowest frequencies available for network signals. The term also is used to describe the rated throughput capacity of a given network medium or protocol. DMZ demilitarized zone. The neutral zone between public and corporate networks. flow A stream of data traveling between two endpoints across a network (for example, from one LAN station to another). Multiple flows can be transmitted on a single circuit. key A data string that is combined with source data according to an algorithm to produce output that is unreadable until decrypted. QoS quality of service. A measure of performance for a transmission system that reflects its transmission quality and service availability. router A network layer device that uses one or more metrics to determine the optimal path along which network traffic should be forwarded. Routers forward packets from one network to another based on network layer information. RSVP Resource Reservation Protocol. A protocol that supports the reservation of resources across an IP network. Applications running on IP end systems can use RSVP to indicate to other nodes the nature (bandwidth, jitter, maximum burst, and so on) of the packet streams they want to receive. security association A block of memory used to hold all the information RSVP needs to authenticate RSVP signaling messages from a specific RSVP neighbor. spoofing The act of a packet illegally claiming to be from an address from which it was not actually sent. Spoofing is designed to foil network security mechanisms, such as filters and access lists. trusted neighbor A router with authorized access to information. VoIP Voice over IP. The ability to carry normal telephony-style voice over an IP-based Internet maintaining telephone-like functionality, reliability, and voice quality. Note Refer to Internetworking Terms and Acronyms for terms not included in this glossary. CCVP, the Cisco logo, and Welcome to the Human Network are trademarks of Cisco Systems, Inc.; Changing the Way We Work, Live, Play, and Learn is a service mark of Cisco Systems, Inc.; and Access Registrar, Aironet, Catalyst, CCDA, CCDP, CCIE, CCIP, CCNA, CCNP, CCSP, Cisco, the Cisco Certified Internetwork Expert logo, Cisco IOS, Cisco Press, Cisco Systems, Cisco Systems Capital, the Cisco Systems logo, Cisco Unity, Enterprise/Solver, EtherChannel, EtherFast, EtherSwitch, Fast Step, Follow Me Browsing, FormShare, GigaDrive, HomeLink, Internet Quotient, IOS, iphone, IP/TV, iq Expertise, the iq logo, iq Net Readiness Scorecard, iquick Study, LightStream, Linksys, MeetingPlace, MGX, Networkers, Networking Academy, Network Registrar, PIX, ProConnect, ScriptShare, SMARTnet, StackWise, The Fastest Way to Increase Your Internet Quotient, and TransPath are registered trademarks of Cisco Systems, Inc. and/or its affiliates in the United States and certain other countries. All other trademarks mentioned in this document or Website are the property of their respective owners. The use of the word partner does not imply a partnership relationship between Cisco and any other company. (0711R) Copyright 2003 Cisco Systems, Inc. All rights reserved. 22

RSVP Message Authentication

RSVP Message Authentication RSVP Message Authentication Last Updated: January 12, 2012 The Resource Reservation Protocol (RSVP) Message Authentication feature provides a secure method to control quality of service (QoS) access to

More information

RSVP Message Authentication

RSVP Message Authentication RSVP Message Authentication Last Updated: December 10, 2012 The Resource Reservation Protocol (RSVP) Message Authentication feature provides a secure method to control quality of service (QoS) access to

More information

OSPF Incremental SPF

OSPF Incremental SPF OSPF Incremental SPF The Open Shortest Path First (OSPF) protocol can be configured to use an incremental SPF algorithm for calculating the shortest path first routes. Incremental SPF is more efficient

More information

BGP Enforce the First Autonomous System Path

BGP Enforce the First Autonomous System Path BGP Enforce the First Autonomous System Path The BGP Enforce the First Autonomous System Path feature is used to configure a Border Gateway Protocol (BGP) routing process to discard updates received from

More information

IS-IS Incremental SPF

IS-IS Incremental SPF IS-IS Incremental SPF Integrated Intermediate System-to-Intermediate System (IS-IS) can be configured to use an incremental SPF algorithm for calculating the shortest path first routes. Incremental SPF

More information

RSVP Message Authentication

RSVP Message Authentication RSVP Message Authentication First Published: March 17, 2003 Last Updated: August 6, 2007 The Resource Reservation Protocol (RSVP) Message Authentication feature provides a secure method to control quality

More information

PPPoE Session Recovery After Reload

PPPoE Session Recovery After Reload If the PPP keepalive mechanism is disabled on a customer premises equipment (CPE) device, a PPP over Ethernet (PPPoE) session will hang indefinitely after an aggregation device reload. The PPPoE Session

More information

DHCP Lease Limit per ATM/RBE Unnumbered Interface

DHCP Lease Limit per ATM/RBE Unnumbered Interface DHCP Lease Limit per ATM/RBE Unnumbered Interface The DHCP Lease Limit per ATM/RBE Unnumbered Interface feature limits the number of Dynamic Host Configuration Protocol (DHCP) leases per subinterface offered

More information

Suppress BGP Advertisement for Inactive Routes

Suppress BGP Advertisement for Inactive Routes Suppress BGP Advertisement for Inactive Routes The Suppress BGP Advertisements for Inactive Routes features allows you to configure the suppression of advertisements for routes that are not installed in

More information

Generic Routing Encapsulation Tunnel IP Source and Destination VRF Membership

Generic Routing Encapsulation Tunnel IP Source and Destination VRF Membership Generic Routing Encapsulation Tunnel IP Source and Destination VRF Membership Last Updated: April, 2007 The feature allows you to configure the source and destination of a tunnel to belong to any virtual

More information

SSG Service Profile Caching

SSG Service Profile Caching SSG Service Profile Caching The SSG Service Profile Caching feature enhances the authentication process for Service Selection Gateway services by allowing users to authenticate a service using the service

More information

RADIUS NAS-IP-Address Attribute Configurability

RADIUS NAS-IP-Address Attribute Configurability RADIUS NAS-IP-Address Attribute The RADIUS NAS-IP-Address Attribute feature allows you to configure an arbitrary IP address to be used as RADIUS attribute 4, NAS-IP-Address, without changing the source

More information

IMA Dynamic Bandwidth

IMA Dynamic Bandwidth IMA Dynamic Bandwidth The IMA Dynamic Bandwidth feature introduces the ability to configure Cisco IOS software to automatically manage changes in the total bandwidth of an Asynchronous Transfer Mode (ATM)

More information

Configuring Multiple Basic Service Set Identifiers and Microsoft WPS IE SSIDL

Configuring Multiple Basic Service Set Identifiers and Microsoft WPS IE SSIDL Configuring Multiple Basic Service Set Identifiers and Microsoft WPS IE SSIDL This module describes how to configure multiple basic service set identifiers (BSSID) on a Cisco 800, 1800, 2800, or 3800 series

More information

Configuring an Intermediate IP Multicast Helper Between Broadcast-Only Networks

Configuring an Intermediate IP Multicast Helper Between Broadcast-Only Networks Configuring an Intermediate IP Multicast Helper Between Broadcast-Only Networks First Published: February 11, 2008 Last Updated: February 11, 2008 When a multicast-capable internetwork is between two subnets

More information

DHCP Option 82 Support for Routed Bridge Encapsulation

DHCP Option 82 Support for Routed Bridge Encapsulation DHCP Option 82 Support for Routed Bridge Encapsulation Feature History for the Feature Release Modification 12.2(2)T This feature was introduced. 12.2(27)SBA This feature was integrated into Cisco IOS

More information

Protocol-Independent MAC ACL Filtering on the Cisco Series Internet Router

Protocol-Independent MAC ACL Filtering on the Cisco Series Internet Router Protocol-Independent MAC ACL Filtering on the Cisco 12000 Series Internet Router Part Number OL-142368-01 (Rev A0), January 19, 2006 The Protocol-Independent MAC ACL Filtering feature allows you to create

More information

QoS Child Service Policy for Priority Class

QoS Child Service Policy for Priority Class First Published: November, 2006 The feature allows you to configure a child service policy with nonqueuing-based features and attach the child policy to a class. History of Release 12.2(31)SB2 Modification

More information

VPDN Group Session Limiting

VPDN Group Session Limiting VPDN Group Session Limiting Feature History Release 12.2(1)DX 12.2(2)DD 12.2(4)B 12.2(27)SB Modification This feature was introduced. This feature was integrated into Cisco IOS Release 12.2(2)DD. This

More information

OSPF RFC 3623 Graceful Restart Helper Mode

OSPF RFC 3623 Graceful Restart Helper Mode First Published: February 27, 2006 Last Updated: February 27, 2006 This document focuses on non-stop forwarding (NSF) helper mode for OSPFv2 in Cisco IOS software, using IETF standardized graceful restart

More information

Packet Classification Using the Frame Relay DLCI Number

Packet Classification Using the Frame Relay DLCI Number Packet Classification Using the Frame Relay DLCI Number The Packet Classification Using the Frame Relay DLCI Number feature allows customers to match and classify traffic on the basis of one or more Frame

More information

Logging to Local Nonvolatile Storage (ATA Disk)

Logging to Local Nonvolatile Storage (ATA Disk) Logging to Local Nonvolatile Storage (ATA Disk) First Published: August 26, 2003 Last Updated: June 28, 2007 The Logging to Local Nonvolatile Storage (ATA Disk) feature enables system logging messages

More information

PPPoE Client DDR Idle Timer

PPPoE Client DDR Idle Timer The feature supports the dial-on-demand routing (DDR) interesting traffic control list functionality of the dialer interface with a PPP over Ethernet (PPPoE) client, but also keeps original functionality

More information

Configuring the Cisco IOS DHCP Relay Agent

Configuring the Cisco IOS DHCP Relay Agent Configuring the Cisco IOS DHCP Relay Agent Cisco routers running Cisco IOS software include Dynamic Host Configuration Protocol (DHCP) server and relay agent software. A DHCP relay agent is any host that

More information

MPLS MTU Command Changes

MPLS MTU Command Changes MPLS MTU Command Changes First Published: August 11, 2004 Last Updated: June 19, 2007 This document explains the the behavior of the mpls mtu command in Cisco IOS Release 12.2(27)SBC, 12.2(33)SRA, 12.4(11)T,

More information

PPP/MLP MRRU Negotiation Configuration

PPP/MLP MRRU Negotiation Configuration PPP/MLP MRRU Negotiation Configuration The PPP/MLP MRRU Negotiation Configuration feature allows a router to send and receive frames over Multilink PPP (MLP) bundles that are larger than the default Maximum

More information

Configuring Route Maps to Control the Distribution of MPLS Labels Between Routers in an MPLS VPN

Configuring Route Maps to Control the Distribution of MPLS Labels Between Routers in an MPLS VPN Configuring Route Maps to Control the Distribution of MPLS Labels Between Routers in an MPLS VPN Route maps enable you to specify which routes are distributed with Multiprotocol Label Switching (MPLS)

More information

IP SLAs Random Scheduler

IP SLAs Random Scheduler First Published: February 27, 2007 Last Updated: February 27, 2007 The feature is an enhancement to the existing IP SLAs Multiple Operation Scheduling feature. The IP SLAs Multiple Operation Scheduling

More information

Frame Relay Conditional Debug Support

Frame Relay Conditional Debug Support Frame Relay Conditional Debug Support First Published: May 06, 2004 Last Updated: June 19, 2006 The Frame Relay Conditional Debug Support feature introduces a filter to limit the number of Frame Relay

More information

DHCP ODAP Server Support

DHCP ODAP Server Support DHCP ODAP Server Support The DHCP ODAP Server Support feature introduces the capability to configure a Cisco IOS Dynamic Host Configuration Protocol (DHCP) server (or router) as a subnet allocation server.

More information

DHCP Relay MPLS VPN Support

DHCP Relay MPLS VPN Support DHCP Relay MPLS VPN Support Feature History Release 12.2(4)B 12.2(8)T 12.2(13)T 12.2(27)SBA Modification This feature was introduced. This feature was integrated into Cisco IOS Release 12.2(8)T The feature

More information

Cisco Voice Applications OID MIB

Cisco Voice Applications OID MIB Cisco Voice Applications OID MIB The Cisco Voice Applications OID MIB (ciscovoiceapplicationsoidmib) defines the object identifiers (OIDs) that are assigned to various Cisco voice applications, such as

More information

Using Application Level Gateways with NAT

Using Application Level Gateways with NAT Using Application Level Gateways with NAT Network Address Translation (NAT) performs translation service on any Transmission Control Protocol/User Datagram Protocol (TCP/UDP) traffic that does not carry

More information

Route Processor Redundancy Plus (RPR+)

Route Processor Redundancy Plus (RPR+) Route Processor Redundancy (RPR) provides an alternative to the High System Availability (HSA) feature. HSA enables a system to reset and use a standby Route Switch Processor (RSP) if the active RSP fails.

More information

RADIUS Tunnel Preference for Load Balancing and Fail-Over

RADIUS Tunnel Preference for Load Balancing and Fail-Over RADIUS Tunnel Preference for Load Balancing and Fail-Over Feature History for RADIUS Tunnel Preference for Load Balancing and Fail-Over Release Modification 12.2(4)T This feature was introduced. 12.2(11)T

More information

Modified LNS Dead-Cache Handling

Modified LNS Dead-Cache Handling First Published: Sept. 30, 2007 Last Updated: Aug. 28, 2008 The feature allows you to display and clear (restart) any Layer 2 Tunnel Protocol (L2TP) Network Server (LNS) entry in a dead-cache (DOWN) state.

More information

PPPoE Session Limits per NAS Port

PPPoE Session Limits per NAS Port PPPoE Session Limits per NAS Port The PPPoE Session Limit per NAS Port feature enables you to limit the number of PPP over Ethernet (PPPoE) sessions on a specific permanent virtual circuit (PVC) or VLAN

More information

ISSU and SSO DHCP High Availability Features

ISSU and SSO DHCP High Availability Features ISSU and SSO DHCP High Availability Features First Published: December 4, 2006 Last Updated: February 19, 2007 Cisco IOS Release 12.2(31)SB2 introduces the following series of Dynamic Host Configuration

More information

BECN and FECN Marking for Frame Relay over MPLS

BECN and FECN Marking for Frame Relay over MPLS BECN and FECN Marking for Frame Relay over MPLS First Published: August 26, 2003 Last Updated: February, 2006 This feature explains how to configure backward explicit congestion notification (BECN) and

More information

Per IP Subscriber DHCP Triggered RADIUS Accounting

Per IP Subscriber DHCP Triggered RADIUS Accounting Per IP Subscriber DHCP Triggered RADIUS First Published: February 19, 2007 Last Updated: February 19, 2007 The Per IP Subscriber DHCP Triggered RADIUS feature enables system administrators to track IP

More information

Cisco Unity Express Voic System User s Guide

Cisco Unity Express Voic System User s Guide Cisco Unity Express Voice-Mail System User s Guide Release 2.1 This guide provides information about some advanced voice-mail features of your Cisco Unity Express voice-mail system. Use this guide together

More information

Autosense of MUX/SNAP Encapsulation and PPPoA/PPPoE on ATM PVCs

Autosense of MUX/SNAP Encapsulation and PPPoA/PPPoE on ATM PVCs Autosense of MUX/SNAP Encapsulation and PPPoA/PPPoE on ATM PVCs Feature History for Autosense of MUX/SNAP Encapsulation and PPPoA/PPPoE on ATM PVCs Release Modification 12.2(15)B This feature was introduced.

More information

Low Latency Queueing with Priority Percentage Support

Low Latency Queueing with Priority Percentage Support Low Latency Queueing with Priority Percentage Support First Published: 12.2(2)T Last Updated: February 28, 2006 This feature allows you to configure bandwidth as a percentage within low latency queueing

More information

Cisco Smart Business Communications System Teleworker Set Up

Cisco Smart Business Communications System Teleworker Set Up Cisco Smart Business Communications System Teleworker Set Up The Cisco Smart Business Communications System is a unified communications solution for small businesses that provides voice, data, video, security,

More information

Troubleshooting ISA with Session Monitoring and Distributed Conditional Debugging

Troubleshooting ISA with Session Monitoring and Distributed Conditional Debugging Troubleshooting ISA with Session Monitoring and Distributed Conditional Debugging The Intelligent Service Architecture (ISA) is a core set of Cisco IOS components that provide a structured framework in

More information

Contextual Configuration Diff Utility

Contextual Configuration Diff Utility Contextual Configuration Diff Utility First Published: November 2003 Last Updated: May 2, 2008 The Contextual Configuration Diff Utility feature provides the ability to perform a line-by-line comparison

More information

VPDN LNS Address Checking

VPDN LNS Address Checking First Published: Sept. 30, 2007 Last Updated: Aug. 28, 2008 The feature allows a Layer 2 Tunnel Protocol (L2TP) Access Concentrator (LAC), that is receiving data from an L2TP Network Server (LNS) to check

More information

Application Firewall Instant Message Traffic Enforcement

Application Firewall Instant Message Traffic Enforcement Application Firewall Instant Message Traffic Enforcement The Application Firewall Instant Message Traffic Enforcement feature enables users to define and enforce a policy that specifies which instant messenger

More information

Configuring Virtual Interfaces

Configuring Virtual Interfaces Configuring Virtual Interfaces Virtual interfaces are software-based interfaces that you create in the memory of the networking device using Cisco IOS commands. Virtual interfaces do not have a hardware

More information

MPLS Traffic Engineering Fast Reroute Link Protection

MPLS Traffic Engineering Fast Reroute Link Protection MPLS Traffic Engineering Fast Reroute Link Protection This feature module describes the Fast Reroute (FRR) link protection feature of Multiprotocol Label Switching (MPLS) traffic engineering (TE). Regular

More information

IP Event Dampening. Feature History for the IP Event Dampening feature

IP Event Dampening. Feature History for the IP Event Dampening feature IP Event Dampening The IP Event Dampening feature introduces a configurable exponential decay mechanism to suppress the effects of excessive interface flapping events on routing protocols and routing tables

More information

Extended NAS-Port-Type and NAS-Port Support

Extended NAS-Port-Type and NAS-Port Support Extended NAS-Port-Type and NAS-Port Support First Published: March 20, 2006 Last Updated: March 20, 2006 RADIUS attributes are used to define specific authentication, authorization, and accounting (AAA)

More information

Installing IEC Rack Mounting Brackets on the ONS SDH Shelf Assembly

Installing IEC Rack Mounting Brackets on the ONS SDH Shelf Assembly Installing IEC Rack Mounting Brackets on the ONS 15454 SDH Shelf Assembly Product Name: 15454E-19IEC-KIT= This document provides installation procedures for installing mounting brackets on the ONS 15454

More information

MPLS VPN: VRF Selection Based on Source IP Address

MPLS VPN: VRF Selection Based on Source IP Address MPLS VPN: VRF Selection Based on Source IP Address The VPN Routing and Forwarding (VRF) Selection feature allows a specified interface on a provider edge (PE) router to route packets to different Virtual

More information

PPPoE Service Selection

PPPoE Service Selection PPPoE Service Selection The PPPoE Service Selection feature uses service tags to enable a PPP over Ethernet (PPPoE) server to offer PPPoE clients a selection of services during call setup. The customer

More information

This feature was introduced. This feature was integrated into Cisco IOS Release 12.2(27)SBA.

This feature was introduced. This feature was integrated into Cisco IOS Release 12.2(27)SBA. PPPoE Relay The PPPoE Relay feature enables an L2TP access concentrator (LAC) to relay active discovery and service selection functionality for PPP over Ethernet (PPPoE), over a Layer 2 Tunneling Protocol

More information

Configuring MPLS Multi-VRF (VRF-lite)

Configuring MPLS Multi-VRF (VRF-lite) Configuring MPLS Multi-VRF (VRF-lite) MPLS Multi-VRF provides the ability to configure and maintain more than one instance of a routing and forwarding table within the same CE router. History of the MPLS

More information

RSVP Support for RTP Header Compression, Phase 1

RSVP Support for RTP Header Compression, Phase 1 RSVP Support for RTP Header Compression, Phase 1 The Resource Reservation Protocol (RSVP) Support for Real-Time Transport Protocol (RTP) Header Compression, Phase 1 feature provides a method for decreasing

More information

Wireless LAN Error Messages

Wireless LAN Error Messages Wireless LAN s This module lists wireless LAN (WLAN) error messages for the Cisco 800, 1800, 2800, and 3800 series integrated services routers, hereafter referred to as an access point or AP. Module History

More information

Wireless LAN Overview

Wireless LAN Overview A wireless LAN (WLAN) is, in some sense, nothing but a radio with different frequencies and characteristics acting as a medium for networks. The Cisco 800, 1800, 2800, and 3800 series integrated services

More information

MPLS Traffic Engineering (TE) Scalability Enhancements

MPLS Traffic Engineering (TE) Scalability Enhancements MPLS Traffic Engineering (TE) Scalability Enhancements First Published: February 23, 2002 Last Updated: February 28, 2006 The Multiprotocol Label Switching (MPLS) Traffic Engineering (TE) Scalability Enhancement

More information

Configuring ISA Accounting

Configuring ISA Accounting Configuring ISA Accounting The Intelligent Service Architecture (ISA) is a core set of Cisco IOS components that provide a structured framework in which edge access devices can deliver flexible and scalable

More information

QoS: Color-Aware Policer

QoS: Color-Aware Policer QoS: Color-Aware Policer The QoS: Color-Aware Policer enables a color-aware method of traffic policing. This feature allows you to police traffic according to the color classification of a packet. The

More information

Chunk Validation During Scheduler Heapcheck

Chunk Validation During Scheduler Heapcheck Chunk Validation During Scheduler Heapcheck First Published: May 16, 2006 Last Updated: May 16, 2006 The Chunk Validation During Scheduler Heapcheck feature enables you to check the memory chunk structures

More information

Exclusive Configuration Change Access and Access Session Locking

Exclusive Configuration Change Access and Access Session Locking Exclusive Configuration Change Access and Access Session Locking First Published: February 28, 2005 Last Updated: May 4, 2009 Exclusive Configuration Change Access (also called the Configuration Lock feature)

More information

RADIUS Logical Line ID

RADIUS Logical Line ID RADIUS Logical Line ID Feature History for RADIUS Logical Line ID Release Modification 12.2(13)T This feature was introduced. 12.2(15)B This feature was integrated into Cisco IOS Release 12.2(15)B. 12.2(27)SBA

More information

Configuring Token Ring LAN Emulation for Multiprotocol over ATM

Configuring Token Ring LAN Emulation for Multiprotocol over ATM Configuring Token Ring LAN Emulation for Multiprotocol over ATM This chapter describes the required and optional tasks for configuring the MPOA for Token Ring Networks feature. For a complete description

More information

ATM VP Average Traffic Rate

ATM VP Average Traffic Rate First Published: April, 2008 This document describes the feature. Finding Feature Information in This Module Your Cisco IOS software release may not support all of the features documented in this module.

More information

PPPoE Agent Remote-ID and DSL Line Characteristics Enhancement

PPPoE Agent Remote-ID and DSL Line Characteristics Enhancement PPPoE Agent Remote-ID and DSL Line Characteristics Enhancement First Published: December 5, 2006 Revised: August 29, 2008 The PPPoE Agent Remote-ID and DSL Line Characteristics Enhancement feature provides

More information

LAN Emulation Overview

LAN Emulation Overview LAN Emulation Overview This overview chapter gives a high-level description of LAN Emulation (LANE). Procedures for configuring LANE are provided in the following chapters in this publication: Configuring

More information

Cisco Software Licensing Information for Cisco Unified Communications 500 Series for Small Business

Cisco Software Licensing Information for Cisco Unified Communications 500 Series for Small Business Cisco Software Licensing Information for Cisco Unified Communications 500 Series for Small Business Feb. 06, 2008, This document describes the Cisco Software Licensing (CSL) information for the Cisco Unified

More information

Applying the Tunnel Template on the Home Agent

Applying the Tunnel Template on the Home Agent Tunnel templates allow a mobile router to carry multicast sessions to mobile networks as it roams. The for Multicast feature allows the configuration of multicast sessions on statically created tunnels

More information

IP SLAs Proactive Threshold Monitoring

IP SLAs Proactive Threshold Monitoring IP SLAs Proactive Threshold Monitoring First Published: May 2, 2005 Last Updated: July 18, 2008 This document describes the proactive monitoring capabilities of Cisco IOS IP Service Level Agreements (SLAs)

More information

MPLS VPN OSPF and Sham-Link Support

MPLS VPN OSPF and Sham-Link Support MPLS VPN OSPF and Sham-Link Support Feature History Release 12.2(8)T 12.0(21)ST 12.0(22)S 12.2(14)S Modification This feature was introduced. This feature was integrated into Cisco IOS Release 12.0(21)ST,

More information

Cisco 806, Cisco 820 Series, Cisco 830 Series, SOHO 70 Series and SOHO 90 Series Routers ROM Monitor Download Procedures

Cisco 806, Cisco 820 Series, Cisco 830 Series, SOHO 70 Series and SOHO 90 Series Routers ROM Monitor Download Procedures Cisco 806, Cisco 820 Series, Cisco 830 Series, SOHO 70 Series and SOHO 90 Series Routers ROM Monitor Download Procedures November 18, 2004 This document contains procedures for downloading ROM Monitor

More information

Corporate Headquarters: Cisco Systems, Inc., 170 West Tasman Drive, San Jose, CA USA

Corporate Headquarters: Cisco Systems, Inc., 170 West Tasman Drive, San Jose, CA USA Configuring VRRP First Published: May 2, 2005 Last Updated: May 8, 2006 The Virtual Router Redundancy Protocol (VRRP) is an election protocol that dynamically assigns responsibility for one or more virtual

More information

This module was first published on May 2, 2005, and last updated on May 2, 2005.

This module was first published on May 2, 2005, and last updated on May 2, 2005. Configuring VRRP The Virtual Router Redundancy Protocol (VRRP) is an election protocol that dynamically assigns responsibility for one or more virtual routers to the VRRP routers on a LAN, allowing several

More information

Cisco Aironet Directional Antenna (AIR-ANT-SE-WiFi-D)

Cisco Aironet Directional Antenna (AIR-ANT-SE-WiFi-D) Cisco Aironet Directional Antenna (AIR-ANT-SE-WiFi-D) This document describes the Cisco Directional Antenna (AIR-ANT-SE-WiFi-D) and provides instructions for mounting it. The antenna operates in the 2.4-GHz

More information

Installing the Cisco ONS Deep Door Kit

Installing the Cisco ONS Deep Door Kit Product Number: 15454-DOOR-KIT This document describes how to install the deep door kit for the Cisco ONS 15454. A door is pre-installed on the ONS 15454 but the 15454-DOOR-KIT provides a deeper door and

More information

Cisco Unified Mobile Communicator 3.0 User Portal Guide

Cisco Unified Mobile Communicator 3.0 User Portal Guide Cisco Unified Mobile Communicator 3.0 User Portal Guide Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387)

More information

Cisco Report Server Readme

Cisco Report Server Readme Cisco Report Server Readme For Cisco Network Planning Solution 2.1, Cisco Network Planning Solution Service Provider 2.1, and Cisco Application Analysis Solution 2.1 Release 2.1 Americas Headquarters Cisco

More information

White Paper: Using Microsoft Windows Server 2003 with Cisco Unity 4.0(4)

White Paper: Using Microsoft Windows Server 2003 with Cisco Unity 4.0(4) White Paper: Using Microsoft Windows Server 2003 with Cisco Unity 4.0(4) Revised July 30, 2004 This white paper explains the differences between installing Cisco Unity version 4.0(4) on a server running

More information

Connecting Cisco DSU/CSU High-Speed WAN Interface Cards

Connecting Cisco DSU/CSU High-Speed WAN Interface Cards Connecting Cisco DSU/CSU High-Speed WAN Interface Cards Revised: April 15, 2008, Overview This document describes Cisco serial and DSU/CSU high-speed WAN interface cards (HWICs) and how to connect them

More information

Release Notes for Cisco Aironet Client Utility and Driver, Version 3.0 for Mac OS

Release Notes for Cisco Aironet Client Utility and Driver, Version 3.0 for Mac OS Release s for Cisco Aironet Client Utility and Driver, Version 3.0 for Mac OS Contents This document contains the following sections: Introduction, page 2 System Requirements, page 2 New Software Features

More information

RSVP Interface-Based Receiver Proxy

RSVP Interface-Based Receiver Proxy RSVP Interface-Based Receiver Proxy Last Updated: January 15, 2013 The RSVP Interface-Based Receiver Proxy feature lets you configure a proxy device by outbound interface instead of configuring a destination

More information

Maintenance Checklists for Cisco Unity VPIM Networking (with Microsoft Exchange)

Maintenance Checklists for Cisco Unity VPIM Networking (with Microsoft Exchange) Maintenance Checklists for Cisco Unity VPIM Networking (with Microsoft Exchange) Published December 10, 2007 This document contains checklists for tasks required to ensure that Cisco Unity VPIM Networking

More information

Cisco Unified MeetingPlace for Microsoft Office Communicator

Cisco Unified MeetingPlace for Microsoft Office Communicator QUICK START GUIDE Cisco Unified MeetingPlace for Microsoft Office Communicator Release 6.x Published May 31, 2007 1 Configuring Your Office Communicator Client for Cisco Unified MeetingPlace Conferencing

More information

QoS: Classification of Locally Sourced Packets

QoS: Classification of Locally Sourced Packets QoS: Classification of Locally Sourced Packets QoS: Classification of Locally Sourced Packets is an algorithm to govern queue assignments of egressing packets that originate from the Cisco 12000 Series

More information

Connecting Cisco WLAN Controller Enhanced Network Modules to the Network

Connecting Cisco WLAN Controller Enhanced Network Modules to the Network Connecting Cisco WLAN Controller Enhanced Network Modules to the Network Revised: May 1, 2008, OL-16632-01 This guide describes how to connect Cisco wireless LAN (WLAN) controller enhanced network modules

More information

Release Notes for Cisco Security Agent for Cisco Unified MeetingPlace Release 6.0(7)

Release Notes for Cisco Security Agent for Cisco Unified MeetingPlace Release 6.0(7) Release Notes for Cisco Security Agent for Cisco Unified MeetingPlace Release 6.0(7) Published April 3, 2008 These release notes provide download, installation, and upgrade instructions, and information

More information

This feature was introduced. This feature was integrated into Cisco IOS Release 12.2(27)SBA.

This feature was introduced. This feature was integrated into Cisco IOS Release 12.2(27)SBA. The feature allows an L2TP network server (LNS) participating in Stack Group Bidding Protocol (SGBP) to send a redirect message to the L2TP access concentrator (LAC) if another LNS wins the bid. The LAC

More information

Site Preparation and Network Communications Requirements

Site Preparation and Network Communications Requirements Site Preparation and Network Communications Requirements This document explains the requirements for site preparation and network communications. Use this document when you are preparing to install the

More information

Cisco Aironet 1500 Series Access Point Large Pole Mounting Kit Instructions

Cisco Aironet 1500 Series Access Point Large Pole Mounting Kit Instructions Cisco Aironet 500 Series Access Point Large Pole Mounting Kit Instructions This document provides instructions for mounting the Cisco Aironet 500 series on a telephone, power, or street lamp pole using

More information

Configuration Replace and Configuration Rollback

Configuration Replace and Configuration Rollback Configuration Replace and Configuration Rollback First Published: March 3, 2004 Last Updated: May 4, 2009 The Configuration Replace and Configuration Rollback feature provides the capability to replace

More information

Connecting Cisco 4-Port FXS/DID Voice Interface Cards

Connecting Cisco 4-Port FXS/DID Voice Interface Cards Connecting Cisco 4-Port FXS/DID Voice Interface Cards Revised: April 15, 2008, OL-15695-01 Overview This document provides an overview of Cisco interface cards and explains how to install the Cisco 4-port

More information

Cisco Virtual Office End User Instructions for Cisco 1811 Router Set Up at Home or Small Office

Cisco Virtual Office End User Instructions for Cisco 1811 Router Set Up at Home or Small Office Cisco Virtual Office End User Instructions for Cisco 1811 Router Set Up at Home or Small Office Introduction This document describes the end-user instructions to deploy the Cisco Virtual Office (CVO) for

More information

Cisco Registered Envelope Recipient Guide

Cisco Registered Envelope Recipient Guide September 8, 2008 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 Text Part Number:

More information

L2VPN Pseudowire Switching

L2VPN Pseudowire Switching L2VPN Pseudowire Switching First Published: April 20, 2005 Last Updated: February 19, 2007 This feature module explains how to configure L2VPN Pseudowire Switching, which extends layer 2 virtual private

More information

Using Microsoft Outlook to Schedule and Join Cisco Unified MeetingPlace Express Meetings

Using Microsoft Outlook to Schedule and Join Cisco Unified MeetingPlace Express Meetings Using Microsoft Outlook to Schedule and Join Cisco Unified MeetingPlace Express Meetings Cisco Unified MeetingPlace Express Release 2.x contains a plug-in that allows you to schedule, attend, and manage

More information

Maintenance Checklists for Microsoft Exchange on a Cisco Unity System

Maintenance Checklists for Microsoft Exchange on a Cisco Unity System Maintenance Checklists for Microsoft Exchange on a Cisco Unity System Published January 13, 2009 This document contains checklists for tasks required to ensure that the Cisco Unity system and Microsoft

More information