- fixed log-to-syslog behavior
- added patch against strongswan-2.6.4
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Executable
+13
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
while [ 1 ]
|
||||
do
|
||||
ip x p f
|
||||
ip x s f
|
||||
rm /var/run/charon.*
|
||||
make
|
||||
bin/charon
|
||||
echo ""
|
||||
echo "----------------------------"
|
||||
echo ""
|
||||
done
|
||||
Executable
+9
@@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
FILES=`find . -name '*.[ch]'`
|
||||
for FILE in $FILES
|
||||
do
|
||||
TMP=${FILE}_tmp
|
||||
sed "/$1/d" < $FILE > $TMP
|
||||
mv $TMP $FILE
|
||||
done
|
||||
Executable
+9
@@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
FILES=`find . -name '*.[ch]'`
|
||||
for FILE in $FILES
|
||||
do
|
||||
TMP=${FILE}_tmp
|
||||
sed "s/$1/$2/g" < $FILE > $TMP
|
||||
mv $TMP $FILE
|
||||
done
|
||||
Executable
+28
@@ -0,0 +1,28 @@
|
||||
#!/bin/bash
|
||||
|
||||
# enable ip forwarding for gateway
|
||||
echo 1 > /proc/sys/net/ipv4/ip_forward
|
||||
|
||||
# add connection to alice
|
||||
MY_ADDR=192.168.0.2 # Address of local peer, also used as ID
|
||||
OTHER_ADDR=192.168.0.1 # Address of remote peer, also used as ID
|
||||
MY_CERT=bob.der # own certificate
|
||||
OTHER_CERT=alice.der # certificate for remote peer
|
||||
MY_NET=10.2.0.0 # protected local subnet
|
||||
OTHER_NET=10.1.0.0 # protected remote subnet
|
||||
MY_BITS=16 # size of subnet
|
||||
OTHER_BITS=16 # size of subnet
|
||||
CONN_NAME=to-alice # connection name
|
||||
|
||||
bin/stroke add $CONN_NAME $MY_ADDR $OTHER_ADDR $MY_CERT $OTHER_CERT \
|
||||
$MY_ADDR $OTHER_ADDR $MY_NET $OTHER_NET $MY_BITS $OTHER_BITS
|
||||
|
||||
# initiate
|
||||
i=0
|
||||
LIMIT=1
|
||||
|
||||
while [ "$i" -lt "$LIMIT" ]
|
||||
do
|
||||
bin/stroke up $CONN_NAME
|
||||
let "i += 1"
|
||||
done
|
||||
Executable
+19
@@ -0,0 +1,19 @@
|
||||
#!/bin/bash
|
||||
|
||||
# enable ip forwarding for gateway
|
||||
echo 1 > /proc/sys/net/ipv4/ip_forward
|
||||
|
||||
# add connection to bob
|
||||
MY_ADDR=192.168.0.1 # Address of local peer, also used as ID
|
||||
OTHER_ADDR=192.168.0.2 # Address of remote peer, also used as ID
|
||||
MY_CERT=alice.der # own certificate
|
||||
OTHER_CERT=bob.der # certificate for remote peer
|
||||
MY_NET=10.1.0.0 # protected local subnet
|
||||
OTHER_NET=10.2.0.0 # protected remote subnet
|
||||
MY_BITS=16 # size of subnet
|
||||
OTHER_BITS=16 # size of subnet
|
||||
CONN_NAME=to-bob # connection name
|
||||
|
||||
bin/stroke add $CONN_NAME $MY_ADDR $OTHER_ADDR $MY_CERT $OTHER_CERT \
|
||||
$MY_ADDR $OTHER_ADDR $MY_NET $OTHER_NET $MY_BITS $OTHER_BITS
|
||||
|
||||
Reference in New Issue
Block a user