diff options
author | Matthew Grooms <mgrooms@pfsense.org> | 2008-07-11 01:55:30 +0000 |
---|---|---|
committer | Matthew Grooms <mgrooms@pfsense.org> | 2008-07-11 01:55:30 +0000 |
commit | a93e56c58af2611650d1f97190ffe54782479423 (patch) | |
tree | 4748e51726a04966508a45bd275cf8e0589df7be /etc/inc/functions.inc | |
parent | 2a66b533249a31c4b9ea6f90c696998b2ba8ba49 (diff) | |
download | pfsense-a93e56c58af2611650d1f97190ffe54782479423.zip pfsense-a93e56c58af2611650d1f97190ffe54782479423.tar.gz |
Overhaul IPsec related code. Shared functions have been consolidated into
a new file named /etc/ipsec.inc. Tunnel definitions have been split into
phase1 and phase2. This allows any number of phase2 definitions to be
created for a single phase1 definition. Several facets of configuration
have also been improved. The key size for variable length algorithms can
now be selected and the phase1 ID options have been extended to allow for
more flexible configuration. Several NAT-T related issues have also been
resolved.
Please note, IPsec remote access functionality has been temporarily
disabled. An improved implementation will be included in a follow up
commit.
Diffstat (limited to 'etc/inc/functions.inc')
-rw-r--r-- | etc/inc/functions.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/inc/functions.inc b/etc/inc/functions.inc index 8415def..b8ab7fb 100644 --- a/etc/inc/functions.inc +++ b/etc/inc/functions.inc @@ -79,9 +79,10 @@ require_once("system.inc"); require_once("openvpn.inc"); require_once("pfsense-utils.inc"); require_once("util.inc"); +require_once("ipsec.inc"); require_once("vpn.inc"); require_once("vslb.inc"); require_once("gwlb.inc"); require_once("notices.inc"); -?>
\ No newline at end of file +?> |