summaryrefslogtreecommitdiff
path: root/ipmasq/rules/A01precompute_ipsec.def
diff options
context:
space:
mode:
Diffstat (limited to 'ipmasq/rules/A01precompute_ipsec.def')
-rw-r--r--ipmasq/rules/A01precompute_ipsec.def26
1 files changed, 0 insertions, 26 deletions
diff --git a/ipmasq/rules/A01precompute_ipsec.def b/ipmasq/rules/A01precompute_ipsec.def
deleted file mode 100644
index 5d90913..0000000
--- a/ipmasq/rules/A01precompute_ipsec.def
+++ /dev/null
@@ -1,26 +0,0 @@
-# You should not edit this file. Instead, create a file with the same
-# name as this one, but with a .rul extension instead of .def. The
-# .rul file will override this one.
-#
-# However, any changes you make to this file will be preserved.
-
-# precompute ips and netmasks
-if [ -n "$IPSEC" ]; then
- if [ "$SHOWRULES" = "yes" ]; then
- echo "#: IPSec interfaces found:"
- fi
- IPSECGW=""
- for i in $IPSEC; do
- ii=$(echo $i | sed -e 's/\:/_/g')
- igw=$(ipsec look | grep IPIP:.*src=$ip | sed 's/^\([^[:blank:]]*\).*/\1/')
- cidrcollect=""
- for ipsecgw in $igw; do
- cidr=$(ipsec look | grep "=> $ipsecgw" | sed 's/^\([^[:blank:]]*\).*/\1/')
- cidrcollect="$cidrcollect $cidr"
- done
- eval "CIDROFIPSEC_${ii}=\"$cidrcollect\""
- if [ "$SHOWRULES" = "yes" ]; then
- /bin/echo -e "#: $i\t$ip/$nm\t$cidrcollect"
- fi
- done
-fi