RADIUS Options
The maximum length of MPPE keys.
Predefined Constants Constants
RADIUS_MPPE_KEY_LEN(int)The maximum length of MPPE keys.
RADIUS Options
Several RADIUS functions accept option flags as bitmasks. The constants representing those flags are listed below.
RADIUS_OPTION_SALT(int)When set, this option will result in the attribute value being salt-encrypted.
RADIUS_OPTION_TAGGED(int)When set, this option will result in the attribute value being tagged with the value of the tag parameter.
RADIUS Packet Types
RADIUS packets, whether requests or responses, always include a type. These constants are provided to make it easier to specify types when using radius_create_request() and when comparing the result of radius_send_request().
RADIUS_ACCESS_REQUEST(int)An Access-Request, used to authenticate a user against a RADIUS server. Access request packets must include a
RADIUS_NAS_IP_ADDRESSor aRADIUS_NAS_IDENTIFIERattribute, must also include aRADIUS_USER_PASSWORD,RADIUS_CHAP_PASSWORDor aRADIUS_STATEattribute, and should include aRADIUS_USER_NAMEattribute.RADIUS_ACCESS_ACCEPT(int)An Access-Accept response to an Access-Request indicating that the RADIUS server authenticated the user successfully.
RADIUS_ACCESS_REJECT(int)An Access-Reject response to an Access-Request indicating that the RADIUS server could not authenticate the user.
RADIUS_ACCESS_CHALLENGE(int)An Access-Challenge response to an Access-Request indicating that the RADIUS server requires further information in another Access-Request before authenticating the user.
RADIUS_ACCOUNTING_REQUEST(int)An Accounting-Request, used to convey accounting information for a service to the RADIUS server.
RADIUS_ACCOUNTING_RESPONSE(int)An Accounting-Response response to an Accounting-Request.
RADIUS_COA_REQUEST(int)A CoA-Request, sent from the RADIUS server to indicate that the authorisations within the user session have changed. A response must be sent in the form of a CoA-ACK or a CoA-NAK.
This constant is available in PECL radius 1.3.0 and later.
RADIUS_COA_ACK(int)A CoA-ACK, sent to the RADIUS server to indicate that the user authorisations have been updated.
This constant is available in PECL radius 1.3.0 and later.
RADIUS_COA_NAK(int)A CoA-NAK, sent to the RADIUS server to indicate that the user authorisations could not be updated.
This constant is available in PECL radius 1.3.0 and later.
RADIUS_DISCONNECT_REQUEST(int)A Disconnect-Request, sent from the RADIUS server to indicate that the user session must be terminated.
This constant is available in PECL radius 1.3.0 and later.
RADIUS_DISCONNECT_ACK(int)A Disconnect-ACK, sent to the RADIUS server to indicate that the user session has been terminated.
This constant is available in PECL radius 1.3.0 and later.
RADIUS_DISCONNECT_NAK(int)A Disconnect-NAK, sent to the RADIUS server to indicate that the user session could not be terminated.
This constant is available in PECL radius 1.3.0 and later.
RADIUS Attribute Types
These constants define RADIUS attribute types that can be used with radius_put_addr(), radius_put_attr(), radius_put_int() and radius_put_string().
RADIUS_USER_NAME(int)The User-Name attribute. The attribute value is expected to be a
stringcontaining the name of the user being authenticated, and can be set usingradius_put_attr().RADIUS_USER_PASSWORD(int)The User-Password attribute. The attribute value is expected to be a
stringcontaining the user's password, and can be set usingradius_put_attr(). This value will be obfuscated on transmission as described in section 5.2 of RFC 2865.RADIUS_CHAP_PASSWORD(int)The Chap-Password attribute. The attribute value is expected to be a
stringwith the first byte containing the CHAP identifier, and the subsequent 16 bytes containing the MD5 hash of the CHAP identifier, the plaintext password and the CHAP challenge value concatenated together. Note that the CHAP challenge value should also be sent separately in aRADIUS_CHAP_CHALLENGEattribute.Using CHAP passwords
php<?php // Firstly, we'll create an authentication handle and request. $radh = radius_auth_open(); radius_add_server($radh, $server, $port, $secret, 3, 3); radius_create_request($radh, RADIUS_ACCESS_REQUEST); // Assuming $password contains the plaintext password, we now: // Generate a challenge. $challenge = mt_rand(); // Specify a CHAP identifier. $ident = 1; // Add the Chap-Password attribute. $cp = hash('md5', pack('Ca*', $ident, $password.$challenge), true); radius_put_attr($radh, RADIUS_CHAP_PASSWORD, pack('C', $ident).$cp); // Add the Chap-Challenge attribute. radius_put_attr($radh, RADIUS_CHAP_CHALLENGE, $challenge); /* From here, you would add the remaining attributes and * call radius_send_request(). */ ?>RADIUS_NAS_IP_ADDRESS(int)The NAS-IP-Address attribute. The attribute value is expected to the IP address of the RADIUS client encoded as an
int, which can be set usingradius_put_addr().RADIUS_NAS_PORT(int)The NAS-Port attribute. The attribute value is expected to be the physical port of the user on the RADIUS client encoded as an
int, which can be set usingradius_put_int().RADIUS_SERVICE_TYPE(int)The Service-Type attribute. The attribute value indicates the service type the user is requesting, and is expected to be an
int, which can be set usingradius_put_int().A number of constants are provided to represent the possible values of this attribute. They include:
RADIUS_LOGINRADIUS_FRAMEDRADIUS_CALLBACK_LOGINRADIUS_CALLBACK_FRAMEDRADIUS_OUTBOUNDRADIUS_ADMINISTRATIVERADIUS_NAS_PROMPTRADIUS_AUTHENTICATE_ONLYRADIUS_CALLBACK_NAS_PROMPT
RADIUS_FRAMED_PROTOCOL(int)The Framed-Protocol attribute. The attribute value is expected to be an
intindicating the framing to be used for framed access, and can be set usingradius_put_int(). The possible attribute values include these constants:RADIUS_PPPRADIUS_SLIPRADIUS_ARAPRADIUS_GANDALFRADIUS_XYLOGICS
RADIUS_FRAMED_IP_ADDRESS(int)The Framed-IP-Address attribute. The attribute value is expected to be the address of the user's network encoded as an
int, which can be set usingradius_put_addr()and retrieved usingradius_cvt_addr().RADIUS_FRAMED_IP_NETMASK(int)The Framed-IP-Netmask attribute. The attribute value is expected to be the netmask of the user's network encoded as an
int, which can be set usingradius_put_addr()and retrieved usingradius_cvt_addr().RADIUS_FRAMED_ROUTING(int)The Framed-Routing attribute. The attribute value is expected to be an
intindicating the routing method for the user, which can be set usingradius_put_int().Possible values include:
0: No routing1: Send routing packets2: Listen for routing packets3: Send and listen
RADIUS_FILTER_ID(int)The Filter-ID attribute. The attribute value is expected to be an implementation-specific, human-readable
stringof filters, which can be set usingradius_put_attr().RADIUS_FRAMED_MTU(int)The Framed-MTU attribute. The attribute value is expected to be an
intindicating the MTU to be configured for the user, and can be set usingradius_put_int().RADIUS_FRAMED_COMPRESSION(int)The Framed-Compression attribute. The attribute value is expected to be an
intindicating the compression protocol to be used, and can be set usingradius_put_int(). Possible values include these constants:RADIUS_COMP_NONE: No compressionRADIUS_COMP_VJ: VJ TCP/IP header compressionRADIUS_COMP_IPXHDR: IPX header compressionRADIUS_COMP_STAC_LZS: Stac-LZS compression (added in PECL radius 1.3.0b2)
RADIUS_LOGIN_IP_HOST(int)The Login-IP-Host attribute. The attribute value is expected to the IP address to connect the user to, encoded as an
int, which can be set usingradius_put_addr().RADIUS_LOGIN_SERVICE(int)The Login-Service attribute. The attribute value is an
intindicating the service to connect the user to on the login host. The value can be converted to a PHP integer viaradius_cvt_int().RADIUS_LOGIN_TCP_PORT(int)The Login-TCP-Port attribute. The attribute value is an
intindicating the port to connect the user to on the login host. The value can be converted to a PHP integer viaradius_cvt_int().RADIUS_REPLY_MESSAGE(int)The Reply-Message attribute. The attribute value is a
stringcontaining text that may be displayed to the user in response to an access request.RADIUS_CALLBACK_NUMBER(int)The Callback-Number attribute. The attribute value is a
stringcontaining the dialing string to use for callback.RADIUS_CALLBACK_ID(int)The Callback-Id attribute. The attribute value is a
stringcontaining an implementation-specific name of the place to be called.RADIUS_FRAMED_ROUTE(int)The Framed-Route attribute. The attribute value is a
stringcontaining an implementation-specific set of routes to be configured for the user.RADIUS_FRAMED_IPX_NETWORK(int)The Framed-IPX-Network attribute. The attribute value is an
intcontaining the IPX network to be configured for the user, or0xFFFFFFFEto indicate that the RADIUS client should select the network, and can be accessed viaradius_cvt_int().RADIUS_STATE(int)The State attribute. The attribute value is an implementation-defined
stringincluded in an Access-Challenge from a server that must be included in the subsequent Access-Request, and can be set usingradius_put_attr().RADIUS_CLASS(int)The Class attribute. The attribute value is an arbitrary
stringincluded in an Access-Accept message that should then be sent to the accounting server in Accounting-Request messages, and can be set usingradius_put_attr().RADIUS_VENDOR_SPECIFIC(int)The Vendor-Specific attribute. In general, vendor attribute values should be set using
radius_put_vendor_addr(),radius_put_vendor_attr(),radius_put_vendor_int()andradius_put_vendor_string(), rather than directly.This constant is mostly useful when interpreting vendor specific attributes in responses from a RADIUS server; when a vendor specific attribute is received, the
radius_get_vendor_attr()function should be used to access the vendor ID, attribute type and attribute value.RADIUS_SESSION_TIMEOUT(int)Session timeout
RADIUS_IDLE_TIMEOUT(int)Idle timeout
RADIUS_TERMINATION_ACTION(int)Termination action
RADIUS_CALLED_STATION_ID(int)Called Station Id
RADIUS_CALLING_STATION_ID(int)Calling Station Id
RADIUS_NAS_IDENTIFIER(int)NAS ID
RADIUS_PROXY_STATE(int)Proxy State
RADIUS_LOGIN_LAT_SERVICE(int)Login LAT Service
RADIUS_LOGIN_LAT_NODE(int)Login LAT Node
RADIUS_LOGIN_LAT_GROUP(int)Login LAT Group
RADIUS_FRAMED_APPLETALK_LINK(int)Framed Appletalk Link
RADIUS_FRAMED_APPLETALK_NETWORK(int)Framed Appletalk Network
RADIUS_FRAMED_APPLETALK_ZONE(int)Framed Appletalk Zone
RADIUS_CHAP_CHALLENGE(int)Challenge
RADIUS_NAS_PORT_TYPE(int)NAS port type, one of:
RADIUS_ASYNCRADIUS_SYNCRADIUS_ISDN_SYNCRADIUS_ISDN_ASYNC_V120RADIUS_ISDN_ASYNC_V110RADIUS_VIRTUALRADIUS_PIAFSRADIUS_HDLC_CLEAR_CHANNELRADIUS_X_25RADIUS_X_75RADIUS_G_3_FAXRADIUS_SDSLRADIUS_ADSL_CAPRADIUS_ADSL_DMTRADIUS_IDSLRADIUS_ETHERNETRADIUS_XDSLRADIUS_CABLERADIUS_WIRELESS_OTHERRADIUS_WIRELESS_IEEE_802_11
RADIUS_PORT_LIMIT(int)Port Limit
RADIUS_LOGIN_LAT_PORT(int)Login LAT Port
RADIUS_CONNECT_INFO(int)Connect info
RADIUS_ACCT_STATUS_TYPE(int)Accounting status type, one of:
RADIUS_STARTRADIUS_STOPRADIUS_ACCOUNTING_ONRADIUS_ACCOUNTING_OFF
RADIUS_ACCT_DELAY_TIME(int)Accounting delay time
RADIUS_ACCT_INPUT_OCTETS(int)Accounting input bytes
RADIUS_ACCT_OUTPUT_OCTETS(int)Accounting output bytes
RADIUS_ACCT_SESSION_ID(int)Accounting session ID
RADIUS_ACCT_AUTHENTIC(int)Accounting authentic, one of:
RADIUS_AUTH_RADIUSRADIUS_AUTH_LOCALRADIUS_AUTH_REMOTE
RADIUS_ACCT_SESSION_TIME(int)Accounting session time
RADIUS_ACCT_INPUT_PACKETS(int)Accounting input packets
RADIUS_ACCT_OUTPUT_PACKETS(int)Accounting output packets
RADIUS_ACCT_TERMINATE_CAUSE(int)Accounting terminate cause, one of:
RADIUS_TERM_USER_REQUESTRADIUS_TERM_LOST_CARRIERRADIUS_TERM_LOST_SERVICERADIUS_TERM_IDLE_TIMEOUTRADIUS_TERM_SESSION_TIMEOUTRADIUS_TERM_ADMIN_RESETRADIUS_TERM_ADMIN_REBOOTRADIUS_TERM_PORT_ERRORRADIUS_TERM_NAS_ERRORRADIUS_TERM_NAS_REQUESTRADIUS_TERM_NAS_REBOOTRADIUS_TERM_PORT_UNNEEDEDRADIUS_TERM_PORT_PREEMPTEDRADIUS_TERM_PORT_SUSPENDEDRADIUS_TERM_SERVICE_UNAVAILABLERADIUS_TERM_CALLBACKRADIUS_TERM_USER_ERRORRADIUS_TERM_HOST_REQUEST
RADIUS_ACCT_MULTI_SESSION_ID(int)Accounting multi session ID
RADIUS_ACCT_LINK_COUNT(int)Accounting link count
RADIUS_LOGINRADIUS_FRAMEDRADIUS_CALLBACK_LOGINRADIUS_CALLBACK_FRAMEDRADIUS_OUTBOUNDRADIUS_ADMINISTRATIVERADIUS_NAS_PROMPTRADIUS_AUTHENTICATE_ONLYRADIUS_CALLBACK_NAS_PROMPT
RADIUS_PPPRADIUS_SLIPRADIUS_ARAPRADIUS_GANDALFRADIUS_XYLOGICS
RADIUS_COMP_NONERADIUS_COMP_VJRADIUS_COMP_IPXHDRRADIUS_COMP_STAC_LZS
RADIUS_ASYNCRADIUS_SYNCRADIUS_ISDN_SYNCRADIUS_ISDN_ASYNC_V120RADIUS_ISDN_ASYNC_V110RADIUS_VIRTUALRADIUS_PIAFSRADIUS_HDLC_CLEAR_CHANNELRADIUS_X_25RADIUS_X_75RADIUS_G_3_FAXRADIUS_SDSLRADIUS_ADSL_CAPRADIUS_ADSL_DMTRADIUS_IDSLRADIUS_ETHERNETRADIUS_XDSLRADIUS_CABLERADIUS_WIRELESS_OTHERRADIUS_WIRELESS_IEEE_802_11
RADIUS_STARTRADIUS_STOPRADIUS_ACCOUNTING_ONRADIUS_ACCOUNTING_OFF
RADIUS_AUTH_RADIUSRADIUS_AUTH_LOCALRADIUS_AUTH_REMOTE
RADIUS_TERM_USER_REQUESTRADIUS_TERM_LOST_CARRIERRADIUS_TERM_LOST_SERVICERADIUS_TERM_IDLE_TIMEOUTRADIUS_TERM_SESSION_TIMEOUTRADIUS_TERM_ADMIN_RESETRADIUS_TERM_ADMIN_REBOOTRADIUS_TERM_PORT_ERRORRADIUS_TERM_NAS_ERRORRADIUS_TERM_NAS_REQUESTRADIUS_TERM_NAS_REBOOTRADIUS_TERM_PORT_UNNEEDEDRADIUS_TERM_PORT_PREEMPTEDRADIUS_TERM_PORT_SUSPENDEDRADIUS_TERM_SERVICE_UNAVAILABLERADIUS_TERM_CALLBACKRADIUS_TERM_USER_ERRORRADIUS_TERM_HOST_REQUEST
RADIUS Vendor Specific Attribute Types
RADIUS_VENDOR_MICROSOFT(int)Microsoft specific vendor attributes (RFC 2548), one of:
RADIUS_MICROSOFT_MS_CHAP_RESPONSERADIUS_MICROSOFT_MS_CHAP_ERRORRADIUS_MICROSOFT_MS_CHAP_PW_1RADIUS_MICROSOFT_MS_CHAP_PW_2RADIUS_MICROSOFT_MS_CHAP_LM_ENC_PWRADIUS_MICROSOFT_MS_CHAP_NT_ENC_PWRADIUS_MICROSOFT_MS_MPPE_ENCRYPTION_POLICYRADIUS_MICROSOFT_MS_MPPE_ENCRYPTION_TYPESRADIUS_MICROSOFT_MS_RAS_VENDORRADIUS_MICROSOFT_MS_CHAP_DOMAINRADIUS_MICROSOFT_MS_CHAP_CHALLENGERADIUS_MICROSOFT_MS_CHAP_MPPE_KEYSRADIUS_MICROSOFT_MS_BAP_USAGERADIUS_MICROSOFT_MS_LINK_UTILIZATION_THRESHOLDRADIUS_MICROSOFT_MS_LINK_DROP_TIME_LIMITRADIUS_MICROSOFT_MS_MPPE_SEND_KEYRADIUS_MICROSOFT_MS_MPPE_RECV_KEYRADIUS_MICROSOFT_MS_RAS_VERSIONRADIUS_MICROSOFT_MS_OLD_ARAP_PASSWORDRADIUS_MICROSOFT_MS_NEW_ARAP_PASSWORDRADIUS_MICROSOFT_MS_ARAP_PASSWORD_CHANGE_REASONRADIUS_MICROSOFT_MS_FILTERRADIUS_MICROSOFT_MS_ACCT_AUTH_TYPERADIUS_MICROSOFT_MS_ACCT_EAP_TYPERADIUS_MICROSOFT_MS_CHAP2_RESPONSERADIUS_MICROSOFT_MS_CHAP2_SUCCESSRADIUS_MICROSOFT_MS_CHAP2_PWRADIUS_MICROSOFT_MS_PRIMARY_DNS_SERVERRADIUS_MICROSOFT_MS_SECONDARY_DNS_SERVERRADIUS_MICROSOFT_MS_PRIMARY_NBNS_SERVERRADIUS_MICROSOFT_MS_SECONDARY_NBNS_SERVERRADIUS_MICROSOFT_MS_ARAP_CHALLENGE
RADIUS_MICROSOFT_MS_CHAP_RESPONSERADIUS_MICROSOFT_MS_CHAP_ERRORRADIUS_MICROSOFT_MS_CHAP_PW_1RADIUS_MICROSOFT_MS_CHAP_PW_2RADIUS_MICROSOFT_MS_CHAP_LM_ENC_PWRADIUS_MICROSOFT_MS_CHAP_NT_ENC_PWRADIUS_MICROSOFT_MS_MPPE_ENCRYPTION_POLICYRADIUS_MICROSOFT_MS_MPPE_ENCRYPTION_TYPESRADIUS_MICROSOFT_MS_RAS_VENDORRADIUS_MICROSOFT_MS_CHAP_DOMAINRADIUS_MICROSOFT_MS_CHAP_CHALLENGERADIUS_MICROSOFT_MS_CHAP_MPPE_KEYSRADIUS_MICROSOFT_MS_BAP_USAGERADIUS_MICROSOFT_MS_LINK_UTILIZATION_THRESHOLDRADIUS_MICROSOFT_MS_LINK_DROP_TIME_LIMITRADIUS_MICROSOFT_MS_MPPE_SEND_KEYRADIUS_MICROSOFT_MS_MPPE_RECV_KEYRADIUS_MICROSOFT_MS_RAS_VERSIONRADIUS_MICROSOFT_MS_OLD_ARAP_PASSWORDRADIUS_MICROSOFT_MS_NEW_ARAP_PASSWORDRADIUS_MICROSOFT_MS_ARAP_PASSWORD_CHANGE_REASONRADIUS_MICROSOFT_MS_FILTERRADIUS_MICROSOFT_MS_ACCT_AUTH_TYPERADIUS_MICROSOFT_MS_ACCT_EAP_TYPERADIUS_MICROSOFT_MS_CHAP2_RESPONSERADIUS_MICROSOFT_MS_CHAP2_SUCCESSRADIUS_MICROSOFT_MS_CHAP2_PWRADIUS_MICROSOFT_MS_PRIMARY_DNS_SERVERRADIUS_MICROSOFT_MS_SECONDARY_DNS_SERVERRADIUS_MICROSOFT_MS_PRIMARY_NBNS_SERVERRADIUS_MICROSOFT_MS_SECONDARY_NBNS_SERVERRADIUS_MICROSOFT_MS_ARAP_CHALLENGE