1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
#
# IPSEC configuration
# Copyright (C) 1998, 1999, 2000,2001 Richard Guy Briggs.
# Copyright (C) 2004 Michael Richardson <mcr@xelerance.com>
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# RCSID $Id: Config.in.os2_4,v 1.1 2005/04/05 00:07:20 mcr Exp $
comment 'IPsec options (Openswan)'
bool ' IPsec: IP-in-IP encapsulation (tunnel mode)' CONFIG_KLIPS_IPIP
bool ' IPsec: Authentication Header' CONFIG_KLIPS_AH
bool ' IPsec: Encapsulating Security Payload' CONFIG_KLIPS_ESP
comment ' IPsec algorithms to include'
if [ "$CONFIG_KLIPS_ESP" = "y" ]; then
bool ' 3DES encryption algorithm' CONFIG_KLIPS_ENC_3DES
bool ' AES encryption algorithm' CONFIG_KLIPS_ENC_AES
fi
if [ "$CONFIG_KLIPS_AH" = "y" -o "$CONFIG_KLIPS_ESP" = "y" ]; then
bool ' HMAC-MD5 authentication algorithm' CONFIG_KLIPS_AUTH_HMAC_MD5
bool ' HMAC-SHA1 authentication algorithm' CONFIG_KLIPS_AUTH_HMAC_SHA1
fi
bool ' IPsec Modular Extensions' CONFIG_KLIPS_ALG
if [ "$CONFIG_KLIPS_ALG" != "n" ]; then
source net/ipsec/alg/Config.in
fi
bool ' IPsec: IP Compression' CONFIG_KLIPS_IPCOMP
bool ' IPsec Debugging Option' CONFIG_KLIPS_DEBUG
#
#
# $Log: Config.in.os2_4,v $
# Revision 1.1 2005/04/05 00:07:20 mcr
# configuration file renamed to not be present in 2.6.
#
# Revision 1.32 2004/07/15 01:22:19 mcr
# adjustment of AES options for klips24 prep.
#
# Revision 1.31 2004/07/10 19:11:18 mcr
# CONFIG_IPSEC -> CONFIG_KLIPS.
#
# Revision 1.30 2004/06/23 09:49:37 ken
# Free -> Open
#
# Revision 1.29 2004/04/06 02:49:25 mcr
# pullup of algo code from alg-branch.
#
# Revision 1.28 2004/02/03 03:12:26 mcr
# remove NAT-traversal option from IPsec config,
# as it should be in the kernel configuration if
# the NAT-T patch is installed.
#
# Revision 1.27.2.2 2004/04/05 04:30:46 mcr
# patches for alg-branch to compile/work with 2.x openswan
#
# Revision 1.27.2.1 2003/12/23 12:48:25 jjo
# Added missing alg part to linux/net/ipsec/Config.in
#
# Revision 1.27 2003/12/10 01:14:27 mcr
# NAT-traversal patches to KLIPS.
#
# Revision 1.26 2002/04/24 07:36:26 mcr
# Moved from ./klips/net/ipsec/Config.in,v
#
# Revision 1.25 2002/02/21 19:55:12 mcr
# removed all traces of IPSEC_CONFIG_REGRESS because it
# screwed up 2.2's "make menuconfig" scripts.
#
# Revision 1.24 2002/01/28 20:24:31 mcr
# commented out IPSEC_REGRESS option from user visible config.
#
#
|