Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server

Size: px
Start display at page:

Download "Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server"

Transcription

1 Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server This document describes how to enable the Managed IPv6 Layer 2 Tunnel Protocol Network Server feature. Finding Feature Information, page 1 Prerequisites for Configuring the Managed IPv6 LNS, page 1 Information About Configuring the Managed IPv6 LNS, page 2 How to Configure the Managed LNS, page 4 Configuration Examples for the Managed IPv6 Layer 2 Tunnel Protocol Network Server, page 22 Additional References, page 28 Feature Information for Configuring Managed IPv6 Layer 2 Tunnel Protocol Network Server, page 29 Finding Feature Information Your software release may not support all the features documented in this module. For the latest caveats and feature information, see Bug Search Tool and the release notes for your platform and software release. To find information about the features documented in this module, and to see a list of the releases in which each feature is supported, see the feature information table. Use Cisco Feature Navigator to find information about platform support and Cisco software image support. To access Cisco Feature Navigator, go to An account on Cisco.com is not required. Prerequisites for Configuring the Managed IPv6 LNS For the router to function as an LNS, you must enable Authentication, Authorization, and Accounting (AAA) on the Layer 2 Tunnel Protocol Network Server (LNS) and the Layer 2 Access Concentrator (LAC), by entering the aaanew-model global configuration command. For more information, see the Authentication, Authorization, and Accounting chapter in the Cisco IOS XE Security: Securing User Services Configuration Guide. 1

2 Information About Configuring the Managed IPv6 LNS Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Information About Configuring the Managed IPv6 LNS L2TP Network Server The router can function as an LNS. The LNS is a peer to the LAC and sits on one side of an L2TP tunnel. The LNS routes packets to and from the LAC and a destination network. When the router functions as an LNS, you can configure the router to terminate the PPP sessions and route the client IP packets onto the ISP or corporate network toward their final destination (see the figure below). The router can use the Managed IPv6 LNS feature to terminate L2TP sessions from the LAC and place each session into the appropriate IPv6 VRF instance based on the VRF applied to the virtual template interface or alternatively, based on the VRF received for the user through AAA. The router then routes each session within the VRF to the destination network. Figure 1: Terminating and Forwarding Sessions from the LAC Tunnel Accounting The tunnel accounting feature enhances AAA accounting by adding the ability to include tunnel-related statistics in the RADIUS information. Before you can collect tunnel usage information, you must configure the following attributes on the RADIUS server: Acct-Tunnel-Connection Specifies the identifier assigned to the tunnel session. This attribute and the Tunnel-Client-Endpoint and Tunnel-Server-Endpoint attributes provide a way to uniquely identify a tunnel session for auditing purposes. Acct-Tunnel-Packets-Lost Specifies the number of packets lost on a given link. The table below describes the values for the Acct-Status-Type attribute that support tunnel accounting on the RADIUS server. 2

3 Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Tunnel Accounting Table 1: Acct-Status-Type Values for RADIUS Tunnel Accounting Acct-Status-Type Values Tunnel-Link-Reject Tunnel-Link-Start Tunnel-Link-Stop Tunnel-Reject Tunnel-Start Tunnel-Stop Value Description Marks the rejection of the establishment of a new link in an existing tunnel. Marks the creation of a tunnel link within an L2TP tunnel that carries multiple links. Marks the destruction of a tunnel link within an L2TP tunnel that carries multiple links. Marks the rejection of the establishment of a tunnel with another device. Marks the establishment of a tunnel with another device. Marks the destruction of a tunnel to or from another device. For more information about the RADIUS tunnel accounting attributes or the Acct-Status-Type values that support RADIUS tunnel accounting, see RFC 2867, RADIUS Accounting Modifications for Tunnel Protocol Support. For information about RADIUS accounting attributes supported on the Cisco ASR 1000 Series Aggregation Services Routers, see the RADIUS Attributes chapter in the Cisco IOS XE Security Configuration Guide: Securing User Services. For more information on configuring RADIUS, see your RADIUS user documentation. 3

4 How to Configure the Managed LNS Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server How to Configure the Managed LNS Configuring a VRF on the LNS SUMMARY STEPS 1. enable 2. configure terminal 3. vrf definition vrf-name 4. rd route-distinguisher 5. address-family {ipv4 ipv6} 6. route-target {import export both} route-target-ext-community 7. exit-address-family 8. address-family {ipv4 ipv6} 9. route-target {import export both} route-target-ext-community 10. end 11. show ipv6 route vrf vrf-name DETAILED STEPS Step 1 enable Enters privileged EXEC mode. Router> enable Step 2 configure terminal Enters global configuration mode. Step 3 Step 4 Router# configure terminal vrf definition vrf-name Router(config)# vrf definition vrf1 rd route-distinguisher Router(config-vrf)# rd 100:1 Configures a VRF routing table and enters VRF configuration mode. The vrf-nameargument is the name of the VRF. Creates routing and forwarding tables for a VRF. The route-distinguisher argument adds an 8-byte value to an IPv4 prefix to create a VPN IPv4 prefix. You can enter a route distinguisher in either of these formats: 4

5 Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Configuring a VRF on the LNS 16-bit autonomous system number (ASN): your 32-bit number For example, 101:3. 32-bit IP address: your 16-bit number For example, :1. Step 5 Step 6 Step 7 Step 8 Step 9 address-family {ipv4 ipv6} Router(config-vrf) address-family ipv6 route-target {import export both} route-target-ext-community Router(config-vrf-af) route-target both 100:2 exit-address-family Router(config-vrf-af)# exit-address-family address-family {ipv4 ipv6} Router(config-vrf) address-family ipv6 route-target {import export both} route-target-ext-community Router(config-vrf-af)# route-target both 100:3 Enters VRF address family configuration mode to specify an address family for a VRF. The ipv4 keyword specifies an IPv4 address family for a VRF. The ipv6 keyword specifies an IPv6 address family for a VRF. Creates a route-target extended community for a VRF. The import keyword imports routing information from the target VPN extended community. The export keyword exports routing information to the target VPN extended community. The both keyword imports both import and export routing information to the target VPN extended community. The route-target-ext-community argument adds the route-target extended community attributes to the VRF list of import, export, or both (import and export) route-target extended communities. Exits VRF address family configuration mode and enters VRF configuration mode. Enters VRF address family configuration mode to specify an address family for a VRF. The ipv4 keyword specifies an IPv4 address family for a VRF. The ipv6 keyword specifies an IPv6 address family for a VRF. Creates a route-target extended community for a VRF. The import keyword specifies to import routing information from the target VPN extended community. The export keyword specifies to export routing information to the target VPN extended community. The both keyword specifies to import both import and export routing information to the target VPN extended community. 5

6 Configuring a Virtual Template Interface Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server The route-target-ext-community argument adds the route-target extended community attributes to the VRF list of import, export, or both (import and export) route-target extended communities. Enter the route-target command one time for each target community. Step 10 end Router(config-vrf-af)# end Exits VRF address family configuration mode and returns to privileged EXEC mode. Step 11 show ipv6 route vrf vrf-name Displays the IPv6 routing table associated with a VRF. Router# show ipv6 route vrf vrf1 Configuring a Virtual Template Interface SUMMARY STEPS 1. enable 2. configure terminal 3. interface virtual-template number 4. vrf forwarding name 5. ppp authentication chap 6. end 7. show interfaces virtual-access number [configuration] 8. debug ppp chap 9. debug ppp negotiation 10. debug ppp negotiation chap DETAILED STEPS Step 1 enable Enters privileged EXEC mode. Router> enable 6

7 Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Configuring a Virtual Template Interface Step 2 configure terminal Enters global configuration mode. Step 3 Step 4 Step 5 Router# configure terminal interface virtual-template number Router(config)# interface virtual-template 1 vrf forwarding name Router(config-if)# vrf forwarding vpn-1 ppp authentication chap Router(config-if)# ppp authentication chap Creates a virtual template interface and enters interface configuration mode. (Optional) Maps the virtual template interface to a VRF routing table. Note If the VRF assignment is received via the RADIUS server, then this step is not required. Enables CHAP authentication on the virtual template interface, which is applied to virtual access interfaces (VAI). Step 6 Step 7 end Router(config-if)# end show interfaces virtual-access number [configuration] Exits interface configuration mode and returns to privileged EXEC mode. Displays status, traffic data, and configuration information about the VAI you specify. Step 8 Router# show interfaces virtual-access number [configuration] debug ppp chap Router# debug ppp chap Displays authentication protocol messages for Challenge Authentication Protocol (CHAP) packet exchanges. This command is useful when a CHAP authentication failure occurs due to a configuration mismatch between devices. Verifying and correcting any username and password mismatch resolves the problem. 7

8 Assigning a VRF via the RADIUS Server Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Step 9 debug ppp negotiation Router# debug ppp negotiation Displays information on traffic and exchanges in an internetwork implementing PPP. Step 10 debug ppp negotiation chap Router# debug ppp negotiation chap Deciphers a CHAP negotiation problem due to a connectivity problem between a Cisco and non-cisco device. Assigning a VRF via the RADIUS Server SUMMARY STEPS 1. enable 2. configure terminal 3. aaa authorization configuration method-name group group-name 4. ipv6 dhcp pool pool-name 5. prefix-delegation aaa [method-listmethod-list] 6. dns-server ipv6-address 7. exit 8. interface virtual-template number 9. ipv6 nd prefix framed-ipv6-prefix 10. ipv6 dhcp server pool-name rapid-commit 11. end DETAILED STEPS Step 1 enable Enters privileged EXEC mode. Router> enable 8

9 Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Assigning a VRF via the RADIUS Server Step 2 configure terminal Enters global configuration mode. Step 3 Router# configure terminal aaa authorization configuration method-name group group-name Downloads configuration information from the AAA server using RADIUS. Step 4 Step 5 Step 6 Step 7 Step 8 Step 9 Router(config)# aaa authorization configuration DHCPv6-PD group DHCPv6-PD-RADIUS ipv6 dhcp pool pool-name Router(config)# ipv6 dhcp pool DHCPv6-PD prefix-delegation aaa [method-listmethod-list] Router(config-dhcpv6)# prefix-delegation aaa method-list DHCPv6-PD dns-server ipv6-address Router(config-dhcpv6)# dns-server 2001:0DB8:3000:3000::42 exit Router(config-dhcpv6)# exit interface virtual-template number Router(config)# interface virtual-template 1 ipv6 nd prefix framed-ipv6-prefix Router(config-if)# ipv6 nd prefix framed-ipv6-prefix Configures a DHCP for IPv6 configuration information pool and enters DHCP for IPv6 pool configuration mode. Specifies that prefixes are to be acquired from AAA servers. Specifies the Domain Name System (DNS) IPv6 servers available to a DHCP for IPv6 client. Exits DHCP for IPv6 pool configuration mode and enters global configuration mode. Creates a virtual template interface that can be configured and applied dynamically in creating VAIs, and enters interface configuration mode. Adds the prefix in a received RADIUS framed IPv6 prefix attribute to the interface's neighbor discovery prefix queue. 9

10 Configuring the LNS to Initiate and Receive L2TP Traffic Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Step 10 ipv6 dhcp server pool-name rapid-commit Enables DHCPv6 on an interface. Step 11 Router(config-if)# ipv6 dhcp server DHCPv6-PD rapid-commit end Router(config-if)# end Exits interface configuration mode and returns to privileged EXEC mode. Configuring the LNS to Initiate and Receive L2TP Traffic SUMMARY STEPS 1. enable 2. configure terminal 3. vpdn enable 4. vpdn-group group-name 5. accept-dialin 6. protocol 12tp 7. virtual-template template-number 8. exit 9. terminate-from hostname hostname 10. end DETAILED STEPS Step 1 enable Enters privileged EXEC mode. Step 2 Router> enable configure terminal Enters global configuration mode. Router# configure terminal 10

11 Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Configuring the LNS to Initiate and Receive L2TP Traffic Step 3 Step 4 Step 5 Step 6 vpdn enable Router(config)# vpdn enable vpdn-group group-name Router(config)# vpdn-group group1 accept-dialin Router(config-vpdn)# accept-dialin protocol 12tp Enables VPDN networking on the router and informs the router to look for tunnel definitions in a local database and on a remote authorization server (home gateway) if one is present. Defines a local group name for which you can assign other VPDN variables. Enters VPDN group configuration mode. Configures the LNS to accept tunneled PPP connections from the LAC and creates an accept-dialin VPDN subgroup. Enters accept dial-in VPDN subgroup configuration mode. Specifies the Layer 2 Tunnel Protocol. Step 7 Router(config-vpdn-acc-in)# protocol 12tp virtual-template template-number Specifies the virtual template to be used to clone VAIs. Step 8 Router(config-vpdn-acc-in)# virtual-template 1 exit Returns to VPDN group configuration mode. Step 9 Step 10 Router(config-vpdn-acc-in)# exit terminate-from hostname hostname Router(config-vpdn)# terminate-from hostname lac1-vpn1 end Router(config-vpdn)# end Specifies the hostname of the remote LAC that is required when accepting a VPDN tunnel. Exits VPDN configuration mode and returns to privileged EXEC mode. 11

12 Limiting the Number of Sessions per Tunnel Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Limiting the Number of Sessions per Tunnel SUMMARY STEPS 1. enable 2. configure terminal 3. vpdn-group group-name 4. accept-dialin 5. protocol 12tp 6. virtual-template template-number 7. exit 8. terminate-from hostname host-name 9. session-limit limit-number 10. exit DETAILED STEPS Step 1 enable Enters privileged EXEC mode. Step 2 Router> enable configure terminal Enters global configuration mode. Step 3 Step 4 Router# configure terminal vpdn-group group-name Router(config)# vpdn-group group1 accept-dialin Router(config-vpdn)# accept-dialin Defines a local group name for which you can assign other VPDN variables. Enters VPDN group configuration mode. Configures the LNS to accept tunneled PPP connections from the LAC and creates an accept-dialin VPDN subgroup. Enters accept dial-in VPDN subgroup configuration mode. Step 5 protocol 12tp Specifies the Layer 2 Tunnel Protocol. Router(config-vpdn-acc-in)# protocol 12tp 12

13 Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Limiting the Number of Sessions per Tunnel Step 6 virtual-template template-number Specifies the virtual template to be used to clone VAIs. Step 7 Router(config-vpdn-acc-in)# virtual-template 1 exit Returns to VPDN group configuration mode. Step 8 Step 9 Router(config-vpdn-acc-in)# exit terminate-from hostname host-name Router(config-vpdn)# terminate-from hostname test_lac session-limit limit-number Specifies the hostname of the remote LAC that is required when accepting a VPDN tunnel. Specifies the maximum number of sessions per tunnel. Step 10 Router(config-vpdn)# session-limit 100 exit Router(config-vpdn)# exit Exits VPDN configuration mode and returns to privileged EXEC mode. 13

14 Configuring RADIUS Attribute Accept or Reject Lists Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Configuring RADIUS Attribute Accept or Reject Lists SUMMARY STEPS 1. enable 2. configure terminal 3. aaa authentication ppp default group group-name 4. aaa authorization network group group group-name 5. aaa group server radius group-name 6. server-private ip-address [acct-portport-number][timeoutseconds] [retransmitretries] [keystring] 7. authorization [accept reject] list-name 8. exit 9. radius-server attribute list listname 10. attribute value1 [value2 [value3...]] 11. end 12. show accounting DETAILED STEPS Step 1 enable Enters privileged EXEC mode. Step 2 Router> enable configure terminal Enters global configuration mode. Step 3 Router# configure terminal aaa authentication ppp default group group-name Specifies one or more AAA authentication methods for use on serial interfaces running PPP. Step 4 Router(config)# aaa authentication ppp default group radius_authen1 aaa authorization network group group group-name Sets the parameters that restrict network access to the user. Router(config)# aaa authorization network group group radius_authen1 14

15 Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Configuring RADIUS Attribute Accept or Reject Lists Step 5 aaa group server radius group-name Router(config)# aaa group server radius VPDN-Group Groups different RADIUS server hosts into distinct lists and distinct methods and enters server group RADIUS configuration mode. Step 6 server-private ip-address [acct-portport-number][timeoutseconds] [retransmitretries] [keystring] Router(config-sg-radius)# server-private acct-port 0 timeout 7 retransmit 3 key cisco1 Configures the IP address of the private RADIUS server for the group server. The ip-addressargument specifies the IP address of the private RADIUS server host. (Optional) The port-numberargument specifies the UDP destination port for accounting requests. (Optional) The seconds argument specifies the timeout value (1 to 1000). (Optional) The retriesargument specifies the number of times a RADIUS request is re-sent to a server, if that server is not responding or responding slowly. The string argument specifies the authentication and encryption key for all RADIUS communications between the router and the RADIUS server. Step 7 Step 8 Step 9 authorization [accept reject] list-name Router(config-sg-radius)# authorization accept vpn1-autho-list exit Router(config-sg-radius)# exit radius-server attribute list listname Router(config)# radius-server attribute list vpn1-autho-list Specifies a filter for the attributes that are returned in an Access-Accept packet from the RADIUS server. The accept keyword indicates that all attributes will be rejected except the attributes specified in the listname argument. The reject keyword indicates that all attributes will be accepted except for the attributes specified in the listname argument and all standard attributes. Exits server group RADIUS configuration mode and enters global configuration mode. Defines the list name given to the set of attributes defined using the attribute command and enters RADIUS attribute list configuration mode. Define the listname argument to be the same as you defined it in step 7. Step 10 attribute value1 [value2 [value3...]] Adds attributes to the configured accept or reject list. 15

16 Configuring AAA Accounting Using Named Method Lists Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server You can use this command multiple times to add attributes to an accept or reject list. Step 11 Step 12 Router(config-radius-attrl)# attribute 26,200 end Router(config-radius-attrl)# end show accounting Router# show accounting Exits RADIUS attribute list configuration mode and returns to privileged EXEC mode. Displays accounting records for users currently logged in. Displays active accountable events on the network and helps collect information in the event of a data loss on the accounting server. Configuring AAA Accounting Using Named Method Lists Note System accounting does not use named method lists. For system accounting you can define only the default method list. For more information, see the Configuring Accounting chapter in the Cisco IOS XE Security Configuration Guide: Securing User Services. SUMMARY STEPS 1. enable 2. configure terminal 3. aaa accounting network list-name start-stop group radius 4. line [aux console vty] [line-number] 5. accounting {arap commandslevel connection exec resource} [default list-name] 6. end 7. debug aaa accounting 16

17 Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Configuring AAA Accounting Using Named Method Lists DETAILED STEPS Step 1 enable Enters privileged EXEC mode. Step 2 Router> enable configure terminal Enters global configuration mode. Step 3 Router# configure terminal aaa accounting network list-name start-stop group radius Creates an accounting method list and enables accounting. Step 4 Router(config)# aaa accounting network methodlist start-stop group radius line [aux console vty] [line-number] Router(config)# line console 0 Enters line configuration mode for the line to which you want to apply the accounting method list. Step 5 accounting {arap commandslevel connection exec resource} [default list-name] Applies the accounting method list to a line or a set of lines. Step 6 Step 7 Router(config-line)# accounting commands 15 list1 end Router(config-line)# end debug aaa accounting Router# debug aaa accounting Exits line configuration mode and returns to privileged EXEC mode. Displays information on accountable events as they occur. 17

18 Configuring RADIUS Tunnel Authentication Method Lists on the LNS Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Configuring RADIUS Tunnel Authentication Method Lists on the LNS SUMMARY STEPS 1. enable 2. configure terminal 3. aaa authorization network list-name method1 [method2...] 4. vpdn tunnel authorization network lmethod-ist-name method1 [method2...] 5. vpdn tunnel authorization virtual-template vtemplate-number 6. vpdn tunnel authorization password dummy-password 7. debug aaa authorization DETAILED STEPS Step 1 enable Enters privileged EXEC mode. Step 2 Router> enable configure terminal Enters global configuration mode. Step 3 Router# configure terminal aaa authorization network list-name method1 [method2...] Router(config)# aaa authorization network mymethodlist group VPDN-Group Sets parameters that restrict user access to a network. The list-name argument is a character string used to name the list of authentication methods tried when a user logs in. group radius: Uses the list of all RADIUS servers for authentication. group group-name: Uses a subset of RADIUS servers for authentication as defined by the aaa group server radius command. if-authenticated: Succeeds if user has been successfully authenticated. local: Uses the local username database for authentication. none: Uses no authentication. Note The method list is only for VPDN tunnel authorization and termination, not for domain and Digital Number Identification Service (DNIS) authorization. Therefore, the method list applies only on the tunnel terminator device - the LAC for dialout sessions and the LNS for dialin sessions. 18

19 Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Configuring the LNS for RADIUS Tunnel Authentication Step 4 Step 5 Step 6 vpdn tunnel authorization network lmethod-ist-name method1 [method2...] Router(config)# vpdn tunnel authorization network mymethodlist vpdn tunnel authorization virtual-template vtemplate-number Router(config)# vpdn tunnel authorization virtual-template 10 vpdn tunnel authorization password dummy-password Specifies the AAA method list to use for VPDN remote tunnel hostname-based authorization. If you do not specify a method list (including a default method list) by using the vpdn tunnel authorization network command, local authorization occurs by using the local VPDN group configuration. Specifies the default virtual template interface used to clone a VAI. If you do not specify a virtual template interface in the local VPDN group configuration or in a remote RADIUS configuration, then the default virtual template interface is used. Specifies the password to use for the RADIUS authorization request to retrieve the tunnel configuration based on the remote tunnel hostname. Step 7 Router(config)# vpdn tunnel authorization password mypassword debug aaa authorization Displays information on AAA authorization. Router# debug aaa authorization Configuring the LNS for RADIUS Tunnel Authentication Perform the following tasks to configure LNS for RADIUS Tunnel Authentication: Note Cisco ASR 1000 Series Aggregation Services Routers supports L2TP tunnel authorization. However, RADIUS does not provide attributes for such parameter values as L2TP tunnel timeouts, L2TP tunnel hello intervals, and L2TP tunnel receive window size. When the Cisco ASR 1000 Series Aggregation Services Router does not receive a RADIUS attribute for a parameter, the router uses the default value. Configuring RADIUS Tunnel Authentication Method Lists on the LNS To configure method lists on the LNS for RADIUS tunnel authentication, perform the following task. 19

20 Configuring RADIUS Tunnel Authentication Method Lists on the LNS Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server SUMMARY STEPS 1. enable 2. configure terminal 3. aaa authorization network list-name method1 [method2...] 4. vpdn tunnel authorization network method- list-name 5. vpdn tunnel authorization virtual-template vtemplate-number 6. vpdn tunnel authorization password dummy-password 7. end 8. debug aaa authorization DETAILED STEPS Step 1 enable Enters privileged EXEC mode. Step 2 Router> enable configure terminal Enters global configuration mode. Router# configure terminal Step 3 aaa authorization network list-name method1 [method2...] Router(config)# aaa authorization network mymethodlist group VPDN-Group Sets parameters that restrict user access to a network Thelist-nameargument is a character string used to name the list of authentication methods tried when a user logs in. groupradius Uses the list of all RADIUS servers for authentication. groupgroup-name Uses a subset of RADIUS servers for authentication as defined by the aaagroupserverradius command. if-authenticated Succeeds if user has been successfully authenticated. local Uses the local username database for authentication. none Uses no authentication. Note The method list is only for VPDN tunnel authorization and termination, not for domain and Digital Number Identification Service (DNIS) authorization. Therefore, the method list applies only on the tunnel terminator device the LAC for dialout sessions and the LNS for dialin sessions. 20

21 Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Configuring RADIUS Tunnel Authentication Method Lists on the LNS Step 4 Step 5 Step 6 Step 7 vpdn tunnel authorization network method- list-name Router(config)# vpdn tunnel authorization network mymethodlist vpdn tunnel authorization virtual-template vtemplate-number Router(config)# vpdn tunnel authorization virtual-template 10 vpdn tunnel authorization password dummy-password Router(config)# vpdn tunnel authorization password mypassword end Specifies the AAA method list to use for VPDN remote tunnel hostname-based authorization. If you do not specify a method list (including a default method list) by using the vpdntunnelauthorizationnetwork command, local authorization occurs by using the local VPDN group configuration. Specifies the default virtual template interface used to clone a VAI. Note If you do not specify a virtual template interface in the local VPDN group configuration or in a remote RADIUS configuration, then the default virtual template interface is used. The vpdntunnelauthorizationvirtual-template command is applicable only on the LNS. Specifies the password to use for the RADIUS authorization request to retrieve the tunnel configuration based on the remote tunnel hostname. Note By default, the password is cisco, but you can configure a different password. The vpdntunnelauthorizationpassword command is applicable on both the LAC and LNS. Exits global configuration mode and returns to privileged EXEC mode. Step 8 Router(config)# end debug aaa authorization Displays information on AAA authorization. Router# debug aaa authorization 21

22 Configuring AAA Authentication Methods Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Configuring AAA Authentication Methods SUMMARY STEPS 1. enable 2. configure terminal 3. aaa new-model 4. Configure RADIUS security protocol parameters. For more information about RADIUS, see the Configuring RADIUS chapter in the Cisco IOS XE Security Configuration Guide: Securing User Services. 5. aaa authentication 6. Apply the authentication method lists to an interface, a line, or a set of lines as required. For more information about authentication method lists, see the Configuring Authentication chapter in the Cisco IOS XE Security Configuration Guide: Securing User Services. 7. end DETAILED STEPS Step 1 Step 2 Step 3 Step 4 Step 5 Step 6 Step 7 enable configure terminal aaa new-model Enter this command in global configuration mode to enable AAA. Configure RADIUS security protocol parameters. For more information about RADIUS, see the Configuring RADIUS chapter in the Cisco IOS XE Security Configuration Guide: Securing User Services. aaa authentication Enter this command to define the authentication method lists. Apply the authentication method lists to an interface, a line, or a set of lines as required. For more information about authentication method lists, see the Configuring Authentication chapter in the Cisco IOS XE Security Configuration Guide: Securing User Services. end Configuration Examples for the Managed IPv6 Layer 2 Tunnel Protocol Network Server Example Managed IPv6 LNS Configuration The following example shows how to configure Managed IPv6 LNS features on the router. In this example, the router terminates the tunnel from the LAC and associates the VRFs with the interfaces and the virtual 22

23 Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Example Managed IPv6 LNS Configuration template interfaces. This configuration also shows how to configure RADIUS attribute screening and AAA accounting for the VRFs. vrf definition Mgmt-intf address-family ipv4 exit-address-family address-family ipv6 exit-address-family vrf definition user_vrf1 rd 1:1 route-target export 1:1 route-target import 1:1 address-family ipv6 exit-address-family logging buffered enable password lab aaa new-model aaa group server radius radius_authen1 server-private acct-port 0 timeout 7 retransmit 3 key cisco1 ip radius source-interface Loopback20000 aaa authentication login default none aaa authentication ppp default group radius_authen1 aaa authorization network default group radius_authen1 aaa authorization configuration DHCPv6-PD group radius_authen1 aaa session-id common aaa policy interface-config allow-subinterface ppp hold-queue clock timezone EST -5 0 ip source-route no ip gratuitous-arps no ip domain lookup ip host mcp-matrix ip host mcp-sun ipv6 unicast-routing ipv6 dhcp binding track ppp ipv6 dhcp pool ipv6_dhcp_pool1 prefix-delegation aaa method-list DHCPv6-PD multilink bundle-name authenticated vpdn enable vpdn-group VPDN_LNS1 accept-dialin 23

24 Example Managed IPv6 LNS Configuration Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server protocol l2tp virtual-template 1 terminate-from hostname test_lac1 source-ip local name test_lns1 l2tp tunnel password 0 tunnel1 l2tp tunnel receive-window 100 l2tp tunnel timeout no-session 30 l2tp tunnel retransmit retries 7 l2tp tunnel retransmit timeout min 2 no virtual-template snmp username asifp1@test1 password 0 hello1 redundancy notification-timer mode none ip tftp source-interface GigabitEthernet 0 interface Loopback1 no ip address interface Loopback20000 ip address interface GigabitEthernet1/1/0 mac-address no ip address load-interval 30 negotiation auto hold-queue 4096 in hold-queue 4096 out interface GigabitEthernet1/1/0.1 encapsulation dot1q 3 ip address interface GigabitEthernet1/1/1 mac-address no ip address load-interval 30 no negotiation auto hold-queue 4096 in hold-queue 4096 out interface GigabitEthernet1/1/1.1 vrf forwarding user_vrf1 encapsulation dot1q 2 ipv6 address 12::1/72 interface GigabitEthernet1/1/2 24

25 Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Example Managed IPv6 LNS Configuration no ip address negotiation auto interface GigabitEthernet1/1/3 no ip address negotiation auto interface GigabitEthernet1/1/4 no ip address negotiation auto interface GigabitEthernet1/1/5 no ip address negotiation auto interface GigabitEthernet1/1/6 no ip address negotiation auto interface GigabitEthernet1/1/7 description Connected to RADIUS ip address negotiation auto interface GigabitEthernet1/3/0 no ip address media-type sfp negotiation auto interface GigabitEthernet1/3/1 no ip address media-type sfp negotiation auto interface GigabitEthernet 0 vrf forwarding Mgmt-intf ip address negotiation auto interface Virtual-Template 1 no ip address no logging event link-status ipv6 dhcp server ipv6_dhcp_pool1 rapid-commit keepalive 30 ppp mtu adaptive ppp authentication pap ip default-gateway ip forward-protocol nd no ip http server no ip http secure-server ip route vrf Mgmt-intf ip route vrf Mgmt-intf ip radius source-interface GigabitEthernet1/1/7 logging esm config cdp run ipv6 route vrf user_vrf1 ::/0 12::2 ipv6 neighbor 12::2 GigabitEthernet1/1/ control-plane call admission limit 90 alias exec call show caller summ alias exec caller show caller summ alias exec palt show plat 25

26 Example LNS Tunnel Accounting Configuration Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server alias exec plat show platform alias exec evsi sho plat hard cpp act feat ess stat line con 0 exec-timeout 0 0 stopbits 1 line vty 0 4 exec-timeout 0 0 password password1 exception data-corruption buffer truncate end Example LNS Tunnel Accounting Configuration The following example shows how to configure the LNS to send tunnel accounting records to the RADIUS server: aaa new-model aaa accounting network m1 start-stop group radius aaa accounting network m2 stop-only group radius aaa session-id common enable secret 5 $1$ftf.$wE6Q5Yv6hmQiwL9pizPCg1 username ENT_LNS password 0 tunnelpass username user1@example.com password 0 lab username user2@example.com password 0 lab spe 1/0 1/7 firmware location system:/ucode/mica_port_firmware spe 2/0 2/9 firmware location system:/ucode/mica_port_firmware resource-pool disable clock timezone est 2 ip subnet-zero no ip domain-lookup ip host CALLGEN-SECURITY-V ip host dirt vpdn enable vpdn tunnel accounting network m1 vpdn session accounting network m1 vpdn-group 1 accept-dialin protocol l2tp virtual-template 1 terminate-from hostname ISP_LAC local name ENT_LNS isdn switch-type primary-5ess fax interface-type modem mta receive maximum-recipients 0 interface Loopback 0 ip address interface Loopback 1 ip address interface Ethernet 0 ip address no ip mroute-cache 26

27 Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Example Verifying the User Profile on the RADIUS Server no cdp enable interface virtual-template 1 ip unnumbered Loopback 0 peer default ip address pool vpdn-pool1 ppp authentication chap interface virtual-template 2 ip unnumbered Loopback1 peer default ip address pool vpdn-pool2 ppp authentication chap interface fastethernet 0 no ip address no ip mroute-cache shutdown duplex auto speed auto no cdp enable ip local pool vpdn-pool ip local pool vpdn-pool ip default-gateway ip classless ip route ip route no ip http server ip pim bidir-enable dialer-list 1 protocol ip permit no cdp run radius-server host auth-port 1645 acct-port 1646 key rad123 radius-server retransmit 3 call rsvp-sync end Note For additional accounting examples, see the Configuring Accounting chapter in the Cisco IOS XE Security: Secure Services Configuration Guide. Example Verifying the User Profile on the RADIUS Server The following is an example user profile on the RADIUS server. The Cisco ASR 1000 Series Aggregation Services Routers retrieves the information in the user profile from the RADIUS server. Radius Profile "user1" Auth-Type = Local, User-Password = "pwd" User-Service-Type = Framed-User Framed-Protocol = PPP cisco-avpair = "lcp:interface-config=vrf forwarding VRF01" cisco-avpair = "lcp:interface-config=ipv6 unnumbered loopback1" Framed-IPv6-Prefix = "2001:DB8:4567:1234::/64" Delegated-IPv6-Prefix = "2001:DB8:AAAA::/48" 27

28 Additional References Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Additional References Related Documents Related Topic Cisco IOS commands Cisco IOS XE MPLS commands Authentication, authorization and accounting Configuring RADIUS Configuring accounting RADIUS attributes Document Title Cisco IOS Master Commands List, All Releases Cisco IOS MPLS Command Reference Authentication, Authorization, and Accounting (AAA) Configuring RADIUS Configuring Accounting RADIUS Attributes Overview and RADIUS IETF Attributes module in the Cisco IOS XE Security Configuration Guide: Securing User Services Standards Standard No new or modified standards are supported, and support for existing standards has not been modified. Title MIBs MIB No new or modified MIBs are supported, and support for existing MIBs has not been modified. MIBs Link To locate and download MIBs for selected platforms, Cisco software releases, and feature sets, use Cisco MIB Locator found at the following URL: RFCs RFC RFC 2867 Title RADIUS Accounting Modifications for Tunnel Protocol Support 28

29 Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Feature Information for Configuring Managed IPv6 Layer 2 Tunnel Protocol Network Server Technical Assistance Description The Cisco Support and Documentation website provides online resources to download documentation, software, and tools. Use these resources to install and configure the software and to troubleshoot and resolve technical issues with Cisco products and technologies. Access to most tools on the Cisco Support and Documentation website requires a Cisco.com user ID and password. Link Feature Information for Configuring Managed IPv6 Layer 2 Tunnel Protocol Network Server The following table provides release information about the feature or features described in this module. This table lists only the software release that introduced support for a given feature in a given software release train. Unless noted otherwise, subsequent releases of that software release train also support that feature. Use Cisco Feature Navigator to find information about platform support and Cisco software image support. To access Cisco Feature Navigator, go to An account on Cisco.com is not required. Table 2: Feature Information for Managed IPv6 Layer 2 Tunnel Protocol Network Server Feature Name Managed IPv6 Layer 2 Tunnel Protocol Network Server Releases Cisco IOS XE Release 3.3S Feature Information The Managed IPv6 LNS feature allows the service provider to offer a scalable end-to-end VPN of both IPv4 and IPv6 service to remote users. This feature integrates the Multiprotocol Label Switching (MPLS)-enabled backbone with broadband access capabilities. The following commands were introduced or modified: atm pppatm passive, radius-server attribute list, radius-server key, radius-server retransmit, radius-server vsa send. 29

30 Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Feature Information for Configuring Managed IPv6 Layer 2 Tunnel Protocol Network Server Feature Name Managed IPv6 Layer 2 Tunnel Protocol Network Server - VRF-Lite only Managed IPv6 Layer 2 Tunnel Protocol Network Server - MPLS VPN Releases Cisco IOS XE Release 3.3S Cisco IOS XE Release 3.7S Feature Information The Managed IPv6 LNS feature allows the service provider to offer a scalable end-to-end VPN of both IPv4 and IPv6 service to remote users. This feature integrates the VRF-Lite enabled backbone with broadband access capabilities. The Managed IPv6 LNS feature allows the service provider to offer a scalable end-to-end VPN of both IPv4 and IPv6 service to remote users. This feature integrates the MPLS enabled backbone with broadband access capabilities. 30

Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server

Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Configuring the Managed IPv6 Layer 2 Tunnel Protocol Network Server Last Updated: November 29, 2011 This document describes how to enable the Managed IPv6 Layer 2 Tunnel Protocol Network Server feature.

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

Configuring NAS-Initiated Dial-In VPDN Tunneling

Configuring NAS-Initiated Dial-In VPDN Tunneling Configuring NAS-Initiated Dial-In VPDN Tunneling Network access server (NAS)-initiated dial-in tunneling provides secure tunneling of a PPP session from a NAS to a tunnel server without any special knowledge

More information

Configuring the Physical Subscriber Line for RADIUS Access and Accounting

Configuring the Physical Subscriber Line for RADIUS Access and Accounting Configuring the Physical Subscriber Line for RADIUS Access and Accounting Configuring a physical subscriber line for RADIUS Access and Accounting enables an L2TP access concentrator (LAC) and an L2TP network

More information

Configuring Modem Transport Support for VoIP

Configuring Modem Transport Support for VoIP Configuring Modem Transport Support for VoIP This chapter explains how to configure modem transport support for Voice over IP (VoIP) and contains the following sections: Modem Transport Support Overview,

More information

L2TP IPsec Support for NAT and PAT Windows Clients

L2TP IPsec Support for NAT and PAT Windows Clients L2TP IPsec Support for NAT and PAT Windows Clients The L2TP IPsec Support for NAT and PAT Windows Clients feature allows mulitple Windows client to connect to an IPsec-enabled Cisco IOS Layer 2 Tunneling

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

RADIUS Tunnel Attribute Extensions

RADIUS Tunnel Attribute Extensions The feature allows a name to be specified (other than the default) for the tunnel initiator and the tunnel terminator in order to establish a higher level of security when setting up VPN tunneling. Finding

More information

Implementing ADSL and Deploying Dial Access for IPv6

Implementing ADSL and Deploying Dial Access for IPv6 Implementing ADSL and Deploying Dial Access for IPv6 Last Updated: July 31, 2012 Finding Feature Information, page 1 Restrictions for Implementing ADSL and Deploying Dial Access for IPv6, page 1 Information

More information

PPPoE Session Limit per NAS Port

PPPoE Session Limit per NAS Port PPPoE Session Limit per NAS Port First Published: March 17, 2003 Last Updated: February 28, 2006 The PPPoE Session Limit per NAS Port feature enables you to limit the number of PPP over Ethernet (PPPoE)

More information

Broadband Access Aggregation and DSL Configuration Guide, Cisco IOS XE Release 3S

Broadband Access Aggregation and DSL Configuration Guide, Cisco IOS XE Release 3S Broadband Access Aggregation and DSL Configuration Guide, Cisco IOS XE Release 3S Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408

More information

RADIUS Logical Line ID

RADIUS Logical Line ID The feature, also known as the Logical Line Identification (LLID) Blocking feature enables administrators to track their customers on the basis of the physical lines on which customer calls originate.

More information

Configuring the Physical Subscriber Line for RADIUS Access and Accounting

Configuring the Physical Subscriber Line for RADIUS Access and Accounting Configuring the Physical Subscriber Line for RADIUS Access and Accounting Last Updated: December 5, 2011 Configuring a physical subscriber line for RADIUS Access and Accounting enables an L2TP access concentrator

More information

DHCP Server RADIUS Proxy

DHCP Server RADIUS Proxy The Dynamic Host Configuration Protocol (DHCP) Server RADIUS Proxy is a RADIUS-based address assignment mechanism in which a DHCP server authorizes remote clients and allocates addresses based on replies

More information

Configuring Client-Initiated Dial-In VPDN Tunneling

Configuring Client-Initiated Dial-In VPDN Tunneling Configuring Client-Initiated Dial-In VPDN Tunneling Client-initiated dial-in virtual private dialup networking (VPDN) tunneling deployments allow remote users to access a private network over a shared

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

RADIUS Attribute 66 Tunnel-Client-Endpoint Enhancements

RADIUS Attribute 66 Tunnel-Client-Endpoint Enhancements RADIUS Attribute 66 Tunnel-Client-Endpoint The RADIUS Attribute 66 (Tunnel-Client-Endpoint) feature allows the hostname of the network access server (NAS) to be specified--rather than the IP address of

More information

Broadband Scalability and Performance

Broadband Scalability and Performance The infrastructure of a service provider must be capable of supporting the services that an enterprise customer or Internet service provider (ISP) wants to offer its subscribers. The service provider must

More information

Configuring Scalable Hub-and-Spoke MPLS VPNs

Configuring Scalable Hub-and-Spoke MPLS VPNs Configuring Scalable Hub-and-Spoke MPLS VPNs Last Updated: December 15, 2011 This module explains how to ensure that virtual private network (VPN) clients that connect to the same provider edge (PE) router

More information

Basic Router Configuration

Basic Router Configuration This section includes information about some basic router configuration, and contains the following sections: Default Configuration, on page 1 Configuring Global Parameters, on page 2 Configuring Gigabit

More information

Broadband High Availability Stateful Switchover

Broadband High Availability Stateful Switchover Broadband High Availability Stateful Switchover The Cisco IOS XE Broadband High Availability Stateful Switchover feature provides the capability for dual Route Processor systems to support stateful switchover

More information

AAA Support for IPv6

AAA Support for IPv6 Authentication, authorization, and accounting (AAA) support for IPv6 is in compliance with RFC 3162. This module provides information about how to configure AAA options for IPv6. Finding Feature Information,

More information

virtual-template virtual-template template-number no virtual-template Syntax Description

virtual-template virtual-template template-number no virtual-template Syntax Description VPDN Commands virtual-template virtual-template To specify which virtual template will be used to clone virtual access interfaces (VAI), use the virtual-template command in BBA group configuration mode

More information

QoS: Classification, Policing, and Marking on LAC Configuration Guide, Cisco IOS Release 12.4T

QoS: Classification, Policing, and Marking on LAC Configuration Guide, Cisco IOS Release 12.4T QoS: Classification, Policing, and Marking on LAC Configuration Guide, Cisco IOS Release 12.4T Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

SSG Configuration Example

SSG Configuration Example APPENDIX A Example A-1 is a sample SSG configuration for the Cisco 10000 series router based on the topology in Figure A-1. The configuration includes AAA, PPP, SSG, and RADIUS. The SSG configuration enables

More information

VPDN Tunnel Management

VPDN Tunnel Management VPDN Tunnel Management Finding Feature Information VPDN Tunnel Management Last Updated: July 22, 2011 This module contains information about managing virtual private dialup network (VPDN) tunnels and monitoring

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

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

This feature was introduced.

This feature was introduced. Feature History Release 12.2(11)T Modification This feature was introduced. This document describes the QSIG for TCL IVR (Tool Language Interactive Voice Response) 2.0 feature in and includes the following

More information

Per VRF AAA. Finding Feature Information. Last Updated: January 18, 2012

Per VRF AAA. Finding Feature Information. Last Updated: January 18, 2012 Per VRF AAA Last Updated: January 18, 2012 The Per VRF AAA feature allows ISPs to partition authentication, authorization, and accounting (AAA) services on the basis of Virtual Private Network (VPN) routing

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

Configuring RADIUS. Finding Feature Information. Prerequisites for RADIUS

Configuring RADIUS. Finding Feature Information. Prerequisites for RADIUS The RADIUS security system is a distributed client/server system that secures networks against unauthorized access. In the Cisco implementation, RADIUS clients run on Cisco devices and send authentication

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

Configuring the Layer 2 Tunnel Protocol Access Concentrator and Network Server

Configuring the Layer 2 Tunnel Protocol Access Concentrator and Network Server CHAPTER 5 Configuring the Layer 2 Tunnel Protocol Access Concentrator and Network Server The Cisco 10000 series router supports the Layer 2 Tunnel Protocol (L2TP) to allow users and telecommuters to connect

More information

thus, the newly created attribute is accepted if the user accepts attribute 26.

thus, the newly created attribute is accepted if the user accepts attribute 26. Remote Authentication Dial-In User Service (RADIUS) attributes are used to define specific authentication, authorization, and accounting (AAA) elements in a user profile, which is stored on the RADIUS

More information

Broadband Access Aggregation and DSL Configuration Guide, Cisco IOS XE Fuji 16.8.x

Broadband Access Aggregation and DSL Configuration Guide, Cisco IOS XE Fuji 16.8.x Broadband Access Aggregation and DSL Configuration Guide, Cisco IOS XE Fuji 16.8.x Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel:

More information

RADIUS Attributes. RADIUS IETF Attributes

RADIUS Attributes. RADIUS IETF Attributes Remote Authentication Dial-In User Service (RADIUS) attributes are used to define specific authentication, authorization, and accounting (AAA) elements in a user profile, which is stored on the RADIUS

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

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 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 Authorization

Configuring Authorization The AAA authorization feature is used to determine what a user can and cannot do. When AAA authorization is enabled, the network access server uses information retrieved from the user s profile, which

More information

Broadband Access Aggregation and DSL Configuration Guide, Cisco IOS XE Fuji 16.7.x

Broadband Access Aggregation and DSL Configuration Guide, Cisco IOS XE Fuji 16.7.x Broadband Access Aggregation and DSL Configuration Guide, Cisco IOS XE Fuji 16.7.x Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel:

More information

Call Flows for 3G and 4G Mobile IP Users

Call Flows for 3G and 4G Mobile IP Users This chapter provides various call flows for 3G and 4G mobile IP users, and contains the following sections: Finding Feature Information, on page 1 3G DHCP Discover Call Flow, on page 1 4G DHCP Discover

More information

Broadband Access Aggregation and DSL Configuration Guide, Cisco IOS XE Release 3S (ASR 1000)

Broadband Access Aggregation and DSL Configuration Guide, Cisco IOS XE Release 3S (ASR 1000) Broadband Access Aggregation and DSL Configuration Guide, Cisco IOS XE Release 3S (ASR 1000) Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

Configuring a Cisco 827 Router to Support PPPoE Clients, Terminating on a Cisco 6400 UAC

Configuring a Cisco 827 Router to Support PPPoE Clients, Terminating on a Cisco 6400 UAC Configuring a Cisco 827 Router to Support PPPoE Clients, Terminating on a Cisco 6400 UAC Document ID: 12889 Contents Introduction Before You Begin Conventions Prerequisites Components Used Configure Network

More information

Finding Feature Information

Finding Feature Information The feature provides PPP over Ethernet (PPPoE) client support on routers. PPPoE is a commonly used application in the deployment of digital subscriber lines (DSLs). The PPP over Ethernet Client feature

More information

Encrypted Vendor-Specific Attributes

Encrypted Vendor-Specific Attributes The feature provides users with a way to centrally manage filters at a RADIUS server and supports the following types of string vendor-specific attributes (VSAs): Tagged String VSA, on page 2 (similar

More information

Configuring PPP over Ethernet with NAT

Configuring PPP over Ethernet with NAT CHAPTER 3 The Cisco Secure Router 520 Ethernet-to-Ethernet routers support Point-to-Point Protocol over Ethernet (PPPoE) clients and network address translation (NAT). Multiple PCs can be connected to

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

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

Configure IOS-XE to display full show running-config for users with low Privilege Levels

Configure IOS-XE to display full show running-config for users with low Privilege Levels Configure IOS-XE to display full show running-config for users with low Privilege Levels Contents Introduction Prerequisites Requirements Components Used Configuration Problem Configuration Solution and

More information

thus, the newly created attribute is accepted if the user accepts attribute 26.

thus, the newly created attribute is accepted if the user accepts attribute 26. Remote Authentication Dial-In User Service (RADIUS) attributes are used to define specific authentication, authorization, and accounting (AAA) elements in a user profile, which is stored on the RADIUS

More information

Configuring Secure Shell

Configuring Secure Shell Configuring Secure Shell Last Updated: October 24, 2011 The Secure Shell (SSH) feature is an application and a protocol that provides a secure replacement to the Berkeley r-tools. The protocol secures

More information

RADIUS Route Download

RADIUS Route Download The feature allows users to configure their network access server (NAS) to direct RADIUS authorization. Finding Feature Information, page 1 Prerequisites for, page 1 Information About, page 1 How to Configure,

More information

The MSCHAP Version 2 feature (introduced in Cisco IOS Release 12.2(2)XB5) allows Cisco routers to

The MSCHAP Version 2 feature (introduced in Cisco IOS Release 12.2(2)XB5) allows Cisco routers to The feature (introduced in Cisco IOS Release 12.2(2)XB5) allows Cisco routers to utilize Microsoft Challenge Handshake Authentication Protocol Version 2 (MSCHAP V2) authentication for PPP connections between

More information

AAA Server Groups. Finding Feature Information. Information About AAA Server Groups. AAA Server Groups

AAA Server Groups. Finding Feature Information. Information About AAA Server Groups. AAA Server Groups Configuring a device to use authentication, authorization, and accounting (AAA) server groups provides a way to group existing server hosts. Grouping existing server hosts allows you to select a subset

More information

PPP over Frame Relay

PPP over Frame Relay The feature allows a router to establish end-to-end Point-to-Point Protocol (PPP) sessions over Frame Relay. Finding Feature Information, page 1 Prerequisites for, page 1 Restrictions for, page 2 Information

More information

MLDP In-Band Signaling/Transit Mode

MLDP In-Band Signaling/Transit Mode This module contains information for configuring Multicast Label Distribution Protocol (MLDP) in-band signaling to enable the MLDP core to create (S,G) or (*,G) state without using out-of-band signaling

More information

RADIUS Vendor-Specific Attributes (VSA) and RADIUS Disconnect-Cause Attribute Values

RADIUS Vendor-Specific Attributes (VSA) and RADIUS Disconnect-Cause Attribute Values RADIUS Vendor-Specific Attributes (VSA) and RADIUS Disconnect-Cause Attribute Values First Published: September 23, 2005 Last Updated: August 18, 2010 The Internet Engineering Task Force (IETF) draft standard

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

Autosense for ATM PVCs and MUX SNAP Encapsulation

Autosense for ATM PVCs and MUX SNAP Encapsulation Autosense for ATM PVCs and MUX SNAP Encapsulation The PPPoA/PPPoE Autosense for ATM PVCs feature enables a router to distinguish between incoming PPP over ATM (PPPoA) and PPP over Ethernet (PPPoE) over

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

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

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

Dynamic Domain Name Server Updates

Dynamic Domain Name Server Updates CHAPTER 9 This chapter discusses DNS update methods and Server Address assignment, and provides configuration details of those features. This chapter contains the following sections: IP Reachability, page

More information

RADIUS for Multiple UDP Ports

RADIUS for Multiple UDP Ports RADIUS security servers are identified on the basis of their hostname or IP address, hostname and specific UDP port numbers, or IP address and specific UDP port numbers. The combination of the IP address

More information

Configuring PPP over Ethernet with NAT

Configuring PPP over Ethernet with NAT This chapter provides an overview of Point-to-Point Protocol over Ethernet (PPPoE) clients and network address translation (NAT) that can be configured on the Cisco 819, Cisco 860, Cisco 880, and Cisco

More information

RADIUS Commands. Cisco IOS Security Command Reference SR

RADIUS Commands. Cisco IOS Security Command Reference SR RADIUS Commands This chapter describes the commands used to configure RADIUS. RADIUS is a distributed client/server system that secures networks against unauthorized access. In the Cisco implementation,

More information

Configuring Layer 2 Tunneling Protocol (L2TP) over IPSec

Configuring Layer 2 Tunneling Protocol (L2TP) over IPSec Configuring Layer 2 Tunneling Protocol (L2TP) over IPSec Document ID: 14122 Introduction Prerequisites Requirements Components Used Conventions Configure Network Diagram Configurations Verify Troubleshoot

More information

Lab 8.5.2: Troubleshooting Enterprise Networks 2

Lab 8.5.2: Troubleshooting Enterprise Networks 2 Lab 8.5.2: Troubleshooting Enterprise Networks 2 Topology Diagram Addressing Table Device Interface IP Address Subnet Mask Default Gateway Fa0/0 192.168.10.1 255.255.255.0 N/A R1 Fa0/1 192.168.11.1 255.255.255.0

More information

PPPoE on ATM. Finding Feature Information. Prerequisites for PPPoE on ATM. Restrictions for PPPoE on ATM

PPPoE on ATM. Finding Feature Information. Prerequisites for PPPoE on ATM. Restrictions for PPPoE on ATM This feature module describes the PPP over Ethernet (PPPoE) on ATM feature. The feature provides the ability to connect a network of hosts over a simple bridging-access device to a remote access concentrator.

More information

MPLS VPN Multipath Support for Inter-AS VPNs

MPLS VPN Multipath Support for Inter-AS VPNs The feature supports Virtual Private Network (VPN)v4 multipath for Autonomous System Boundary Routers (ASBRs) in the interautonomous system (Inter-AS) Multiprotocol Label Switching (MPLS) VPN environment.

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

Monitoring PPPoE Sessions with SNMP

Monitoring PPPoE Sessions with SNMP The PPPoE Session Count Management Information Base feature provides the ability to use Simple Network Management Protocol (SNMP) to monitor in real time the number of PPP over Ethernet (PPPoE) sessions

More information

Configuring Dynamic Addressing on the GGSN

Configuring Dynamic Addressing on the GGSN CHAPTER 11 This chapter describes how to configure dynamic IP addressing on the gateway GRPS support node (GGSN). The tasks in this chapter apply to IPv4 PDP contexts only. For information on IPv6 addressing,

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

Configuring DHCP Services for Accounting and Security

Configuring DHCP Services for Accounting and Security Configuring DHCP Services for Accounting and Security Cisco IOS XE software supports several capabilities that enhance DHCP security, reliability, and accounting in Public Wireless LANs (PWLANs). This

More information

Implementing Traffic Filters for IPv6 Security

Implementing Traffic Filters for IPv6 Security Implementing Traffic Filters for IPv6 Security Last Updated: November 14, 2011 This module describes how to configure Cisco IOS XE IPv6 traffic filter and firewall features for your Cisco networking devices.

More information

Lawful Intercept Architecture

Lawful Intercept Architecture The Lawful Intercept (LI) feature supports service providers in meeting the requirements of law enforcement agencies (LEA) to provide electronic surveillance as authorized by a judicial or administrative

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

BGP mvpn BGP safi IPv4

BGP mvpn BGP safi IPv4 The BGP mvpn BGP safi 129 IPv4 feature provides the capability to support multicast routing in the service provider s core IPv4 network This feature is needed to support BGP-based MVPNs BGP MVPN provides

More information

VLANs over IP Unnumbered SubInterfaces

VLANs over IP Unnumbered SubInterfaces The VLANs over IP Unnumbered Subinterfaces feature allows IP unnumbered interface support to be configured on Ethernet VLAN subinterfaces. This feature also provides support for DHCP on VLAN subinterfaces.

More information

Assigning a Home Address on the Home Agent

Assigning a Home Address on the Home Agent CHAPTER 4 This chapter discusses how the Cisco Mobile Wireless Home Agent assigns home addresses to a mobile node, the different address types, and provides configuration details and examples. This chapter

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

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

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

Using the Management Interfaces

Using the Management Interfaces The following management interfaces are provided for external users and applications: Gigabit Ethernet Management Interface, page 1 SNMP, page 7 Gigabit Ethernet Management Interface Gigabit Ethernet Management

More information

IPsec Anti-Replay Window Expanding and Disabling

IPsec Anti-Replay Window Expanding and Disabling IPsec Anti-Replay Window Expanding and Disabling Cisco IP security (IPsec) authentication provides anti-replay protection against an attacker duplicating encrypted packets by assigning a unique sequence

More information

Sample Business Ready Branch Configuration Listings

Sample Business Ready Branch Configuration Listings APPENDIX A Sample Business Ready Branch Configuration Listings The following is a sample configuration of a Business Ready Branch. There are many permutations of feature combinations when setting up the

More information

Configuring TACACS. Finding Feature Information. Prerequisites for Configuring TACACS

Configuring TACACS. Finding Feature Information. Prerequisites for Configuring TACACS TACACS+ is a security application that provides centralized validation of users attempting to gain access to a router or network access server. TACACS+ provides detailed accounting information and flexible

More information

IP Tunneling. GRE Tunnel IP Source and Destination VRF Membership. Tunnel VRF CHAPTER

IP Tunneling. GRE Tunnel IP Source and Destination VRF Membership. Tunnel VRF CHAPTER CHAPTER 27 This chapter describes IP tunneling features implemented on the Cisco 10000 series routers and includes the following topics: GRE Tunnel IP Source and Destination VRF Membership, page 27-1 Restrictions

More information

Configuring Authorization

Configuring Authorization Configuring Authorization AAA authorization enables you to limit the services available to a user. When AAA authorization is enabled, the network access server uses information retrieved from the user

More information

Configuring Dynamic Multipoint VPN Using GRE Over IPsec With OSPF, NAT, and Cisco IOS Firewall

Configuring Dynamic Multipoint VPN Using GRE Over IPsec With OSPF, NAT, and Cisco IOS Firewall Configuring Dynamic Multipoint VPN Using GRE Over IPsec With OSPF, NAT, and Cisco IOS Firewall Document ID: 43068 Contents Introduction Prerequisites Requirements Components Used Conventions Configure

More information

IPv6 Switching: Provider Edge Router over MPLS

IPv6 Switching: Provider Edge Router over MPLS Multiprotocol Label Switching (MPLS) is deployed by many service providers in their IPv4 networks. Service providers want to introduce IPv6 services to their customers, but changes to their existing IPv4

More information

QoS: Per-Session Shaping and Queuing on LNS

QoS: Per-Session Shaping and Queuing on LNS QoS: Per-Session Shaping and Queuing on LNS First Published: February 28, 2006 The QoS: Per-Session Shaping and Queuing on LNS feature provides the ability to shape (for example, transmit or drop) or queue

More information

BGP Support for the L2VPN Address Family

BGP Support for the L2VPN Address Family BGP Support for the L2VPN Address Family Last Updated: November 21, 2012 BGP support for the Layer 2 Virtual Private Network (L2VPN) address family introduces a BGP-based autodiscovery mechanism to distribute

More information

Regulating Packet Flow on a Per-Interface Basis Using Generic Traffic Shaping

Regulating Packet Flow on a Per-Interface Basis Using Generic Traffic Shaping Regulating Packet Flow on a Per-Interface Basis Using Generic Traffic Shaping Packet flow on a network can be regulated using a traffic shaping mechanism. One such traffic shaping mechanism is a Cisco

More information

Secure Shell Configuration Guide, Cisco IOS Release 15M&T

Secure Shell Configuration Guide, Cisco IOS Release 15M&T 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

Configuring RADIUS. Finding Feature Information. Prerequisites for RADIUS. Last Updated: November 2, 2012

Configuring RADIUS. Finding Feature Information. Prerequisites for RADIUS. Last Updated: November 2, 2012 Configuring RADIUS Last Updated: November 2, 2012 The RADIUS security system is a distributed client/server system that secures networks against unauthorized access. In the Cisco implementation, RADIUS

More information