]> git.ipfire.org Git - people/ms/network.git/blame - src/helpers/ipsec-updown
Makefile: Fix typo in localstatedir
[people/ms/network.git] / src / helpers / ipsec-updown
CommitLineData
67baa452
MT
1#!/bin/bash
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2017 IPFire Network Development Team #
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it under the terms of the GNU General Public License as published by #
9# the Free Software Foundation, either version 3 of the License, or #
10# (at your option) any later version. #
11# #
12# This program is distributed in the hope that it will be useful, #
13# but WITHOUT ANY WARRANTY; without even the implied warranty of #
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15# GNU General Public License for more details. #
16# #
17# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
21
22LOG_DISABLE_STDOUT="true"
23
24. /usr/lib/network/functions
25
26# Read network settings
27network_settings_read
28
29# Make sure we are called by strongSwan
30assert isset PLUTO_VERSION
31
93a9eeb0
JS
32if enabled DEBUG; then
33 while read line; do
34 [[ ${line} =~ ^PLUTO_ ]] || continue
35 log DEBUG " ${line}"
36 done <<< "$(printenv | sort)"
37fi
38
67baa452
MT
39CONNECTION="${PLUTO_CONNECTION}"
40
41if ! ipsec_connection_read_config "${CONNECTION}"; then
42 log ERROR "Could not read configuration for ${CONNECTION}"
43 exit ${EXIT_ERROR}
44fi
45
46log DEBUG "${0} called for ${CONNECTION}: ${PLUTO_VERB}"
47
48case "${PLUTO_VERB}" in
7bb41ec4 49 up-client|up-client-v6|up-host|up-host-v6)
4f5f487a
MT
50 if isset ZONE && zone_exists "${ZONE}"; then
51 # Bring up the zone if not done, yet
52 if ! zone_is_up "${ZONE}"; then
53 zone_up "${ZONE}"
54 fi
82fac748 55
4f5f487a 56 # Update peer and local address
e96c7bae
MT
57 if ! ip_tunnel_change "${ZONE}" \
58 --remote="${PLUTO_PEER}" --local="${PLUTO_ME}"; then
4f5f487a
MT
59 return ${EXIT_ERROR}
60 fi
4f5f487a 61 fi
202aa309 62
d7500923 63 # Get source IP for routes
048afd07
JS
64 SRC_IP=($(ip_get_assigned_addresses_from_net \
65 "${PLUTO_MY_CLIENT}" "permanent"))
66
d7500923
MT
67 # We take the lowest source IP we found,
68 # which is ugly because the value is unpredictable.
69 SRC_IP=${SRC_IP[0]}
048afd07 70
d7500923
MT
71 # Add routes to reach the remote subnet(s)
72 if isset ZONE; then
73 if ! cmd ip route add "${PLUTO_PEER_CLIENT}" proto static dev "${ZONE}" src "${SRC_IP}"; then
74 log ERROR "Could not create route for ${PLUTO_PEER_CLIENT}"
75 fi
76 else
77 if ! cmd ip route add "${PLUTO_PEER_CLIENT}" proto static via "${PLUTO_PEER}" src "${SRC_IP}"; then
78 log ERROR "Could not create route for ${PLUTO_PEER_CLIENT} via ${PLUTO_PEER}"
048afd07 79 fi
202aa309 80 fi
67baa452
MT
81 ;;
82
7bb41ec4 83 down-client|down-client-v6|down-host|down-host-v6)
202aa309
MT
84 # Remove routes
85 cmd ip route del "${PLUTO_PEER_CLIENT}"
67baa452
MT
86 ;;
87esac
88
89exit ${EXIT_OK}