2 # iproute2 version, default updown script
4 # Copyright (C) 2003-2004 Nigel Meteringham
5 # Copyright (C) 2003-2004 Tuomo Soini
6 # Copyright (C) 2002-2004 Michael Richardson
7 # Copyright (C) 2005-2007 Andreas Steffen <andreas.steffen@strongswan.org>
9 # This program is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by the
11 # Free Software Foundation; either version 2 of the License, or (at your
12 # option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
14 # This program is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16 # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 # CAUTION: Installing a new version of strongSwan will install a new
22 # copy of this script, wiping out any custom changes you make. If
23 # you need changes, make a copy of this under another name, and customize
24 # that, and use the (left/right)updown parameters in ipsec.conf to make
25 # strongSwan use yours instead of this default one.
27 # things that this script gets (from ipsec_pluto(8) man page)
30 # indicates what version of this interface is being
31 # used. This document describes version 1.1. This
32 # is upwardly compatible with version 1.0.
35 # specifies the name of the operation to be performed
36 # (prepare-host, prepare-client, up-host, up-client,
37 # down-host, or down-client). If the address family
38 # for security gateway to security gateway communica
39 # tions is IPv6, then a suffix of -v6 is added to the
43 # is the name of the connection for which we are
47 # is the next hop to which packets bound for the peer
51 # is the name of the ipsec interface to be used.
54 # is the requid of the ESP policy
57 # is the IP address of our host.
60 # is the ID of our host.
63 # is the IP address / count of our client subnet. If
64 # the client is just the host, this will be the
65 # host's own IP address / max (where max is 32 for
66 # IPv4 and 128 for IPv6).
69 # is the IP address of our client net. If the client
70 # is just the host, this will be the host's own IP
73 # PLUTO_MY_CLIENT_MASK
74 # is the mask for our client net. If the client is
75 # just the host, this will be 255.255.255.255.
78 # if non-empty, then the source address for the route will be
79 # set to this IP address.
82 # is the IP protocol that will be transported.
85 # is the UDP/TCP port to which the IPsec SA is
86 # restricted on our side.
89 # is the IP address of our peer.
92 # is the ID of our peer.
95 # is the CA which issued the cert of our peer.
98 # is the IP address / count of the peer's client sub
99 # net. If the client is just the peer, this will be
100 # the peer's own IP address / max (where max is 32
101 # for IPv4 and 128 for IPv6).
103 # PLUTO_PEER_CLIENT_NET
104 # is the IP address of the peer's client net. If the
105 # client is just the peer, this will be the peer's
108 # PLUTO_PEER_CLIENT_MASK
109 # is the mask for the peer's client net. If the
110 # client is just the peer, this will be
113 # PLUTO_PEER_PROTOCOL
114 # is the IP protocol that will be transported.
117 # is the UDP/TCP port to which the IPsec SA is
118 # restricted on the peer side.
121 # define a minimum PATH environment in case it is not set
122 PATH="/sbin:/bin:/usr/sbin:/usr/bin:@IPSEC_SBINDIR@"
125 # uncomment to log VPN connections
128 # tag put in front of each log entry:
131 # syslog facility and priority used:
132 FAC_PRIO=local0.notice
134 # to create a special vpn logging file, put the following line into
135 # the syslog configuration file /etc/syslog.conf:
137 # local0.notice -/var/log/vpn
139 # in order to use source IP routing the Linux kernel options
140 # CONFIG_IP_ADVANCED_ROUTER and CONFIG_IP_MULTIPLE_TABLES
143 # special routing table for sourceip routes
144 SOURCEIP_ROUTING_TABLE=@IPSEC_ROUTING_TABLE@
146 # priority of the sourceip routing table
147 SOURCEIP_ROUTING_TABLE_PRIO=@IPSEC_ROUTING_TABLE_PRIO@
149 # check interface version
150 case "$PLUTO_VERSION" in
151 1.[0|1]) # Older Pluto?!? Play it safe, script may be using new features.
152 echo "$0: obsolete interface version \`$PLUTO_VERSION'," >&2
153 echo "$0: called by obsolete Pluto?" >&2
157 *) echo "$0: unknown interface version \`$PLUTO_VERSION'" >&2
166 iptables:iptables) # due to (left/right)firewall; for default script only
168 custom:*) # custom parameters (see above CAUTION comment)
170 *) echo "$0: unknown parameters \`$*'" >&2
175 # utility functions for route manipulation
176 # Meddling with this stuff should not be necessary and requires great care.
188 if ! ip -o route get ${PLUTO_MY_SOURCEIP%/*} | grep -q ^local
190 it="ip addr add ${PLUTO_MY_SOURCEIP%/*}/32 dev $PLUTO_INTERFACE"
191 oops="`eval $it 2>&1`"
193 if test " $oops" = " " -a " $st" != " 0"
195 oops="silent error, exit status $st"
197 if test " $oops" != " " -o " $st" != " 0"
199 echo "$0: addsource \`$it' failed ($oops)" >&2
208 if [ -z "$PLUTO_MY_SOURCEIP" ]
210 if [ -f /etc/sysconfig/defaultsource ]
212 . /etc/sysconfig/defaultsource
215 if [ -f /etc/conf.d/defaultsource ]
217 . /etc/conf.d/defaultsource
220 if [ -n "$DEFAULTSOURCE" ]
222 PLUTO_MY_SOURCEIP=$DEFAULTSOURCE
226 if [ -z "$KLIPS" -a -z "$PLUTO_MY_SOURCEIP" ]
228 # leave because no route entry is required
232 parms1="$PLUTO_PEER_CLIENT"
234 if [ -n "$PLUTO_NEXT_HOP" ]
236 parms2="via $PLUTO_NEXT_HOP"
238 parms2="via $PLUTO_PEER"
240 parms2="$parms2 dev $PLUTO_INTERFACE"
243 if [ -n "$PLUTO_MY_SOURCEIP" ]
248 if ! ip rule list | grep -q "lookup $SOURCEIP_ROUTING_TABLE"
250 ip rule add pref $SOURCEIP_ROUTING_TABLE_PRIO table $SOURCEIP_ROUTING_TABLE
253 parms3="$parms3 src ${PLUTO_MY_SOURCEIP%/*} table $SOURCEIP_ROUTING_TABLE"
256 case "$PLUTO_PEER_CLIENT_NET/$PLUTO_PEER_CLIENT_MASK" in
258 # opportunistic encryption work around
259 # need to provide route that eclipses default, without
261 it="ip route $1 0.0.0.0/1 $parms2 $parms3 &&
262 ip route $1 128.0.0.0/1 $parms2 $parms3"
264 *) it="ip route $1 $parms1 $parms2 $parms3"
267 oops="`eval $it 2>&1`"
269 if test " $oops" = " " -a " $st" != " 0"
271 oops="silent error, exit status $st"
273 if test " $oops" != " " -o " $st" != " 0"
275 echo "$0: doroute \`$it' failed ($oops)" >&2
280 # in the presence of KLIPS and ipsecN interfaces do not use IPSEC_POLICY
281 if [ `echo "$PLUTO_INTERFACE" | grep "ipsec"` ]
288 IPSEC_POLICY="-m policy --pol ipsec --proto esp --reqid $PLUTO_REQID"
289 IPSEC_POLICY_IN="$IPSEC_POLICY --dir in"
290 IPSEC_POLICY_OUT="$IPSEC_POLICY --dir out"
293 # are there port numbers?
294 if [ "$PLUTO_MY_PORT" != 0 ]
296 S_MY_PORT="--sport $PLUTO_MY_PORT"
297 D_MY_PORT="--dport $PLUTO_MY_PORT"
299 if [ "$PLUTO_PEER_PORT" != 0 ]
301 S_PEER_PORT="--sport $PLUTO_PEER_PORT"
302 D_PEER_PORT="--dport $PLUTO_PEER_PORT"
306 case "$PLUTO_VERB:$1" in
307 prepare-host:*|prepare-client:*)
308 if [ -z "$KLIPS" -a -z "$PLUTO_MY_SOURCEIP" ]
310 # exit because no route will be added,
311 # so that existing routes can stay
315 # delete possibly-existing route (preliminary to adding a route)
316 case "$PLUTO_PEER_CLIENT_NET/$PLUTO_PEER_CLIENT_MASK" in
318 # need to provide route that eclipses default, without
322 it="ip route delete $parms1 2>&1 ; ip route delete $parms2 2>&1"
323 oops="`ip route delete $parms1 2>&1 ; ip route delete $parms2 2>&1`"
326 parms="$PLUTO_PEER_CLIENT"
327 it="ip route delete $parms 2>&1"
328 oops="`ip route delete $parms 2>&1`"
332 if test " $oops" = " " -a " $status" != " 0"
334 oops="silent error, exit status $status"
337 *'RTNETLINK answers: No such process'*)
338 # This is what route (currently -- not documented!) gives
339 # for "could not find such a route".
344 if test " $oops" != " " -o " $status" != " 0"
346 echo "$0: \`$it' failed ($oops)" >&2
350 route-host:*|route-client:*)
351 # connection to me or my client subnet being routed
354 unroute-host:*|unroute-client:*)
355 # connection to me or my client subnet being unrouted
359 # connection to me coming up
360 # If you are doing a custom version, firewall commands go here.
363 # connection to me going down
364 # If you are doing a custom version, firewall commands go here.
367 # connection to my client subnet coming up
368 # If you are doing a custom version, firewall commands go here.
371 # connection to my client subnet going down
372 # If you are doing a custom version, firewall commands go here.
375 # connection to me, with (left/right)firewall=yes, coming up
376 # This is used only by the default updown script, not by your custom
377 # ones, so do not mess with it; see CAUTION comment up at top.
378 iptables -I INPUT 1 -i $PLUTO_INTERFACE -p $PLUTO_MY_PROTOCOL \
379 -s $PLUTO_PEER_CLIENT $S_PEER_PORT \
380 -d $PLUTO_ME $D_MY_PORT $IPSEC_POLICY_IN -j ACCEPT
381 iptables -I OUTPUT 1 -o $PLUTO_INTERFACE -p $PLUTO_PEER_PROTOCOL \
382 -s $PLUTO_ME $S_MY_PORT $IPSEC_POLICY_OUT \
383 -d $PLUTO_PEER_CLIENT $D_PEER_PORT -j ACCEPT
385 # log IPsec host connection setup
388 if [ "$PLUTO_PEER_CLIENT" == "$PLUTO_PEER/32" ]
390 logger -t $TAG -p $FAC_PRIO \
391 "+ `echo -e $PLUTO_PEER_ID` $PLUTO_PEER -- $PLUTO_ME"
393 logger -t $TAG -p $FAC_PRIO \
394 "+ `echo -e $PLUTO_PEER_ID` $PLUTO_PEER_CLIENT == $PLUTO_PEER -- $PLUTO_ME"
399 # connection to me, with (left/right)firewall=yes, going down
400 # This is used only by the default updown script, not by your custom
401 # ones, so do not mess with it; see CAUTION comment up at top.
402 iptables -D INPUT -i $PLUTO_INTERFACE -p $PLUTO_MY_PROTOCOL \
403 -s $PLUTO_PEER_CLIENT $S_PEER_PORT \
404 -d $PLUTO_ME $D_MY_PORT $IPSEC_POLICY_IN -j ACCEPT
405 iptables -D OUTPUT -o $PLUTO_INTERFACE -p $PLUTO_PEER_PROTOCOL \
406 -s $PLUTO_ME $S_MY_PORT $IPSEC_POLICY_OUT \
407 -d $PLUTO_PEER_CLIENT $D_PEER_PORT -j ACCEPT
409 # log IPsec host connection teardown
412 if [ "$PLUTO_PEER_CLIENT" == "$PLUTO_PEER/32" ]
414 logger -t $TAG -p $FAC_PRIO -- \
415 "- `echo -e $PLUTO_PEER_ID` $PLUTO_PEER -- $PLUTO_ME"
417 logger -t $TAG -p $FAC_PRIO -- \
418 "- `echo -e $PLUTO_PEER_ID` $PLUTO_PEER_CLIENT == $PLUTO_PEER -- $PLUTO_ME"
423 # connection to client subnet, with (left/right)firewall=yes, coming up
424 # This is used only by the default updown script, not by your custom
425 # ones, so do not mess with it; see CAUTION comment up at top.
426 if [ "$PLUTO_PEER_CLIENT" != "$PLUTO_MY_SOURCEIP/32" ]
428 iptables -I FORWARD 1 -o $PLUTO_INTERFACE -p $PLUTO_PEER_PROTOCOL \
429 -s $PLUTO_MY_CLIENT $S_MY_PORT \
430 -d $PLUTO_PEER_CLIENT $D_PEER_PORT $IPSEC_POLICY_OUT -j ACCEPT
431 iptables -I FORWARD 1 -i $PLUTO_INTERFACE -p $PLUTO_MY_PROTOCOL \
432 -s $PLUTO_PEER_CLIENT $S_PEER_PORT \
433 -d $PLUTO_MY_CLIENT $D_MY_PORT $IPSEC_POLICY_IN -j ACCEPT
436 # a virtual IP requires an INPUT and OUTPUT rule on the host
437 # or sometimes host access via the internal IP is needed
438 if [ -n "$PLUTO_MY_SOURCEIP" -o -n "$PLUTO_HOST_ACCESS" ]
440 iptables -I INPUT 1 -i $PLUTO_INTERFACE -p $PLUTO_MY_PROTOCOL \
441 -s $PLUTO_PEER_CLIENT $S_PEER_PORT \
442 -d $PLUTO_MY_CLIENT $D_MY_PORT $IPSEC_POLICY_IN -j ACCEPT
443 iptables -I OUTPUT 1 -o $PLUTO_INTERFACE -p $PLUTO_PEER_PROTOCOL \
444 -s $PLUTO_MY_CLIENT $S_MY_PORT \
445 -d $PLUTO_PEER_CLIENT $D_PEER_PORT $IPSEC_POLICY_OUT -j ACCEPT
448 # log IPsec client connection setup
451 if [ "$PLUTO_PEER_CLIENT" == "$PLUTO_PEER/32" ]
453 logger -t $TAG -p $FAC_PRIO \
454 "+ `echo -e $PLUTO_PEER_ID` $PLUTO_PEER -- $PLUTO_ME == $PLUTO_MY_CLIENT"
456 logger -t $TAG -p $FAC_PRIO \
457 "+ `echo -e $PLUTO_PEER_ID` $PLUTO_PEER_CLIENT == $PLUTO_PEER -- $PLUTO_ME == $PLUTO_MY_CLIENT"
461 down-client:iptables)
462 # connection to client subnet, with (left/right)firewall=yes, going down
463 # This is used only by the default updown script, not by your custom
464 # ones, so do not mess with it; see CAUTION comment up at top.
465 if [ "$PLUTO_PEER_CLIENT" != "$PLUTO_MY_SOURCEIP/32" ]
467 iptables -D FORWARD -o $PLUTO_INTERFACE -p $PLUTO_PEER_PROTOCOL \
468 -s $PLUTO_MY_CLIENT $S_MY_PORT \
469 -d $PLUTO_PEER_CLIENT $D_PEER_PORT \
470 $IPSEC_POLICY_OUT -j ACCEPT
471 iptables -D FORWARD -i $PLUTO_INTERFACE -p $PLUTO_MY_PROTOCOL \
472 -s $PLUTO_PEER_CLIENT $S_PEER_PORT \
473 -d $PLUTO_MY_CLIENT $D_MY_PORT \
474 $IPSEC_POLICY_IN -j ACCEPT
477 # a virtual IP requires an INPUT and OUTPUT rule on the host
478 # or sometimes host access via the internal IP is needed
479 if [ -n "$PLUTO_MY_SOURCEIP" -o -n "$PLUTO_HOST_ACCESS" ]
481 iptables -D INPUT -i $PLUTO_INTERFACE -p $PLUTO_MY_PROTOCOL \
482 -s $PLUTO_PEER_CLIENT $S_PEER_PORT \
483 -d $PLUTO_MY_CLIENT $D_MY_PORT \
484 $IPSEC_POLICY_IN -j ACCEPT
485 iptables -D OUTPUT -o $PLUTO_INTERFACE -p $PLUTO_PEER_PROTOCOL \
486 -s $PLUTO_MY_CLIENT $S_MY_PORT \
487 -d $PLUTO_PEER_CLIENT $D_PEER_PORT \
488 $IPSEC_POLICY_OUT -j ACCEPT
491 # log IPsec client connection teardown
494 if [ "$PLUTO_PEER_CLIENT" == "$PLUTO_PEER/32" ]
496 logger -t $TAG -p $FAC_PRIO -- \
497 "- `echo -e $PLUTO_PEER_ID` $PLUTO_PEER -- $PLUTO_ME == $PLUTO_MY_CLIENT"
499 logger -t $TAG -p $FAC_PRIO -- \
500 "- `echo -e $PLUTO_PEER_ID` $PLUTO_PEER_CLIENT == $PLUTO_PEER -- $PLUTO_ME == $PLUTO_MY_CLIENT"
507 prepare-host-v6:*|prepare-client-v6:*)
509 route-host-v6:*|route-client-v6:*)
510 # connection to me or my client subnet being routed
513 unroute-host-v6:*|unroute-client-v6:*)
514 # connection to me or my client subnet being unrouted
518 # connection to me coming up
519 # If you are doing a custom version, firewall commands go here.
522 # connection to me going down
523 # If you are doing a custom version, firewall commands go here.
526 # connection to my client subnet coming up
527 # If you are doing a custom version, firewall commands go here.
530 # connection to my client subnet going down
531 # If you are doing a custom version, firewall commands go here.
534 # connection to me, with (left/right)firewall=yes, coming up
535 # This is used only by the default updown script, not by your custom
536 # ones, so do not mess with it; see CAUTION comment up at top.
537 ip6tables -I INPUT 1 -i $PLUTO_INTERFACE -p $PLUTO_MY_PROTOCOL \
538 -s $PLUTO_PEER_CLIENT $S_PEER_PORT \
539 -d $PLUTO_ME $D_MY_PORT $IPSEC_POLICY_IN -j ACCEPT
540 ip6tables -I OUTPUT 1 -o $PLUTO_INTERFACE -p $PLUTO_PEER_PROTOCOL \
541 -s $PLUTO_ME $S_MY_PORT $IPSEC_POLICY_OUT \
542 -d $PLUTO_PEER_CLIENT $D_PEER_PORT -j ACCEPT
544 # log IPsec host connection setup
547 if [ "$PLUTO_PEER_CLIENT" == "$PLUTO_PEER/128" ]
549 logger -t $TAG -p $FAC_PRIO \
550 "+ `echo -e $PLUTO_PEER_ID` $PLUTO_PEER -- $PLUTO_ME"
552 logger -t $TAG -p $FAC_PRIO \
553 "+ `echo -e $PLUTO_PEER_ID` $PLUTO_PEER_CLIENT == $PLUTO_PEER -- $PLUTO_ME"
557 down-host-v6:iptables)
558 # connection to me, with (left/right)firewall=yes, going down
559 # This is used only by the default updown script, not by your custom
560 # ones, so do not mess with it; see CAUTION comment up at top.
561 ip6tables -D INPUT -i $PLUTO_INTERFACE -p $PLUTO_MY_PROTOCOL \
562 -s $PLUTO_PEER_CLIENT $S_PEER_PORT \
563 -d $PLUTO_ME $D_MY_PORT $IPSEC_POLICY_IN -j ACCEPT
564 ip6tables -D OUTPUT -o $PLUTO_INTERFACE -p $PLUTO_PEER_PROTOCOL \
565 -s $PLUTO_ME $S_MY_PORT $IPSEC_POLICY_OUT \
566 -d $PLUTO_PEER_CLIENT $D_PEER_PORT -j ACCEPT
568 # log IPsec host connection teardown
571 if [ "$PLUTO_PEER_CLIENT" == "$PLUTO_PEER/128" ]
573 logger -t $TAG -p $FAC_PRIO -- \
574 "- `echo -e $PLUTO_PEER_ID` $PLUTO_PEER -- $PLUTO_ME"
576 logger -t $TAG -p $FAC_PRIO -- \
577 "- `echo -e $PLUTO_PEER_ID` $PLUTO_PEER_CLIENT == $PLUTO_PEER -- $PLUTO_ME"
581 up-client-v6:iptables)
582 # connection to client subnet, with (left/right)firewall=yes, coming up
583 # This is used only by the default updown script, not by your custom
584 # ones, so do not mess with it; see CAUTION comment up at top.
585 if [ "$PLUTO_PEER_CLIENT" != "$PLUTO_MY_SOURCEIP/128" ]
587 ip6tables -I FORWARD 1 -o $PLUTO_INTERFACE -p $PLUTO_PEER_PROTOCOL \
588 -s $PLUTO_MY_CLIENT $S_MY_PORT \
589 -d $PLUTO_PEER_CLIENT $D_PEER_PORT $IPSEC_POLICY_OUT -j ACCEPT
590 ip6tables -I FORWARD 1 -i $PLUTO_INTERFACE -p $PLUTO_MY_PROTOCOL \
591 -s $PLUTO_PEER_CLIENT $S_PEER_PORT \
592 -d $PLUTO_MY_CLIENT $D_MY_PORT $IPSEC_POLICY_IN -j ACCEPT
595 # a virtual IP requires an INPUT and OUTPUT rule on the host
596 # or sometimes host access via the internal IP is needed
597 if [ -n "$PLUTO_MY_SOURCEIP" -o -n "$PLUTO_HOST_ACCESS" ]
599 ip6tables -I INPUT 1 -i $PLUTO_INTERFACE -p $PLUTO_MY_PROTOCOL \
600 -s $PLUTO_PEER_CLIENT $S_PEER_PORT \
601 -d $PLUTO_MY_CLIENT $D_MY_PORT $IPSEC_POLICY_IN -j ACCEPT
602 ip6tables -I OUTPUT 1 -o $PLUTO_INTERFACE -p $PLUTO_PEER_PROTOCOL \
603 -s $PLUTO_MY_CLIENT $S_MY_PORT \
604 -d $PLUTO_PEER_CLIENT $D_PEER_PORT $IPSEC_POLICY_OUT -j ACCEPT
607 # log IPsec client connection setup
610 if [ "$PLUTO_PEER_CLIENT" == "$PLUTO_PEER/128" ]
612 logger -t $TAG -p $FAC_PRIO \
613 "+ `echo -e $PLUTO_PEER_ID` $PLUTO_PEER -- $PLUTO_ME == $PLUTO_MY_CLIENT"
615 logger -t $TAG -p $FAC_PRIO \
616 "+ `echo -e $PLUTO_PEER_ID` $PLUTO_PEER_CLIENT == $PLUTO_PEER -- $PLUTO_ME == $PLUTO_MY_CLIENT"
620 down-client-v6:iptables)
621 # connection to client subnet, with (left/right)firewall=yes, going down
622 # This is used only by the default updown script, not by your custom
623 # ones, so do not mess with it; see CAUTION comment up at top.
624 if [ "$PLUTO_PEER_CLIENT" != "$PLUTO_MY_SOURCEIP/128" ]
626 ip6tables -D FORWARD -o $PLUTO_INTERFACE -p $PLUTO_PEER_PROTOCOL \
627 -s $PLUTO_MY_CLIENT $S_MY_PORT \
628 -d $PLUTO_PEER_CLIENT $D_PEER_PORT \
629 $IPSEC_POLICY_OUT -j ACCEPT
630 ip6tables -D FORWARD -i $PLUTO_INTERFACE -p $PLUTO_MY_PROTOCOL \
631 -s $PLUTO_PEER_CLIENT $S_PEER_PORT \
632 -d $PLUTO_MY_CLIENT $D_MY_PORT \
633 $IPSEC_POLICY_IN -j ACCEPT
636 # a virtual IP requires an INPUT and OUTPUT rule on the host
637 # or sometimes host access via the internal IP is needed
638 if [ -n "$PLUTO_MY_SOURCEIP" -o -n "$PLUTO_HOST_ACCESS" ]
640 ip6tables -D INPUT -i $PLUTO_INTERFACE -p $PLUTO_MY_PROTOCOL \
641 -s $PLUTO_PEER_CLIENT $S_PEER_PORT \
642 -d $PLUTO_MY_CLIENT $D_MY_PORT \
643 $IPSEC_POLICY_IN -j ACCEPT
644 ip6tables -D OUTPUT -o $PLUTO_INTERFACE -p $PLUTO_PEER_PROTOCOL \
645 -s $PLUTO_MY_CLIENT $S_MY_PORT \
646 -d $PLUTO_PEER_CLIENT $D_PEER_PORT \
647 $IPSEC_POLICY_OUT -j ACCEPT
650 # log IPsec client connection teardown
653 if [ "$PLUTO_PEER_CLIENT" == "$PLUTO_PEER/128" ]
655 logger -t $TAG -p $FAC_PRIO -- \
656 "- `echo -e $PLUTO_PEER_ID` $PLUTO_PEER -- $PLUTO_ME == $PLUTO_MY_CLIENT"
658 logger -t $TAG -p $FAC_PRIO -- \
659 "- `echo -e $PLUTO_PEER_ID` $PLUTO_PEER_CLIENT == $PLUTO_PEER -- $PLUTO_ME == $PLUTO_MY_CLIENT"
663 *) echo "$0: unknown verb \`$PLUTO_VERB' or parameter \`$1'" >&2