diff options
author | James Yonan <james@openvpn.net> | 2010-10-24 09:12:47 +0000 |
---|---|---|
committer | James Yonan <james@openvpn.net> | 2010-10-24 09:12:47 +0000 |
commit | 3cf9dd88fd84108eccfcce0ebf44e00f9481cd82 (patch) | |
tree | 03264d8f2741babc01a8ab2bbe9a8d2b546f3147 /syshead.h | |
parent | Fixed initialization bug in route_list_add_default_gateway (diff) | |
download | openvpn-3cf9dd88fd84108eccfcce0ebf44e00f9481cd82.tar.xz |
Implement challenge/response authentication support in client mode,
where credentials are entered from stdin. This capability is
compiled when ENABLE_CLIENT_CR is defined in syshead.h (enabled
by default).
Challenge/response support was previously implemented for creds
that are queried via the management interface. In this case,
the challenge message will be returned as a custom
client-reason-text string (see management-notes.txt for more
info) on auth failure.
Also, see the comments in misc.c above get_auth_challenge()
for info on the OpenVPN challenge/response protocol.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@6568 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to '')
-rw-r--r-- | syshead.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -661,6 +661,11 @@ socket_defined (const socket_descriptor_t sd) #endif /* + * Do we support challenge/response authentication, as a console-based client? + */ +#define ENABLE_CLIENT_CR + +/* * Do we support pushing peer info? */ #define ENABLE_PUSH_PEER_INFO |