ipsec-tools: initial import

This commit is contained in:
Mikhail Kolesnik 2006-11-02 18:03:04 +02:00
parent 2e95769527
commit 8d56d8b5ee
4 changed files with 84 additions and 0 deletions

43
ipsec-tools/.footprint Normal file
View File

@ -0,0 +1,43 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/libipsec/
-rw-r--r-- root/root usr/include/libipsec/libpfkey.h
drwxr-xr-x root/root usr/include/racoon/
-rw-r--r-- root/root usr/include/racoon/admin.h
-rw-r--r-- root/root usr/include/racoon/evt.h
-rw-r--r-- root/root usr/include/racoon/gcmalloc.h
-rw-r--r-- root/root usr/include/racoon/ipsec_doi.h
-rw-r--r-- root/root usr/include/racoon/isakmp.h
-rw-r--r-- root/root usr/include/racoon/isakmp_cfg.h
-rw-r--r-- root/root usr/include/racoon/isakmp_unity.h
-rw-r--r-- root/root usr/include/racoon/isakmp_var.h
-rw-r--r-- root/root usr/include/racoon/isakmp_xauth.h
-rw-r--r-- root/root usr/include/racoon/misc.h
-rw-r--r-- root/root usr/include/racoon/racoonctl.h
-rw-r--r-- root/root usr/include/racoon/schedule.h
-rw-r--r-- root/root usr/include/racoon/sockmisc.h
-rw-r--r-- root/root usr/include/racoon/var.h
-rw-r--r-- root/root usr/include/racoon/vmbuf.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libipsec.a
-rwxr-xr-x root/root usr/lib/libipsec.la
-rw-r--r-- root/root usr/lib/libracoon.a
-rwxr-xr-x root/root usr/lib/libracoon.la
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man3/
-rw-r--r-- root/root usr/man/man3/ipsec_set_policy.3.gz
-rw-r--r-- root/root usr/man/man3/ipsec_strerror.3.gz
drwxr-xr-x root/root usr/man/man5/
-rw-r--r-- root/root usr/man/man5/racoon.conf.5.gz
drwxr-xr-x root/root usr/man/man8/
-rw-r--r-- root/root usr/man/man8/plainrsa-gen.8.gz
-rw-r--r-- root/root usr/man/man8/racoon.8.gz
-rw-r--r-- root/root usr/man/man8/racoonctl.8.gz
-rw-r--r-- root/root usr/man/man8/setkey.8.gz
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/plainrsa-gen
-rwxr-xr-x root/root usr/sbin/racoon
-rwxr-xr-x root/root usr/sbin/racoonctl
-rwxr-xr-x root/root usr/sbin/setkey
drwxr-xr-x root/root usr/var/
drwxr-xr-x root/root usr/var/racoon/

1
ipsec-tools/.md5sum Normal file
View File

@ -0,0 +1 @@
e908f3cf367e31c7902df5ab16fbe5c3 ipsec-tools-0.6.6.tar.bz2

15
ipsec-tools/Pkgfile Normal file
View File

@ -0,0 +1,15 @@
# Description: A port of KAME's IPsec utilities to the Linux-2.6
# URL: http://ipsec-tools.sourceforge.net/
# Maintainer: Mikhail Kolesnik, mike at openbunker dot org
# Depends on:
name=ipsec-tools
version=0.6.6
release=1
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}

25
ipsec-tools/README Normal file
View File

@ -0,0 +1,25 @@
README for ipsec-tools
REQUIREMENTS
For ipv4 IPSEC you'll need to enable:
CONFIG_XFRM_USER
CONFIG_NET_KEY
CONFIG_INET_AH
CONFIG_INET_ESP
CONFIG_INET_XFRM_MODE_TRANSPORT
CONFIG_INET_XFRM_MODE_TUNNEL
PRE-INSTALL
POST-INSTALL
RESOURCES
PRECAUTION
This is a very important piece of software, test your configuration
(try to capture/analyze some data) before production use.
Both transport and tunnel mode was tested for ipv4, but I am unsure if
automatic keying will work out of the box - no rc file for racoon is
provided for now. Any suggestions on template configurations from
people who use racoon in real life are welcome.