Implementing SBC Multi-VRF

Size: px
Start display at page:

Download "Implementing SBC Multi-VRF"

Transcription

1 10 CHAPTER The Session Border Controller (SBC) provides support for multi-vrf (VPN routing and forwarding) on customer edge (CE) devices. This feature provides the capability of suppressing provider edge (PE) checks to prevent loops when the PE is performing a mutual redistribution of packets. Note VRF is only supported in DBE media address and SBE AAA/H248 control address; DBE H248 control address does not support VRF. Note For ACE SBC Release and later releases, this feature is supported in both the unified model and the distributed model. For a complete description of commands used in this chapter, refer to Chapter 39, Cisco Session Border Controller Commands. To locate documentation for other commands that appear in this chapter, use the command reference master index, or search online. Feature History for Release Modification ACE SBC Release Added support for VRF-Aware DNS Query. ACE SBC Release Added support for SBC unified model. The following sections were added: Configuring Multi-VRF Associating an H.323 Adjacency with a VRF Associating a SIP Adjacency with a VRF ACE SBC Release This feature was introduced on the Cisco 7600 series router. Contents This module contains the following sections: Prerequisites Implementing Multi-VRF, page 10-2 Information About Implementing Multi-VRF, page 10-2 Implementing Multi-VRF, page

2 Prerequisites Implementing Multi-VRF Chapter 10 Configuration Examples for Implementing Multi-VRF, page Prerequisites Implementing Multi-VRF The following prerequisites are required to implement SBC multi-vrf: On the Application Control Engine Module (ACE), you must be an Admin user to enter SBC commands. For more information, see the Application Control Engine Module Administration Guide at: on/administration/guide/admgd.html Before implementing multi-vrf, the SBC must already be created. See the procedures described in Chapter 2, ACE Configuration Prerequisites for the SBC. Information About Implementing Multi-VRF The SBC support for multi-vrf on customer edge (CE) devices (that is, customer premises routers) feature provides the capability of suppressing PE checks that are needed to prevent loops when the PE is performing a mutual redistribution of packets. Multi-VRF allows for the use of only one router to accomplish the tasks that multiple routers usually perform. It runs on a network without the requirement of MPLS and BGP installed. When VRF is used on a router that is not a PE, the checks can be turned off to allow for correct population of the VRF routing table with routes to IP prefixes. Multi-VRF is also important because virtual private network (VPN) functionality is not completely supported on low-end systems. Multi-VRF provides logical separation of routing instances (and by the implication address space) within one router. The following summarizes the features of multi-vrf: Allows a single physical router to be split into multiple virtual routers, where each router contains its own set of interfaces, routing table, and forwarding table. SBC supports multiple (overlapping and independent) routing tables (addressing) per customer. Virtual routing contexts are used to separate routing domains within a single router. Multi-VRF can be used where multiple routers are required but only one is available. One physical interface can belong to multiple virtual routers through the usage of subinterfaces (Frame Relay, ATM, VLANs). BGP and MPLS are not used. No connectivity is provided between VRFs (would require using BGP for internal exporting and importing between VRFs). When a call is placed between two endpoints in the same VPN site, SBC can route the media directly between them, to reduce network utilization. Multi-VRF on SBC provides optimization where both endpoints are on the same VPN, by turning media bypass on. For ACE SBC Release , by default, all adjacencies on the same VPN have media bypass turned on. Media bypass can be turned off by using the media-bypass-forbid command (this command is implemented for CAC policies only). 10-2

3 Chapter 10 Implementing Multi-VRF Note The VRF name under the adjacency must match the context name. VRF-Aware DNS Query This feature allows the SBC to query DNS per VRF. Before ACE SBC Release 3.0.1, all DNS queries were performed within the Admin context; this feature allows DNS queries to be performed on a per-context basis. Implementing Multi-VRF Implementing SBC multi-vrf is described in the following sections: Configuring Multi-VRF, page 10-3 Associating a SIP Adjacency with a VRF, page Configuring DBE with VRF Distributed Model Only, page Configuring Multi-VRF SUMMARY STEPS This task configures the router with the SBC running in multi-vrf mode in unified deployment mode. Note the relationship between the interface and SBC s service virtual interface (SVI), adjacency, and data border element (DBE) media-address as required. 1. configure 2. context vrf 3. allocate-interface 4. exit 5. ft peer 6. heartbeat interval 7. heartbeat count 8. ft-interface vlan 9. exit 10. ft group 11. peer 12. priority 13. peer priority 14. associate-context 15. inservice 16. ft group 10-3

4 Implementing Multi-VRF Chapter peer 18. priority 19. peer priority 20. associate-context 21. inservice 22. exit 23. exit 24. changeto 25. configure 26. interface vlan 27. ip address 28. alias 29. peer ip address 30. no shutdown DETAILED STEPS Step 1 configure Enter ACE module configuration mode. Step 2 Step 3 Step 4 host1/admin# configure host1/admin(config)# context host1/admin(config)# context my_vrf1 allocate-interface vlan host1/admin(config-context)# allocate-interface vlan 100 exit Creates a context. Note The vrf name under the adjacency must match the context name. The example creates a new context my_vrf1. Allocates VLAN 100 to context my_vrf1 to allow the context to receive the traffic classified for VLAN 100. Exit from config-context mode. Step 5 host1/admin(config)# exit ft peer host1/admin(config)# ft peer 1 host1/admin(config-ft-peer)# Configures an FT peer and accesses FT peer configuration mode. 10-4

5 Chapter 10 Implementing Multi-VRF Step 6 Step 7 Step 8 heartbeat interval frequency host1/admin(config-ft-peer)# heartbeat interval 100 heartbeat count number host1/admin(config-ft-peer)# heartbeat count 10 ft-interfac vlan vlan_id Configures the heartbeat interval for verification timing between active and standby FT peers. Configures the heartbeat count for verification timing between active and standby FT peers. Associates an existing FT VLAN with a peer. Step 9 host1/admin(config-ft-peer)# ft-interface vlan 99 exit Exit from config-ft-peer mode. Step 10 host1/admin(config)# exit ft group Configures ft group 1 with the default (Admin) context. Step 11 host1/admin(config)# ft group 1 host1/admin(config-ft-group)# peer Associates a peer ACE with an FT group. Step 12 host1/admin(config-ft-group)# peer 1 priority Configures the priority of the active group member. Step 13 Step 14 host1/admin(config-ft-group)# priority 150 peer priority host1/admin(config-ft-group)# peer priority 50 associate-context Configures the priority of an FT group on the remote standby member. Associates a context with an FT group. Step 15 host1/admin(config-ft-group)# associate-context my_vrf1 inservice Places an FT group in service. host1/admin(config-ft-group)# inservice 10-5

6 Implementing Multi-VRF Chapter 10 Step 16 ft group Configures another ft group with non-admin context. Step 17 host1/admin(config)# ft group 2 host1/admin(config-ft-group)# peer Associates a peer ACE with an FT group. Step 18 host1/admin(config-ft-group)# peer 1 priority Configures the priority of the active group member. Step 19 Step 20 host1/admin(config-ft-group)# priority 150 peer priority host1/admin(config-ft-group)# peer priority 50 associate-context Configures the priority of an FT group on the remote standby member. Associates a context with an FT group. Step 21 host1/admin(config-ft-group)# associate-context my_vrf1 inservice Places an FT group in service. Step 22 host1/admin(config-ft-group)# inservice exit Exit from config-ft-group mode. Step 23 host1/admin(config-ft-group)# exit exit Exit from config mode. Step 24 host1/admin(config)# exit changeto Moves from one context on the ACE to another context. Step 25 host1/admin# changeto my_vrf1 Router/vrf1# configure Enter configuration mode of context my_vrf1. host1/my_vrf1# configure host1/(config)# 10-6

7 Chapter 10 Implementing Multi-VRF Step 26 Step 27 interface vlan host1/vrf1(config)# interface vlan 100 ip address Creates a VLAN interface. The example creates an SVI using VLAN 100.The VLAN was assigned to this context from the Admin context in Step 3. Assigns an IP address to a VLAN interface. Step 28 Step 29 Step 30 host1/vrf1(config-if)# ip address alias host1/vrf1(config-if)# alias peer ip address host1/vrf1(config-if)# peer ip address no shutdown Configures an IP address that floats between active and standby modules for a VLAN interface. Configures the IP address of a standby module for the VLAN interface. Enables an interface for use. host1/my_vrf1(config-if)# no shutdown Configuring a VRF-Aware DNS Query This task configures a DNS query for a VRF. SUMMARY STEPS 1. configure 2. context vrf 3. allocate-interface vlan 4. exit 5. sbc sbc-name 6. sbe 7. sip dns 8. cache-lifetime cache-limit exit 11. adjacency sip adjacency-name 12. vrf vrf_name 10-7

8 Implementing Multi-VRF Chapter exit 14. exit 15. exit 16. exit 17. changeto context_name 18. configure 19. ip domain-lookup 20. ip domain-name 21. ip name-server DETAILED STEPS Step 1 configure Enter ACE module configuration mode. Step 2 Step 3 Step 4 host1/admin# configure context host1/admin(config)# context my_vrf1 allocate-interface vlan host1/admin(config-context)# allocate-interface vlan 100 exit Creates a context. Note The vrf name under the adjacency must match the context name. The example creates a new context my_vrf1. Allocates VLAN 100 to context my_vrf1 to allow the context to receive the traffic classified for VLAN 100. Exits the current mode. Step 5 Step 6 Step 7 host1/admin(config)# exit sbc sbc-name host1/admin(config)# sbc mysbc sbe host1/admin(config-sbc)# sbe sip dns Creates the SBC service on the SBC and enters into SBC configuration mode. Creates the SBE service on an SBC and enters into the SBC-SBE configuration mode. Enters the SIP DNS configuration mode. host1/admin(config-sbc-sbe)# sip dns 10-8

9 Chapter 10 Implementing Multi-VRF Step 8 cache-lifetime host1/admin(config-sbe-dns)# cache-lifetime 444 Step 9 cache-limit Step 10 host1/admin(config-sbe-dns)# cache-limit 14 exit Configures the lifetime of any DNS entries in the DNS cache. Configures the maximum number of entries that are permitted in the DNS cache. Exits the current mode. Step 11 host1/admin(config-sbe-dns)# exit adjacency sip adjacency-name Configures an adjacency for an SBC service. Step 12 host1/admin(config-sbc-sbe)# vrf vpn3 vrf vrf_name Configures a SIP adjacency tied to a specific VPN. Step 13 host1/admin(config-sbc-sbe-adj-sip)# vrf vpn3 exit Exits the current mode. Step 14 host1/admin(config-sbc-sbe-adj-sip)# exit exit Exits the current mode. Step 15 host1/admin(config-sbc-sbe-adj)# exit exit Exits the current mode. Step 16 host1/admin(config-sbe)# exit exit Exits the current mode. Step 17 host1/admin(config)# exit changeto context_name Moves from one context on the ACE to another context. Step 18 host1/admin# changeto vrf120 configure Enters ACE module configuration mode. host1/admin# configure 10-9

10 Implementing Multi-VRF Chapter 10 Step 19 Step 20 ip domain-lookup host1/admin(config)# ip domain-lookup ip domain-name Enables the ACE module to perform a domain lookup (host-to-address translation) with a DNS server. Configures a default domain name. Step 21 host1/admin(config)# ip domain-name cisco.com ip name-server host1/admin(config)# ip name-server Configures a DNS name server on the ACE module. You can configure a maximum of three DNS name servers. Associating an H.323 Adjacency with a VRF This task associates an H.323 adjacency with a VPN. SUMMARY STEPS 1. adjacency h323 adjacency-name 2. vrf vrf_name 3. signaling-address ipv4 local_signaling_ip_address 4. signaling-port port_num 5. remote-address ipv4 remote_ip_address/prefix 6. signaling-peer [gk] peer_address 7. signaling-peer-port port_num 8. account account_name 9. media-bypass (Optional command) 10. media-bypass-forbid 11. attach DETAILED STEPS Step 1 adjacency h323 adjacency-name host1/admin(config-sbc-sbe)# adjacency h323 h323my_vrf1 host1/admin(config-sbc-sbe-adj-h323)# Enters the mode of an SBE H.323 adjacency. Use the adjacency-name argument to define the name of the service

11 Chapter 10 Implementing Multi-VRF Step 2 Step 3 vrf vrf_name host1/admin(config-sbc-sbe-adj-h323)# vrf my_vrf1 signaling-address ipv4 local_signaling_ip_address Ties an H.323 adjacency to a specific VPN. Note The vrf name under the adjacency must match the context name. Specifies the local IPv4 signaling address of the H.323 adjacency. Step 4 host1/admin(config-sbc-sbe-adj-h323)# signaling-address ipv signaling-port port_num Specifies the local signaling port of the H.323 adjacency. Step 5 Step 6 Step 7 Step 8 Step 9 Step 10 host1/admin(config-sbc-sbe-adj-h323)# signaling-port 1720 remote-address ipv4 ipv4_ip_address/prefix host1/admin(config-sbc-sbe-adj-h323)# remote-address ipv signaling-peer [gk] peer_address host1/admin(config-sbc-sbe-adj-h323)# signaling-peer gk signaling-peer-port port_num host1/admin(config-sbc-sbe-adj-h323)# signaling-peer-port 1720 account account_name host1/admin(config-sbc-sbe-adj-h323)# account h323-vrf1 media-bypass host1/admin(config-sbc-sbe-adj-h323)# media-bypass media-bypass-forbid host1/admin(config-sbc-sbe-adj-h323)# media-bypass-forbid Restricts the set of remote signaling peers contacted over the adjacency to those with the given IP address prefix. Specifies the remote signaling peer for the H.323 adjacency to use. Specifies the remote signaling-peer port for the H.323 adjacency to use. Defines the H.323 adjacency as belonging to an account on an SBE. (Optional) Configure the adjacency to allow media traffic to bypass the DBE. This command is optional and will only work on one adjacency. Configures the H.323 adjacency to forbid media traffic to bypass the DBE. If this is not configured, media traffic for calls originating and terminating on this adjacency flows directly between the endpoints and does not pass through the DBE, as long as both adjacencies are on the same VPN

12 Implementing Multi-VRF Chapter 10 Step 11 attach Attaches the adjacency. host1/admin(config-sbc-sbe-adj-h323)# attach Associating a SIP Adjacency with a VRF This task associates a SIP adjacency with a VPN. SUMMARY STEPS 1. adjacency sip adjacency-name 2. vrf vrf_name 3. signaling-address ipv4 local_signaling_ip_address 4. signaling-port port_num 5. remote-address ipv4 local_signaling_ip_address/prefix 6. local-id host name 7. signaling-peer [gk] peer_address 8. signaling-peer-port port_num 9. account account-name 10. media-bypass (optional) 11. media-bypass-forbid 12. attach DETAILED STEPS Step 1 Step 2 adjacency sip adjacency-name host1/admin(config-sbc-sbe)# adjacency sip sip_vrf1 host1/admin(config-sbc-sbe-adj-sip)# vrf vrf_name host1/admin(config-sbc-sbe-adj-sip)# vrf my_vrf1 Enters the mode of an SBE SIP adjacency. Use the adjacency-name argument to define the name of the service. Ties an H.323 adjacency to a specific VPN. Note The vrf name under the adjacency must match the context name

13 Chapter 10 Implementing Multi-VRF Step 3 Step 4 signaling-address ipv4 ipv4_ip_address host1/admin(config-sbc-sbe-adj-sip)# signaling-address ipv signaling-port port_num Specifies the local IPv4 signaling address of the SIP adjacency. Specifies the local signaling port of the SIP adjacency. Step 5 Step 6 host1/admin(config-sbc-sbe-adj-sip)# signaling-port 5060 remote-address ipv4 remote_ip_address/prefix host1/admin(config-sbc-sbe-adj-sip)# remote-address ipv local-id host address Restricts the set of remote signaling peers contacted over the adjacency to those with the given IP address prefix. Configures the local identity name on a SIP adjacency. Step 7 Step 8 Step 9 Step 10 Step 11 host1/admin(config-sbc-sbe-adj-sip)# local-id host signaling-peer [gk] peer_address host1/admin(config-sbc-sbe-adj-sip)# signaling-peer signaling-peer-port port_num host1/admin(config-sbc-sbe-adj-sip)# signaling-peer-port 5060 account account_name host1/admin(config-sbc-sbe-adj-sip)# account sip-vrf1 media-bypass host1/admin(config-sbc-sbe-adj-sip)# media-bypass media-bypass-forbid host1/admin(config-sbc-sbe-adj-sip)# media-bypass-forbid Specifies the remote signaling peer for the SIP adjacency to use. Specifies the remote signaling-peer port for the SIP adjacency to use. Defines the SIP adjacency as belonging to an account on an SBE. (Optional) Configures the adjacency to allow media traffic to bypass the DBE. This command is optional and only works on one adjacency. Configures the SIP adjacency to forbid media traffic to bypass the DBE. If this is not configured, media traffic for calls originating and terminating on this adjacency flows directly between the endpoints and does not pass through the DBE, as long as both adjacencies are on the same VPN

14 Implementing Multi-VRF Chapter 10 Step 12 attach Attaches the adjacency. host1/admin(config-sbc-sbe-adj-sip)# attach Configuring DBE with VRF Distributed Model Only This task configures DBE with VRF in the distributed model. SUMMARY STEPS 1. configure 2. sbc sbc-name 3. dbe 4. vdbe global 5. unexpected-source-alerting 6. local-port abcd 7. control-address h248 ipv4 A.B.C.D 8. controller h248 controller-index 9. remote-address ipv4 remote-address 10. remote-port [port-num] 11. transport [udp tcp] 12. attach-controllers 13. media-address pool ipv4 A.B.C.D E.F.G.H vrf vrfname 14. media-timeout timeout 15. overload-time-threshold time 16. deact-mode 17. activate 10-14

15 Chapter 10 Implementing Multi-VRF DETAILED STEPS Step 1 configure Accesses the configuration mode. Step 2 Step 3 Step 4 host1/admin# configure sbc sbc-name host1/admin(config)# sbc mysbc dbe host1/admin(config-sbc)# dbe vdbe [global] Creates the SBC service on the SBC and enters into SBC configuration mode. Creates the DBE service on an SBC and enter into the SBC-DBE configuration mode. Enters into vdbe configuration submode. host1/admin(config-sbc-dbe)# vdbe Note In the initial release only one vdbe (the global vdbe) is supported. The vdbe name is not required. If specified, it must be global. Step 5 Step 6 unexpected-source-alerting host1/admin(config-sbc-dbe-vdbe-global)# unexpected-source-alerting local-port {abcd} Sets alerting for unexpected source addresses. The no form of this command removes alerting for any unexpected source addresses that are received. Configures a DBE to use a specific local port. Step 7 Step 8 Step 9 host1/admin(config-sbc-dbe)# local-port 5090 control-address h248 ipv4 A.B.C.D host1/admin(config-sbc-dbe)# control-address h248 ipv controller h248 controller-index host1/admin(config-sbc-dbe)# controller h248 1 remote-address ipv4 remote-address Configures a DBE to use a specific IPv4 H.248 control address. Identifies the H.248 controller for the DBE and enters into Controller H.248 configuration mode. Configures the IPv4 remote address of the H.248 controller. host1/admin(config-sbc-dbe-vdbe-h248)# remote-address ipv

16 Configuration Examples for Implementing Multi-VRF Chapter 10 Step 10 Step 11 Step 12 remote-port [port-num] host1/admin(config-sbc-dbe-h248)# remote-port 2094 transport udp host1/admin(config-sbc-dbe-h248)# transport udp attach-controllers Defines the port to connect to on the SBE for an H.248 controller. Configures a DBE to use User Datagram Protocol (UDP) for H.248 control signaling. Configure a DBE to attach to an H.248 controller. Step 13 Step 14 Step 15 Step 16 Step 17 host1/admin(config-sbc-dbe)# attach-controllers media-address pool ipv4 A.B.C.D E.F.G.H vrf vrfname host1/admin(config-sbc-dbe)# media-address pool ipv vrf my_vrf1 media-timeout timeout host1/admin(config-sbc-dbe)# media-timeout 10 overload-time-threshold time host1/admin(config-sbc-dbe)# overload-time-threshold 400 deact-mode normal host1/admin(config-sbc-dbe)# deactivation-mode normal activate Create a pool of sequential IPv4 media addresses for an IPv4 address associated with a specific VRF instance. Note The vrf name under the adjacency must match the context name. Sets the maximum time a DBE waits after receiving the last media packet on a call and before cleaning up the call resources. Configures the threshold for media gateway (MG) overload control detection. Specifies that the DBE of an SBC signals a service change and terminates all calls upon deactivation of the DBE service. Initiates the SBC service. host1/admin(config-sbc-dbe)# activate Configuration Examples for Implementing Multi-VRF This section provides the following configuration examples: Configuring Multi-VRF: Example, page Associating an H.323 Adjacency with a VRF: Example, page Associating a SIP Adjacency with a VRF: Example, page

17 Chapter 10 Configuration Examples for Implementing Multi-VRF Configuring DBE with VRF (Distributed Model Only): Example, page Configuring Multi-VRF: Example This sample configuration shows how the Service Virtual Interface (SVI) and adjacencies are added to associate a VPN to them. 1. Configure the line card interface associated with vrf my_vrf1 on Supervisor. vrf definition my_vrf1 rd 55:1111! address-family ipv4 exit-address-family! 2. Configure the line card interface associated with vrf my_vrf1 on supervisor. interface GigabitEthernet1/3 description ''Connected to CAT Fa 0/13 vlan919'' vrf forwarding my_vrf1 ip address interface Vlan 99 vrf forwarding my_vrf1 ip address ! 3. Configure the context on ACE card and assign the VLAN. context my_vrf1 allocate-interface vlan Configure the FT group. Note You must configure the FT group 1 with the default (Admin) context (in this instance, my_vrf1). ft group 1 peer 1 priority 127 peer priority 126 associate-context my_vrf1 inservice 5. Configure the interface on my_vrf1 context for which you need to use change to CLI for changing the context. ACE-101-UUT1-1/Admin# changeto my_vrf1 ACE-101-UUT1-1/my_vrf1# interface vlan 99 ip address alias peer ip address no shutdown ip route ip route Configure the DBE

18 Configuration Examples for Implementing Multi-VRF Chapter 10 dbe media-address pool ipv vrf my_vrf1 activate DNS Query Configuration: Example This sample configuration configures a DNS query. context vrf110 allocate-interface vlan 110 context vrf120 allocate-interface vlan 120 sbc mysbc sbe sip dns cache-lifetime 6000 cache-limit adjacency sip sip1 vrf vrf adjacency sip sip2 vrf vrf host1/admin# changeto vrf110 ip domain-lookup ip domain-name test.com ip name-server host1/admin# changeto vrf120 ip domain-lookup ip domain-name test1.com ip name-server Associating an H.323 Adjacency with a VRF: Example This sample configuration creates an H.323 adjacency associated with a VPN. adjacency h323 h323my_vrf1 vrf my_vrf1 signaling-address ipv signaling-port 1720 remote-address ipv signaling-peer signaling-peer-port 1720 account h323-my_vrf1 attach Associating a SIP Adjacency with a VRF: Example This example configuration creates a SIP adjacency associated with a VPN. Note that there is an ft group configured for each context

19 Chapter 10 Configuration Examples for Implementing Multi-VRF ft interface vlan 99 ip address peer ip address no shutdown ft peer 1 heartbeat interval 100 heartbeat count 10 ft-interface vlan 99 ft group 1 peer 1 priority 127 peer priority 126 associate-context Admin inservice ip route ip route context vlan100 description vlan100 allocate-interface vlan 100 ft group 2 peer 1 priority 127 peer priority 126 associate-context vlan100 inservice username admin password 5 $1$faXJEFBj$TJR1Nx7sLPTi5BZ97v08c/ role Admin domain default-domain username www password 5 $1$UZIiwUk7$QMVYN1JASaycabrHkhGcS/ role Admin domain default-domain sbc mysbc sbe adjacency sip vrf vlan100 inherit profile preset-core preferred-transport udp redirect-mode pass-through authentication nonce timeout 300 signaling-address ipv signaling-port 5061 remote-address ipv signaling-peer signaling-peer-port 5060 dbe-location-id 0 account sip-core attach adjacency sip vrf vlan100 inherit profile preset-access preferred-transport udp redirect-mode pass-through authentication nonce timeout 300 signaling-address ipv signaling-port 5060 remote-address ipv signaling-peer signaling-peer-port 5060 dbe-location-id 0 account sip-core attach 10-19

20 Configuration Examples for Implementing Multi-VRF Chapter 10 adjacency sip vrf vlan100 nat force-on inherit profile preset-core preferred-transport udp redirect-mode pass-through authentication nonce timeout 300 signaling-address ipv signaling-port 5063 remote-address ipv signaling-peer signaling-peer-port 5063 dbe-location-id 0 account sip-core reg-min-expiry 3000 attach sip inherit profile preset-standard-non-ims retry-limit 3 call-policy-set 1 first-call-routing-table invite-table first-reg-routing-table start-table rtg-src-adjacency-table invite-table entry 1 action complete dst-adjacency match-adjacency entry 2 action complete dst-adjacency match-adjacency rtg-src-adjacency-table start-table entry 1 action complete dst-adjacency match-adjacency entry 2 action complete dst-adjacency match-adjacency complete active-call-policy-set 1 network-id 2 sip max-connections 2 sip timer tcp-idle-timeout tls-idle-timeout udp-response-linger-period udp-first-retransmit-interval 500 udp-max-retransmit-interval 4000 invite-timeout 180 blacklist global redirect-limit 2 deact-mode normal activate 10-20

21 Chapter 10 Configuration Examples for Implementing Multi-VRF dbe media-address ipv vrf vlan100 port-range any location-id 0 media-timeout 30 deact-mode normal activate newace4/admin# changeto vlan100 newace4/vlan100# sh run Generating configuration... interface vlan 100 ip address alias peer ip address no shutdown ip route Configuring DBE with VRF (Distributed Model Only): Example In this example, a context called my_vrf1 is created and a VLAN is allocated for my_vrf1. context my_vrf1 allocate-interface vlan 97 A fault-tolerant group is created and associated with the context my_vrf1. ft group 2 peer 1 priority 127 peer priority 126 associate-context my_vrf1 inservice An SBC is configured with a media address associated to the my_vrf1 context. sbc j dbe vdbe global unexpected-source-alerting local-port 2985 control-address h248 ipv controller h248 1 remote-address ipv remote-port 2985 transport udp attach-controllers media-address ipv vrf my_vrf1 media-address pool ipv media-timeout

22 Configuration Examples for Implementing Multi-VRF Chapter 10 overload-time-threshold 100 deact-mode normal activate (in the newly created context my_vrf1) An VLAN interface is created interface vlan 97 ip address alias peer ip address no shutdown ip route ip route The VLAN interface is associated with my_vrf1 on the supervisor engine: interface Vlan 97 vrf forwarding my_vrf1 ip address

Implementing SBC Firewall Traversal and NAT

Implementing SBC Firewall Traversal and NAT CHAPTER 15 The Session Border Controller (SBC) enables voice over IP (VoIP) signaling and media to be received from and directed to a device behind a firewall and NAT (Network Address Translator) at the

More information

Implementing SBC QoS (Marking)

Implementing SBC QoS (Marking) 28 CHAPTER The Session Border Controller (SBC) supports quality of service (QoS) profiles that the integrator s for IP packet marking on the data path. IP packet marking is used in the SBC in the following

More information

Implementing SBC Billing

Implementing SBC Billing 12 CHAPTER The Session Border Controller (SBC) billing component includes the following core features: Compatibility with existing billing systems To be able to fit the SBC billing system easily into a

More information

Session Border Controller

Session Border Controller CHAPTER 14 This chapter describes the level of support that Cisco ANA provides for (SBC), as follows: Technology Description, page 14-1 Information Model Objects (IMOs), page 14-2 Vendor-Specific Inventory

More information

SIP Profiles on the Session Border Controller

SIP Profiles on the Session Border Controller 16 CHAPTER You can configure the Session Border Controller (SBC) with method and header profiles on Session Initiation Protocol (SIP) messages. These profiles are used to control which SIP requests are

More information

Interchassis Asymmetric Routing Support for Zone-Based Firewall and NAT

Interchassis Asymmetric Routing Support for Zone-Based Firewall and NAT Interchassis Asymmetric Routing Support for Zone-Based Firewall and NAT The Interchassis Asymmetric Routing Support for Zone-Based Firewall and NAT feature supports the forwarding of packets from a standby

More information

Bridging Traffic CHAPTER3

Bridging Traffic CHAPTER3 CHAPTER3 This chapter describes how clients and servers communicate through the ACE using either Layer 2 (L2) or Layer 3 (L3) in a VLAN configuration. When the client-side and server-side VLANs are on

More information

MPLS VPN--Inter-AS Option AB

MPLS VPN--Inter-AS Option AB The feature combines the best functionality of an Inter-AS Option (10) A and Inter-AS Option (10) B network to allow a Multiprotocol Label Switching (MPLS) Virtual Private Network (VPN) service provider

More information

MPLS VPN Inter-AS Option AB

MPLS VPN Inter-AS Option AB First Published: December 17, 2007 Last Updated: September 21, 2011 The feature combines the best functionality of an Inter-AS Option (10) A and Inter-AS Option (10) B network to allow a Multiprotocol

More information

Configuring SIP SDP Attribute Passthrough

Configuring SIP SDP Attribute Passthrough 38 CHAPTER Before ACE SBC release 3.1.00, the SBC handled SDP attribute passthrough by passing through all attribute lines (a=) on an Offer (sometimes changing or adding certain kinds of attribute lines).

More information

Configuring Security on the GGSN

Configuring Security on the GGSN CHAPTER 12 This chapter describes how to configure security features on the gateway GPRS support node (GGSN), including Authentication, Authorization, and Accounting (AAA), and RADIUS. IPSec on the Cisco

More information

Configuring Cisco TelePresence MSE 8000 Series

Configuring Cisco TelePresence MSE 8000 Series CHAPTER 21 Configuring Cisco TelePresence MSE 8000 Series The following sections describe how to configure the Cisco TelePresence MSE 8000 Series products and the Cisco VCS products: About the Cisco TelePresence

More information

Remote Access MPLS-VPNs

Remote Access MPLS-VPNs First Published: August 12, 2002 Last Updated: May 4, 2009 The feature allows the service provider to offer a scalable end-to-end Virtual Private Network (VPN) service to remote users. This feature integrates

More information

Stateful Network Address Translation 64

Stateful Network Address Translation 64 The feature provides a translation mechanism that translates IPv6 packets into IPv4 packets and vice versa. The stateful NAT64 translator algorithmically translates the IPv4 addresses of IPv4 hosts to

More information

Multi-VRF Support. Finding Feature Information. Prerequisites for Multi-VRF Support

Multi-VRF Support. Finding Feature Information. Prerequisites for Multi-VRF Support The feature allows you to configure and maintain more than one instance of a routing and forwarding table within the same customer edge (CE) device. Finding Feature Information, page 1 Prerequisites for,

More information

Common Components. Cisco Unified Border Element (SP Edition) Configuration Profile Examples 5 OL

Common Components. Cisco Unified Border Element (SP Edition) Configuration Profile Examples 5 OL The following components of the Cisco Unified Border Element are common to all of the configuration profile examples in this document. Secure Media Adjacencies Call Policies CAC Policies SIP Profiles 5

More information

NAT Box-to-Box High-Availability Support

NAT Box-to-Box High-Availability Support The feature enables network-wide protection by making an IP network more resilient to potential link and router failures at the Network Address Translation (NAT) border. NAT box-to-box high-availability

More information

Match-in-VRF Support for NAT

Match-in-VRF Support for NAT The feature supports Network Address Translation (NAT) of packets that communicate between two hosts within the same VPN routing and forwarding (VRF) instance. In intra-vpn NAT, both the local and global

More information

Carrier Grade Network Address Translation

Carrier Grade Network Address Translation (CGN) is a large-scale NAT that translates private IPv4 addresses into public IPv4 addresses. CGN employs Network Address and Port Translation methods to aggregate multiple private IPv4 addresses into

More information

VRF Aware Cisco IOS Firewall

VRF Aware Cisco IOS Firewall VRF Aware Cisco IOS Firewall VRF Aware Cisco IOS Firewall applies Cisco IOS Firewall functionality to VRF (Virtual Routing and Forwarding) interfaces when the firewall is configured on a service provider

More information

Configuring WCCPv2. Information About WCCPv2. Send document comments to CHAPTER

Configuring WCCPv2. Information About WCCPv2. Send document comments to CHAPTER CHAPTER 5 This chapter describes how to configure the Web Cache Communication Protocol version 2 (WCCPv2) on Cisco NX-OS devices. This chapter includes the following sections: Information About WCCPv2,

More information

Cisco Virtual Office High-Scalability Design

Cisco Virtual Office High-Scalability Design Solution Overview Cisco Virtual Office High-Scalability Design Contents Scope of Document... 2 Introduction... 2 Platforms and Images... 2 Design A... 3 1. Configure the ACE Module... 3 2. Configure the

More information

Configuring VLAN Interfaces

Configuring VLAN Interfaces CHAPTER1 The Cisco Application Control Engine (ACE) module does not have any external physical interfaces to receive traffic from clients and servers. Instead, it uses internal VLAN interfaces. You assign

More information

NetFlow and NetFlow Data Export.

NetFlow and NetFlow Data Export. Getting Started with Configuring Cisco IOS NetFlow and NetFlow Data Export This module contains the minimum amount of information about and instructions necessary for configuring NetFlow to capture and

More information

Configuring the DHCP Server On-Demand Address Pool Manager

Configuring the DHCP Server On-Demand Address Pool Manager Configuring the DHCP Server On-Demand Address Pool Manager The Cisco IOS XE DHCP server on-demand address pool (ODAP) manager is used to centralize the management of large pools of addresses and simplify

More information

OSPFv3 Commands. address-family (OSPFv3), page 4. authentication (OSPFv3), page 7

OSPFv3 Commands. address-family (OSPFv3), page 4. authentication (OSPFv3), page 7 This module describes the commands used to configure and monitor the IP Version 6 (IPv6) Open Shortest Path First Version 3 (OSPFv3) routing protocol. For detailed information about OSPFv3 concepts, configuration

More information

Configure ACE with Source NAT and Client IP Header Insert

Configure ACE with Source NAT and Client IP Header Insert Configure ACE with Source NAT and Client IP Header Insert Document ID: 107399 Contents Introduction Prerequisites Requirements Components Used Conventions Configure Network Diagram Configurations Verify

More information

Bulk Logging and Port Block Allocation

Bulk Logging and Port Block Allocation The feature allocates a block of ports for translation instead of allocating individual ports. This feature is supported only in carrier-grade Network Address Translation (CGN) mode. This module provides

More information

Cisco Unified Border Element (SP Edition) Configuration Profile Examples

Cisco Unified Border Element (SP Edition) Configuration Profile Examples Cisco Unified Border Element (SP Edition) Configuration Profile Examples Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000

More information

MPLS VPN Carrier Supporting Carrier Using LDP and an IGP

MPLS VPN Carrier Supporting Carrier Using LDP and an IGP MPLS VPN Carrier Supporting Carrier Using LDP and an IGP Multiprotocol Label Switching (MPLS) Virtual Private Network (VPN) Carrier Supporting Carrier (CSC) enables one MPLS VPN-based service provider

More information

26 CHAPTER Virtual Private Networks (VPNs) provide a secure way for customers to share bandwidth over an ISP backbone network. A VPN is a collection of sites sharing a common routing table. A customer

More information

Configuring VLAN Interfaces

Configuring VLAN Interfaces CHAPTER1 The Cisco Application Control Engine (ACE) module does not have any external physical interfaces to receive traffic from clients and servers. Instead, it uses internal VLAN interfaces. You assign

More information

InterAS Option B. Information About InterAS. InterAS and ASBR

InterAS Option B. Information About InterAS. InterAS and ASBR This chapter explains the different InterAS option B configuration options. The available options are InterAS option B, InterAS option B (with RFC 3107), and InterAS option B lite. The InterAS option B

More information

Configuring Stateful Interchassis Redundancy

Configuring Stateful Interchassis Redundancy The Stateful Interchassis Redundancy feature enables you to configure pairs of devices to act as backups for each other. This module describes conceptual information about and tasks for configuring stateful

More information

Configuring Static and Dynamic NAT Translation

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

More information

MPLS VPN Half-Duplex VRF

MPLS VPN Half-Duplex VRF The feature provides scalable hub-and-spoke connectivity for subscribers of an Multiprotocol Label Switching (MPLS) Virtual Private Network (VPN) service. This feature addresses the limitations of hub-and-spoke

More information

BGP Event-Based VPN Import

BGP Event-Based VPN Import The feature introduces a modification to the existing Border Gateway Protocol (BGP) path import process. The enhanced BGP path import is driven by events; when a BGP path changes, all of its imported copies

More information

ipv6 mobile home-agent (global configuration)

ipv6 mobile home-agent (global configuration) ipv6 mobile home-agent (global configuration) ipv6 mobile home-agent (global configuration) To enter home agent configuration mode, use the ipv6 mobile home-agent command in global configuration mode.

More information

vserver vserver virtserver-name no vserver virtserver-name Syntax Description

vserver vserver virtserver-name no vserver virtserver-name Syntax Description Chapter 2 vserver vserver To identify a virtual server, and then enter the virtual server configuration submode, use the vserver command. To remove a virtual server from the configuration, use the no form

More information

MPLS VPN Carrier Supporting Carrier Using LDP and an IGP

MPLS VPN Carrier Supporting Carrier Using LDP and an IGP MPLS VPN Carrier Supporting Carrier Using LDP and an IGP Last Updated: December 14, 2011 Multiprotocol Label Switching (MPLS) Virtual Private Network (VPN) Carrier Supporting Carrier (CSC) enables one

More information

Configuring Multiprotocol Label Switching (MPLS)

Configuring Multiprotocol Label Switching (MPLS) Configuring Multiprotocol Label Switching (MPLS) Multiprotocol Label Switching, page 1 Finding Feature Information, page 1 Information about Multiprotocol Label Switching, page 1 How to Configure Multiprotocol

More information

MPLS VPN Inter-AS with ASBRs Exchanging VPN-IPv4 Addresses

MPLS VPN Inter-AS with ASBRs Exchanging VPN-IPv4 Addresses MPLS VPN Inter-AS with ASBRs Exchanging VPN-IPv4 Addresses The Multiprotocol Label Switching (MPLS) VPN Inter-AS with Autonomous System Boundary Routers (ASBRs) Exchanging VPN-IPv4 Addresses feature allows

More information

MPLS VPN Carrier Supporting Carrier IPv4 BGP Label Distribution

MPLS VPN Carrier Supporting Carrier IPv4 BGP Label Distribution MPLS VPN Carrier Supporting Carrier IPv4 BGP Label Distribution This feature lets you configure your carrier supporting carrier network to enable Border Gateway Protocol (BGP) to transport routes and Multiprotocol

More information

MPLS over GRE. Finding Feature Information. Prerequisites for MPLS VPN L3VPN over GRE

MPLS over GRE. Finding Feature Information. Prerequisites for MPLS VPN L3VPN over GRE The feature provides a mechanism for tunneling Multiprotocol Label Switching (MPLS) packets over a non-mpls network. This feature utilizes MPLS over generic routing encapsulation (MPLSoGRE) to encapsulate

More information

Configuring Hosted NAT Traversal for Session Border Controller

Configuring Hosted NAT Traversal for Session Border Controller Configuring Hosted NAT Traversal for Session Border Controller The Cisco IOS Hosted NAT Traversal for Session Border Controller Phase-1 feature enables a Cisco IOS Network Address Translation (NAT) Session

More information

BGP-MVPN SAFI 129 IPv6

BGP-MVPN SAFI 129 IPv6 Subsequent Address Family Identifier (SAFI) 129, known as VPN Multicast SAFI, provides the capability to support multicast routing in the service provider's core IPv6 network. Border Gateway Protocol (BGP)

More information

BGP NSF Awareness. Finding Feature Information

BGP NSF Awareness. Finding Feature Information Nonstop Forwarding (NSF) awareness allows a device to assist NSF-capable neighbors to continue forwarding packets during a Stateful Switchover (SSO) operation. The feature allows an NSF-aware device that

More information

Configuring the Catena Solution

Configuring the Catena Solution This chapter describes how to configure Catena on a Cisco NX-OS device. This chapter includes the following sections: About the Catena Solution, page 1 Licensing Requirements for Catena, page 2 Guidelines

More information

Easy Virtual Network Configuration Example

Easy Virtual Network Configuration Example Easy Virtual Network Configuration Example Document ID: 117974 Contributed by Fabrice Ducomble, Cisco TAC Engineer. Aug 04, 2014 Contents Introduction Prerequisites Requirements Components Used Background

More information

OSPF Commands on Cisco IOS XR Software

OSPF Commands on Cisco IOS XR Software This module describes the commands used to configure and monitor the Open Shortest Path First (OSPF) routing protocol. For detailed information about OSPF concepts, configuration tasks, and examples, see

More information

MPLS VPN Carrier Supporting Carrier IPv4 BGP Label Distribution

MPLS VPN Carrier Supporting Carrier IPv4 BGP Label Distribution MPLS VPN Carrier Supporting Carrier IPv4 BGP Label Distribution This feature enables you to configure your carrier supporting carrier network to enable Border Gateway Protocol (BGP) to transport routes

More information

Using NAT in Overlapping Networks

Using NAT in Overlapping Networks Using NAT in Overlapping Networks Document ID: 13774 Contents Introduction Prerequisites Requirements Components Used Conventions Configure Network Diagram Configurations Verify Troubleshoot Related Information

More information

BGP Event-Based VPN Import

BGP Event-Based VPN Import BGP Event-Based VPN Import Last Updated: April 13, 2012 The BGP Event-Based VPN Import feature introduces a modification to the existing Border Gateway Protocol (BGP) path import process. The enhanced

More information

Multiprotocol Label Switching

Multiprotocol Label Switching This module describes and how to configure it on Cisco switches. Restrictions for, page 1 Information about, page 1 How to Configure, page 3 Verifying Configuration, page 6 Restrictions for (MPLS) fragmentation

More information

MPLS VPN over mgre. Finding Feature Information. Last Updated: November 1, 2012

MPLS VPN over mgre. Finding Feature Information. Last Updated: November 1, 2012 MPLS VPN over mgre Last Updated: November 1, 2012 The MPLS VPN over mgre feature overcomes the requirement that a carrier support multiprotocol label switching (MPLS) by allowing you to provide MPLS connectivity

More information

OSPF Commands. adjacency stagger, page 7. authentication-key (OSPF), page 14

OSPF Commands. adjacency stagger, page 7. authentication-key (OSPF), page 14 OSPF Commands This module describes the commands used to configure and monitor the Open Shortest Path First (OSPF) routing protocol. For detailed information about OSPF concepts, configuration tasks, and

More information

Configuring the Cisco IOS DHCP Relay Agent

Configuring the Cisco IOS DHCP Relay Agent All Cisco devices that run Cisco software include a DHCP server and the relay agent software. A DHCP relay agent is any host or IP device that forwards DHCP packets between clients and servers. This module

More information

Configuring Network Access to the GGSN

Configuring Network Access to the GGSN CHAPTER 7 This chapter describes how to configure access from the gateway GPRS support node (GGSN) to a serving GPRS support node (SGSN), public data network (PDN), and optionally to a Virtual Private

More information

Content Switching Module with SSL Commands

Content Switching Module with SSL Commands CHAPTER 2 This chapter contains an alphabetical listing of the commands necessary to configure the CSM-S. These commands are unique to server load-balancing (SLB) and Layer 3 switching. 2-1 arp Chapter

More information

RIP Commands. output-delay, page 32 passive-interface (RIP), page 33 poison-reverse, page 35 receive version, page 37 redistribute (RIP), page 39

RIP Commands. output-delay, page 32 passive-interface (RIP), page 33 poison-reverse, page 35 receive version, page 37 redistribute (RIP), page 39 RIP Commands This module describes the commands used to configure and monitor the Routing Information Protocol (RIP). For detailed information about RIP concepts, configuration tasks, and examples, see

More information

Implementing MPLS VPNs over IP Tunnels

Implementing MPLS VPNs over IP Tunnels The MPLS VPNs over IP Tunnels feature lets you deploy Layer 3 Virtual Private Network (L3VPN) services, over an IP core network, using L2TPv3 multipoint tunneling instead of MPLS. This allows L2TPv3 tunnels

More information

Configuring Routes on the ACE

Configuring Routes on the ACE CHAPTER2 This chapter describes how the ACE is considered a router hop in the network when it is in routed mode. In the Admin or user contexts, the ACE supports static routes only. The ACE supports up

More information

Configuring Easy Virtual Network Shared Services

Configuring Easy Virtual Network Shared Services Configuring Easy Virtual Network Shared Services This chapter describes how to use route replication and redistribution to share services in an Easy Virtual Network (EVN). Finding Feature Information,

More information

Enabling Remote Access to the ACE

Enabling Remote Access to the ACE CHAPTER 3 Note The information in this chapter applies to both the ACE module and the ACE appliance unless otherwise noted. All features described in this chapter are supported with IPv6 unless otherwise

More information

ECMP Load Balancing. MPLS: Layer 3 VPNs Configuration Guide, Cisco IOS XE Release 3S (Cisco ASR 900 Series) 1

ECMP Load Balancing. MPLS: Layer 3 VPNs Configuration Guide, Cisco IOS XE Release 3S (Cisco ASR 900 Series) 1 Equal-cost multi-path routing (ECMP) is a routing strategy where next-hop packet forwarding to a single destination can occur over multiple "best paths" which tie for top place in routing metric calculations.

More information

Zone-Based Policy Firewall High Availability

Zone-Based Policy Firewall High Availability The feature enables you to configure pairs of devices to act as backup for each other. High availability can be configured to determine the active device based on a number of failover conditions. When

More information

Configuring the DHCP Server On-Demand Address Pool Manager

Configuring the DHCP Server On-Demand Address Pool Manager Configuring the DHCP Server On-Demand Address Pool Manager The Cisco IOS XE DHCP server on-demand address pool (ODAP) manager is used to centralize the management of large pools of addresses and simplify

More information

Configuring IPv6 PDP Support on the GGSN

Configuring IPv6 PDP Support on the GGSN CHAPTER 5 This chapter describes how to configure support for Internet Protocol Version 6 (IPv6) packet data protocol (PDP) contexts on a Cisco Gateway GPRS Support Node (GGSN). For complete descriptions

More information

MPLS VPN Inter-AS IPv4 BGP Label Distribution

MPLS VPN Inter-AS IPv4 BGP Label Distribution MPLS VPN Inter-AS IPv4 BGP Label Distribution This feature enables you to set up a Virtual Private Network (VPN) service provider network so that the autonomous system boundary routers (ASBRs) exchange

More information

Configuring VRF-lite CHAPTER

Configuring VRF-lite CHAPTER CHAPTER 36 Virtual Private Networks (VPNs) provide a secure way for customers to share bandwidth over an ISP backbone network. A VPN is a collection of sites sharing a common routing table. A customer

More information

Multiprotocol BGP Extensions for IP Multicast Commands

Multiprotocol BGP Extensions for IP Multicast Commands Multiprotocol BGP Extensions for IP Multicast Commands Use the commands in this chapter to configure and monitor multiprotocol BGP. Multiprotocol BGP is based on RFC 2283, Multiprotocol Extensions for

More information

OSPF Commands on Cisco ASR 9000 Series Router

OSPF Commands on Cisco ASR 9000 Series Router OSPF Commands on Cisco ASR 9000 Series Router This module describes the commands used to configure and monitor the Open Shortest Path First (OSPF) routing protocol. For detailed information about OSPF

More information

Configuring MPLS Egress NetFlow Accounting and Analysis

Configuring MPLS Egress NetFlow Accounting and Analysis Configuring MPLS Egress NetFlow Accounting and Analysis This module contains information about and instructions for configuring the MPLS Egress NetFlow Accounting feature. The MPLS Egress NetFlow Accounting

More information

Configuring Virtual Private LAN Service (VPLS) and VPLS BGP-Based Autodiscovery

Configuring Virtual Private LAN Service (VPLS) and VPLS BGP-Based Autodiscovery Configuring Virtual Private LAN Service (VPLS) and VPLS BGP-Based Autodiscovery Finding Feature Information, page 1 Configuring VPLS, page 1 Configuring VPLS BGP-based Autodiscovery, page 17 Finding Feature

More information

Configuring IPv6 Provider Edge over MPLS (6PE)

Configuring IPv6 Provider Edge over MPLS (6PE) Finding Feature Information, page 1 Configuring 6PE, page 1 Finding Feature Information Your software release may not support all the features documented in this module. For the latest caveats and feature

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 4 Timeout Mechanisms, page 4 NAT Inside and Outside

More information

Configuring Bridged Mode

Configuring Bridged Mode CHAPTER 13 This chapter describes how to configure the Cisco Application Control Engine (ACE) module to bridge traffic on a single IP subnet. This chapter includes the following topics: Information About

More information

Configuring a Basic BGP Network

Configuring a Basic BGP Network Configuring a Basic BGP Network This module describes the basic tasks to configure a basic Border Gateway Protocol (BGP) network. BGP is an interdomain routing protocol that is designed to provide loop-free

More information

OSPF Limit on Number of Redistributed Routes

OSPF Limit on Number of Redistributed Routes Open Shortest Path First (OSPF) supports a user-defined maximum number of prefixes (routes) that are allowed to be redistributed into OSPF from other protocols or other OSPF processes. Such a limit could

More information

Exam Name: Troubleshooting and Maintaining Cisco IP Networks (TSHOOT v2.0)

Exam Name: Troubleshooting and Maintaining Cisco IP Networks (TSHOOT v2.0) Vendor: Cisco Exam Code: 300-135 Exam Name: Troubleshooting and Maintaining Cisco IP Networks (TSHOOT v2.0) Version: DEMO QUESTION 1 The following commands are issued on a Cisco Router: Router(configuration)#access-list

More information

Split DNS. Finding Feature Information

Split DNS. Finding Feature Information The feature enables a Cisco device to respond to Domain Name System (DNS) queries using a specific configuration and associated host table cache that are selected based on certain characteristics of the

More information

Cisco IOS IP Routing: EIGRP Command Reference

Cisco IOS IP Routing: EIGRP Command Reference 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 THE SPECIFICATIONS AND INFORMATION

More information

Using NetFlow Filtering or Sampling to Select the Network Traffic to Track

Using NetFlow Filtering or Sampling to Select the Network Traffic to Track Using NetFlow Filtering or Sampling to Select the Network Traffic to Track First Published: June 19, 2006 Last Updated: December 17, 2010 This module contains information about and instructions for selecting

More information

Configuring BGP: RT Constrained Route Distribution

Configuring BGP: RT Constrained Route Distribution Configuring BGP: RT Constrained Route Distribution BGP: RT Constrained Route Distribution is a feature that can be used by service providers in Multiprotocol Label Switching (MPLS) Layer 3 VPNs to reduce

More information

Information About NAT

Information About NAT CHAPTER 26 This chapter provides an overview of how Network Address Translation (NAT) works on the ASA and includes the following sections: Introduction to NAT, page 26-1 NAT Types, page 26-2 NAT in Routed

More information

Configuring Cache Services Using the Web Cache Communication Protocol

Configuring Cache Services Using the Web Cache Communication Protocol Configuring Cache Services Using the Web Cache Communication Protocol Finding Feature Information, page 1 Prerequisites for WCCP, page 1 Restrictions for WCCP, page 2 Information About WCCP, page 3 How

More information

BGP Commands: M through N

BGP Commands: M through N match additional-paths advertise-set, on page 3 match as-path, on page 6 match community, on page 8 match extcommunity, on page 10 match local-preference, on page 12 match policy-list, on page 14 match

More information

Static NAT Mapping with HSRP

Static NAT Mapping with HSRP This module contains procedures for configuring Network Address Translation (NAT) to support the increasing need for highly resilient IP networks. This network resiliency is required where application

More information

MPLS VPN Carrier Supporting Carrier

MPLS VPN Carrier Supporting Carrier MPLS VPN Carrier Supporting Carrier Feature History Release 12.0(14)ST 12.0(16)ST 12.2(8)T 12.0(21)ST 12.0(22)S 12.0(23)S Modification This feature was introduced in Cisco IOS Release 12.0(14)ST. Support

More information

BGP Support for the L2VPN Address Family

BGP Support for the L2VPN Address Family BGP support for the Layer 2 Virtual Private Network (L2VPN) address family introduces a BGP-based autodiscovery mechanism to distribute L2VPN endpoint provisioning information. BGP uses a separate L2VPN

More information

standby arp gratuitous through track vrrp

standby arp gratuitous through track vrrp standby arp gratuitous, page 2 standby authentication, page 4 standby bfd, page 7 standby bfd all-interfaces, page 9 standby delay minimum reload, page 11 standby follow, page 13 standby ip, page 15 standby

More information

Configuring Application Visibility and Control for Cisco Flexible Netflow

Configuring Application Visibility and Control for Cisco Flexible Netflow Configuring Application Visibility and Control for Cisco Flexible Netflow First published: July 22, 2011 This guide contains information about the Cisco Application Visibility and Control feature. It also

More information

Configuring Route Health Injection

Configuring Route Health Injection CHAPTER 11 This chapter describes how to configure route health injection (RHI) for the Cisco Application Control Engine (ACE) module. This chapter contains the following sections: Information About RHI

More information

Restrictions for Disabling Flow Cache Entries in NAT and NAT64

Restrictions for Disabling Flow Cache Entries in NAT and NAT64 The feature allows you to disable flow cache entries for dynamic and static Network Address Translation (NAT) translations. Disabling flow cache entries for dynamic and static translations saves memory

More information

Configuring NetFlow. Understanding NetFlow CHAPTER

Configuring NetFlow. Understanding NetFlow CHAPTER 50 CHAPTER This chapter describes how to configure NetFlow statistics collection on the Cisco 7600 series routers. Note For complete syntax and usage information for the commands used in this chapter,

More information

Configuring Advanced BGP

Configuring Advanced BGP CHAPTER 6 This chapter describes how to configure advanced features of the Border Gateway Protocol (BGP) on the Cisco NX-OS switch. This chapter includes the following sections: Information About Advanced

More information

Configuring Dynamic Addressing on the GGSN

Configuring Dynamic Addressing on the GGSN CHAPTER 13 This chapter describes how to configure dynamic IP addressing on the gateway GRPS support node (GGSN). Note Dynamic IP addressing is not supported for IPv6 and PPP PDP types. Therefore, the

More information

Configuring ISG Support for Prepaid Billing

Configuring ISG Support for Prepaid Billing Intelligent Services Gateway (ISG) is a software feature set that provides a structured framework in which edge devices can deliver flexible and scalable services to subscribers. ISG prepaid billing support

More information

Introduction to External Connectivity

Introduction to External Connectivity Before you begin Ensure you know about Programmable Fabric. Conceptual information is covered in the Introduction to Cisco Programmable Fabric and Introducing Cisco Programmable Fabric (VXLAN/EVPN) chapters.

More information

Mapping of Address and Port Using Translation

Mapping of Address and Port Using Translation The feature provides connectivity to IPv4 hosts across IPv6 domains. Mapping of address and port using translation (MAP-T) is a mechanism that performs double translation (IPv4 to IPv6 and vice versa)

More information