on 05-26-2011 06:52 AM
In access deployments using RADIUS, during the access-accept we can pass reply items back to the NAS which allows us to configure per user configuration to alter the base template config or to apply extra features. These features normally can't change since RADIUS on itself doesn't allow for reauthorization. For that purpose COA (Change of Authorization) was developed allowing an active session to have its configuration changed based on effectively a new set of reply items that are downloaded to the NAS.
** Download a COA client for windows, MAC or linux below **
Latest version is v3.1 January 2017
The words NAS (network access server), BRAS (Broadband Remote Access Server) and BNG (Broadband next generation) are used interchangeably, they all refer to the same concept of aggregating subscribers.
Typically NAS is used in modem access scenarios, BRAS for PPPoA and PPPoE termination whereas BNG involves the concept of subscriber policies along with IP session termination (including PPPoX).
RADIUS servers are available in open source format on the web, for instance Livingston Radius server or Free Radius server are very popular. Also vendors have provided their own RADIUS servers such as Cisco Secure ACS. However there is not a wide variaty of COA tools out there unless they come with a "portal" type implementation in which COA is generally leveraged a lot. In this article I am presenting a COA tool that can be used from a normal linux station allowing you to pass a COA request to a NAS of your choice. The usage of the tool is explained as well as key parameters that you need to be providing in order to make a successful COA request.
What features can be changed via COA is highly dependant on the platform and software release that is being run. The COA tool will encapsulate your attributes and send them to the NAS, but it is the NAS's responsibility to apply the features and provide a proper status back on the implementation of it.
The minimum configuration required for IOS looks like this
IOS
aaa server radius dynamic-author
client 3.0.0.38
client 3.0.0.1
server-key cisco
auth-type any
client determines from which source ip addresses we can accept a COA request. Sources not in the list will get ignored.
server-key is the encryption key to use for the MD5 authenticator computation and must match what the COA client will be using
auth-type defines which attributes are to be used for session identification.
For instance, if you provide the Accounting-Session-Id and Username the auth-type any means that the first session found that matches EITHER one of these check items will be subject to modification.
Auth-type ALL means that all check items much match
With 4.2.0 IOS-Xr for the ASR9000 will have BNG with COA support also. Here is the configuration required in IOS-XR:
IOS-XR
aaa server radius dynamic-author
port 1700
server-key cisco
auth-type any
client 3.0.0.38 vrf default server-key cisco
A global server key is possible as well as a per client type key is also configurable. The listen port is configurable (same in IOS config omitted, as port 1700 is default in IOS).
To target a specific session you can use various attributes such as Framed-IP-Address, User-Name or Accounting-Session-Id.
It is recommended to always specify the accounting-session-id (attribute 44), the reason for that is that this att references a single session on any BNG as this number must be unique. The internal code lookups are much faster with this attribute then using user-name or framed-ip-address as these result in a lineair walk. Also user-name and FIP (sessions with same ip addr in different vrf's) may not be unique on the device
To provide extra safety to make sure you are targetting the right session, you can configure the auth-type match-all and send Acct-Session-Id (44) as well as a username (1) to have a fast lookup AND the safety that this username is indeed the one that we had in mind altering.
You can lookup the accounting session id in the radius accountign records, but also in IOS or XR you can find the ID rather easily.
Note that the Accounting-Session-Id is generally a string that is perceived to be an integer.
In IOS the radius-record may prefix the acct-session-id STRING with a nas-port identifier like this:
Accounting Record
Thu May 26 10:22:59 2011
Acct-Session-Id = "1/0/0/100.1_000000BA"
Cisco-avpair = "ip:sub-qos-policy-out=briana"
Framed-Protocol = PPP
IOS will strip and only use the 8 right most digits as the accounting session ID. In COA requests you could omit all 0's and just use "BA" for the id, however at the time of writing ios-xr does a string match and wants to see the 8 digits all together.
Step 1: Find the subscriber of interest
NPE-G1#show subscr ses
Current Subscriber Information: Total sessions 1
Uniq ID Interface State Service Identifier Up-time
44 IP authen Local Term 0017.0e43.a1ac 00:00:29
45 Traffic-Cl unauthen Ltm Internal 00:00:29
46 Traffic-Cl unauthen Ltm Internal 00:00:29
NPE-G1#
Step 2: Take the subscribers internal ID and locate its record ID in the AAA databasre
NPE-G1#show subscr ses uid 44 det | i AAA_id
AAA_id 0000001B: Flow_handle 0
NPE-G1#
Step 3: Look into the AAA database for the found record to see what the accounting session id is.
For ISG sessions look at the Parent-Session-Id, for regular subscribers, look at the "session-id"
NPE-G1#sh aaa user 0x1B | i session-id
65684778 0 00000001 session-id(353) 4 48(30)
656848B0 0 00000001 session-id(353) 4 49(31)
656848F0 0 00000009 parent-session-id(352) 8 00000034
NPE-G1#
Step 1: Find the subscriber of interest:
RP/0/RSP1/CPU0:A9K-BOTTOM#show subscr sess all
Thu May 26 10:37:17.115 EDT
Codes: IN - Initialize, CN - Connecting, CD - Connected, AC - Activated,
ID - Idle, DN - Disconnecting, EN - End
Type Interface State Subscriber-IP
LNS Address
-------------------------------------------------------------------------
PPPoE:PTA BE1001.100.pppoe4 AC 199.1.1.9:default <<<
PPPoE:PTA BE1001.200.pppoe5 AC 199.1.1.10:RED
IP:DHCP BE1001.2.ip3 AC 172.28.15.14:default
PPPoE:LAC BE1001.300.pppoe6 AC 2.2.2.100
Step 2: Detail the subscriber interface
RP/0/RSP1/CPU0:A9K-BOTTOM#show subscriber session filter interface bundle-e1001.100.pppoe4 detail
Thu May 26 10:38:42.647 EDT
Interface: Bundle-Ether1001.100.pppoe4
Circuit ID: Unknown
Remote ID: "XTH_TEST"
Type: PPPoE:PTA
IP Address: 199.1.1.9, VRF: default
Mac Address: 000b.5f2c.ef01
Account-Session Id: 00000067
Nas-Port: Unknown
Username: test
Subscriber Label: 0x00000067
Created: Tue May 24 12:00:57 2011
State: Activated
Access-interface: Bundle-Ether1001.100
<output omitted>
The COA tool requires you to have a little bit of attribute knowledge in RADIUS, that is, the attributes are identified by their enummerated numbers rather then their name. Although you can look at a dictionary file (attached) to map them should you need that.
The options can be specified all via a CLI, or can be provided in flat config file for ease of use and easy scripting.
The tool supports POD (packet of disconnect) as well as COA requests.
options:
Option |
Explanation |
---|---|
-n <ip addr> | The IP address of the NAS that you want to send this COA request to |
-N <ipv6> | The IPv6 address of the NAS to be targeted (v3.0 new feature) either provide -n or -N |
-p <int> | The destination port on the NAS that is listening to COA requests (normally this is 1700) |
-k <string> | The secret-key that is used for the MD5 HASH computation, this must match the definition on the BNG/NAS router. |
-d | No sub argument needed, designates the tool to send a POD (packet of disconnect) request rather then a COA request. If the session is found it will get terminated. |
-t <integer> | By default the tool waits indefinitely for a response from the NAS. The timeout option allows you to wait a number of seconds before the tool exists |
-s <int> | Normally a random source port is selected by the tool that is used to originate the request and listen for a response. If you wish to specify the source port manually you can use this option. If there is a single COA request on station X already using source port Q and the tool is waiting for a response, then a second request cannot use source port Q if fired from the same station X. An error will be thrown (socket / bind error). |
-f <string> | Configuration file that holds the paramters described in a config file |
-0/1/2/3/4/5/6/7/8/9 |
The tool has the option for 6 attributes to be specified. The format is attribute_number,value The Value is always perceived to be a string value, that means if there are spaces involved, you need to embrace the string with quotes, eg 18,"this is a test string" If you like a certain value to be sent as an integer, for instance for the Session-Timeout (27), then prefix the value with the word INT example: 27,INT100 to send an integer value of 100 In case you need to send an ip address such as for Framed-IP-Address then prefix the ip with IP example: 8,IP255.255.255.254 You can use the sample dictionary file attached to lookup the Attribute name to number to type (int, ip, string) If you have an IPv6 Address for encoding, you can use the prefix V6 followed by the ipv6 address. example: 98,"V6fe80::260:1111:feff:ffff" Framed-IPv6-Prefix is automatically encoded (attribute 97). |
-e | Decode the response from the NAS into an attribute (integer) and value (string). |
-r [0-255] | Provide a static requestID, if omitted or out of bounds a random value is generated. |
-x | Extended debug output, follow what the tool is doing |
Note: The bold options must always be provided otherwise the tool can't continue.
The Tool has the ability to read values from a config file for ease of use. Sample config files will be provided below.
The following is the format of a config file:
ip-address=3.0.0.102
secret=cisco
destport=1700
attribute1=44,000029CD
attribute2=26,9,1,subscriber:command=account-logon
attribute3=26,9,1,subscriber:password=cisco
attribute4=1,xander
timeout=1
END
Keyword | CLI |
Description |
---|---|---|
ip-address |
-n |
the nas-ip address, the destination ip. |
ipv6-address | -N | the nas-ipv6 address, destination IP of the BNG |
secret | -k | secret key for md5 hash computation |
destport | -p | destination port to send the request to |
attribute0 (to 9) | -0 to -9 | the attributes to be encapsulated |
sourceport | -s | define the source port for the request (optional) |
timeout | -t | To set the timeout waiting for response (optional) |
END | n/a | To denote the END of the config file reading stops after seeing this keyword |
Note that parameters provided by CLI are NOT overwritten by the config file, so the config file has precedence, eg if secret is provided by cli using the -k CLIKEY and in the config file with secret=CFGKEY then the key used to hash is CFGKEY.
This section described how to format a VSA
The vendor-specific attribute nubmer is 26
Cisco's vendor ID is 9
Cisco has a few VSA's defined such as:
Cisco-avpair, which is vendor attribute 1
Cisco-nas-port, which is vendor attribute 2
A few SSG attributes:
ATTRIBUTE SSG-Account-Info 250 string Cisco
ATTRIBUTE SSG-Service-Info 251 string Cisco
ATTRIBUTE SSG-Command-Code 252 string Cisco
ATTRIBUTE SSG-Control-Info 253 string Cisco
Microsoft is vendor 311 and has 2 key attributes commonly used:
ATTRIBUTE MS-1st-NBNS-Server 30 ipaddr Microsoft
ATTRIBUTE MS-2nd-NBNS-Server 31 ipaddr Microsoft
To provide a vsa into the tool you use the following format:
-1 26,9,1,"ip:ip-unnumbered=Loopback 123"
to send cisco-avpair with the ip unnumbered info
ip-address=3.0.0.102
secret=cisco
destport=1700
attribute1=44,000029CD
attribute2=26,9,1,subscriber:command=account-logon
attribute3=26,9,1,subscriber:password=cisco
attribute4=1,xander
timeout=1
Adding a parent shaper and a child class with a priority queue policed
ip-address=3.0.0.234
secret=cisco
destport=1700
attribute1=44,000000df
attribute2=26,9,1,subscriber:command=account-update
attribute3=26,9,1,ip:qos-policy-out=add-class(sub, (class-default), shape(800))
attribute4=26,9,1,ip:qos-policy-out=add-class(sub,(class-default, 3play-voip), pri-level(1), police(256,8))
timeout=1
# ./coa_new -n 3.0.0.102 -p 1700 -k cisco -1 44,34 -2 26,9,1,"subscriber:command=account-logoff" -3 1,"0017.0e43.a1ac"
* VERSION 1.0 - first offical RELEASE
* version 1.1 - added random source port and transaction ID generation
* version 1.2 - added POD capability via the -d option
* version 1.3 - added capability for ssg account info converting
* serivce logoff 0C to binary 0x0C
* version 1.4 - added capability for ssg account info converting
* service logoff 0B to binary 0x0B
* version 1.5 - fixed bug in length field of attribute size
* version 1.6 - added session query 0x04
* version 1.7 - added timeout receive option -t
* version 1.8 - added manual source port configuration
* version 1.9 - detect integer strings and send them as int rather then string
* a string prefix of INT tells the program to treat value as int.
* version 1.10- detect ip prefixes and convert accordingly with IP1.2.3.4
* version 2.0 - ability to read config from file with -f
* version 2.1 - fixed subscriber:password length calculation in v2.0
* version 2.2 - improved hexdump, added code comments, cleaned up code
* version 2.3 - added ability to decode the COA/POD response attributes via -e
* user configurable requestID
* version 2.4 - config file parse chokes on empty line, fixed that issue
* version 2.5 - Adds support for VSA36 with SALT encryption
* version 2.6 - Fixed bug in salt length character
* version 2.7 - Added expanded source port range (+retry), increased attributes
* version 2.8 - Added IPV6 encoding capabilities via V6 prefix keyword
* version 2.9 - Fixed prefix length corruption crash attr 97
* version 3.0 - Added IPv6 transport for sending COA requests to the BNG
* version 3.1 - Fixed integer encoding to proper int formatting (4 bytes)
Disclaimer: this is not an official Cisco supported tool but merely provided to verify, demonstrate and integrate COA requests with.
I see this massage about these two files
can you fix it
coa_lin.Z.zip (20.2 K) BLOCKED: Virus detected
coa_mac.Z.zip (23.1 K) BLOCKED: Virus detected
Thanks
Nitzan
Nitzan, thanks for bringing that to my attention, I have fixed it up!
xander
Hi Xander,
Sorry for asking, but is there any chanse to get source of the CoA application?
Thanks
Hi,
this question has come up before. It is not official open source (yet). Although it is not an official Cisco (supported) or provided application, i am investigating with our legal department how to provide source for home grown tools like this.
At this point in time I dont have that authorization to distribute source. But you are free to use the tool for integration in your scripts, portals, testing or whatever other purpose you may have.
xander
Thank you very much.
Hi Xander,
I have a question regarding your coa tool. I am building a similar tool just instead of calling your tool the packets get generated in PHP (once I finish it I am willing to share the code with other people who need it).
My question is regarding the authenticator request field. How do you generate it? Could you give me an example or more details, please? I have found the following online: md5( chr(43) . chr(154) . chr(116) . str_repeat(chr(0),16) . $request_attributes . "secret");
where CoARequest=43
Packet identifier=154
Packet length=116
Repeated 16 octets of a zero
Shared secret key: secret
$request_attributes ? what are they? Just the value of the included fields? The dots between the variables and constants is used to concatenate everything.
Thank you. I hope you can help me out with an example!
Best regards,
Refik Hadzialic
Hi Refik,
the procedure is as follows. It is probably easiest to define a struct for the Radius header:
typedef struct pw_auth_hdr {
u_char code;
u_char id;
u_short length;
u_char vector[AUTH_VECTOR_LEN];
u_char data[4096];
} AUTH_HDR;
First set the vector to all zero's (or better yet, memset the whole structure to zero when you allocate it).
Then fill in all the data, attributes, length, code, ID etc.
Then append the secret to the structure's end of data (omitting the zero's from the data portion (so no padding).
then call the MD5 routines to compute the authenticator and put it back in teh authenticator field with a memcpy.
Does that help?
regards
xander
Dear Xander,
thanks a lot for your help! Even a hint helps a lot when you are new in the field, therefore your support means a lot to a new employee. I followed your steps and I recreated it in C/C++, once I get the correct results I can easily port it to PHP or any other programming language which fits better our deployed solution.
However I don't get the same hash as compared to your coa tool. I used the packet generated by your coa tool (it is in the source code) for the sake of comparing the two resulting hashes. I guess I didn't insert correctly the data or it is a tiny misunderstanding on my side which we will solve together I hope.
I coppied my source code to paste bin http://pastebin.com/9Dxrid81 and the output result (hash). Instead of 4096, I used 102 because I thought the length of the packet is attributes.length() + secret.length() = 96+6 since you said to omitt the zeros. Once I get it to work I will make a proper version without mechanically writing all the data and dynamically allocating the memory. On line 62 I substracted 1 from the size of the secret variable as you know C adds a 0 to denote end of the string. I hope my messy code is readable and I explained what I did. The libraries which are used and the way to compile it is mentioned in the comments as well.
Thanks a lot Xander for your help!
Best regards,
Refik
Hi Refik,
I see a few issues based on a quick glance; depending on the processor type that you are compiling it for, the length
field in the radius header maybe needs to be endian converted.
Also, your packet length is signaled in the header at 0x74, but you are appending the secret at position 96?
Probably best to use a strlen secret too in line 62.
On line 69 you forgot to add the length fo the secret to the buffer length
Probably best to do a memcopy to put the md5 vector into the auth header. You are converting the hex md5 digit to a 2byte string value, or is that just for displaying? (looks like it right?)
cheers
xander
Hi Xander,
thanks a lot. The issue was with the endian notation as you said, my computer stores the variables in little endian while it was required to be in big endian. Thanks once again, without your help I would probably spend a great amount of time looking for the bug!
Best regards,
Refik
Hi, Xander:
Is there a way (command) to force a ip session to completely terminate, like the service disconnect command on ASR1k?
We're trying to completely disconnect a customer when a certain timer expires and try to force a reauthentication/reauthorization process.
------------
example on ASR1k:
policy-map type control ipsession
class type control always event session-start
10 set-timer timer 1440
20 authorize aaa list ipsession password isg identifier mac-address
30 service disconnect
!
class type control always event session-restart
10 set-timer timer 1440
20 authorize aaa list ipsession password isg identifier mac-address
!
class type control always event timed-policy-expiry
1 service disconnect
---------------------------------------------------------
TIA,
c.
POD'ing an ip session is tricky right, because the client cant be signaled that we revoked their lease.
so we can destroy the subscr session and mark the binding, but that is dependent on the renewal rate of the lease from the client to rediscover.
Why not do it differently:
timed service. after time expiry apply back HTTP-R?!?!
xander
Hi, Xander:
The reason for trying to do this (and forgive me, I can't remember if I asked you this before) is that customer doesn't have CoA implementation. What they're trying to achieve is for a non-paying customer to get redirected to a portal, by chaging their RADIUS attributes every (say) night. What customer does is they 'sync' dhcp lease time with the policy timer so that session is disconnected at the same time that dhcp lease expires.
Every night a bot grabs non-paying customers MAC address and changes RADIUS atts, so that when that customer is forced to reauthenticate by timer/disconnect, the BRAS receives the atts necessary to redirect customer if it's determined to be behind on payment.
In ASR1k, this scheme seems to work pretty well. In ASR9k, however, looks like we will have to look at a different alternative, correct?
TIA,
c.
Hi Carlos, I would recommend the customer using COA for this as that is much smoother.
But either case, you can disconnect the session with a "clear subscriber" command, but that doesnt revoke the lease, it just marks the binding so on the next renewal from the client, it NAK's the request who will fall back to discover upon which radius will pull the new attributes.
What is interesting to me is that after that HTTP-R is applied, the user will get redirected, pay but how is the HTTP-R then removed if you dont have COA?
it sounds like this design/use case screams for COA.
Also, side note; a POD packet is really like a COA with a different code. So if they want to use POD, then might as well expand to COA.
But any case that is up to you, you know what the options are now
cheers!
xander
Then we agree on everything, Xander. Thanks for your time.
Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community: