Added support for the ipsec.conf aaa_identity keyword
This commit is contained in:
@@ -208,6 +208,7 @@ static const token_info_t token_info[] =
|
||||
{ ARG_MISC, 0, NULL /* KW_AUTHBY */ },
|
||||
{ ARG_MISC, 0, NULL /* KW_EAP */ },
|
||||
{ ARG_STR, offsetof(starter_conn_t, eap_identity), NULL },
|
||||
{ ARG_STR, offsetof(starter_conn_t, aaa_identity), NULL },
|
||||
{ ARG_MISC, 0, NULL /* KW_MOBIKE */ },
|
||||
{ ARG_MISC, 0, NULL /* KW_FORCEENCAPS */ },
|
||||
{ ARG_TIME, offsetof(starter_conn_t, sa_ike_life_seconds), NULL },
|
||||
|
||||
@@ -117,6 +117,7 @@ struct starter_conn {
|
||||
u_int32_t eap_type;
|
||||
u_int32_t eap_vendor;
|
||||
char *eap_identity;
|
||||
char *aaa_identity;
|
||||
char *xauth_identity;
|
||||
lset_t policy;
|
||||
time_t sa_ike_life_seconds;
|
||||
|
||||
@@ -228,6 +228,11 @@ Unless otherwise noted, for a connection to work,
|
||||
in general it is necessary for the two ends to agree exactly
|
||||
on the values of these parameters.
|
||||
.TP 14
|
||||
.B aaa_identity
|
||||
defines the identity of the AAA backend used during IKEv2 EAP authentication.
|
||||
This is required if the EAP client uses a method that verifies the server
|
||||
identity (such as EAP-TLS), but it does not match the IKEv2 gateway identity.
|
||||
.TP
|
||||
.B ah
|
||||
AH authentication algorithm to be used
|
||||
for the connection, e.g.
|
||||
|
||||
@@ -71,6 +71,7 @@ typedef enum {
|
||||
KW_AUTHBY,
|
||||
KW_EAP,
|
||||
KW_EAP_IDENTITY,
|
||||
KW_AAA_IDENTITY,
|
||||
KW_MOBIKE,
|
||||
KW_FORCEENCAPS,
|
||||
KW_IKELIFETIME,
|
||||
|
||||
@@ -49,6 +49,7 @@ force_keepalive, KW_FORCE_KEEPALIVE
|
||||
virtual_private, KW_VIRTUAL_PRIVATE
|
||||
eap, KW_EAP
|
||||
eap_identity, KW_EAP_IDENTITY
|
||||
aaa_identity, KW_AAA_IDENTITY
|
||||
mobike, KW_MOBIKE
|
||||
forceencaps, KW_FORCEENCAPS
|
||||
pkcs11module, KW_PKCS11MODULE
|
||||
|
||||
@@ -223,6 +223,7 @@ int starter_stroke_add_conn(starter_config_t *cfg, starter_conn_t *conn)
|
||||
msg.add_conn.eap_type = conn->eap_type;
|
||||
msg.add_conn.eap_vendor = conn->eap_vendor;
|
||||
msg.add_conn.eap_identity = push_string(&msg, conn->eap_identity);
|
||||
msg.add_conn.aaa_identity = push_string(&msg, conn->aaa_identity);
|
||||
|
||||
if (conn->policy & POLICY_TUNNEL)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user