Project

General

Profile

Download (1.14 KB) Statistics
| Branch: | Tag: | Revision:
1
#!/bin/sh
2
#
3
# openvpn.attributes.sh
4
#
5
# part of pfSense (https://www.pfsense.org)
6
# Copyright (c) 2004-2013 BSD Perimeter
7
# Copyright (c) 2013-2016 Electric Sheep Fencing
8
# Copyright (c) 2014-2019 Rubicon Communications, LLC (Netgate)
9
# All rights reserved.
10
#
11
# Licensed under the Apache License, Version 2.0 (the "License");
12
# you may not use this file except in compliance with the License.
13
# You may obtain a copy of the License at
14
#
15
# http://www.apache.org/licenses/LICENSE-2.0
16
#
17
# Unless required by applicable law or agreed to in writing, software
18
# distributed under the License is distributed on an "AS IS" BASIS,
19
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20
# See the License for the specific language governing permissions and
21
# limitations under the License.
22

    
23
if [ "$script_type" = "client-connect" ]; then
24
	if [ -f /tmp/$common_name ]; then
25
		/bin/cat /tmp/$common_name > $1
26
		/bin/rm /tmp/$common_name
27
	fi
28
elif [ "$script_type" = "client-disconnect" ]; then
29
	command="/sbin/pfctl -a 'openvpn/$common_name' -F rules"
30
	eval $command
31
	/sbin/pfctl -k $ifconfig_pool_remote_ip
32
	/sbin/pfctl -K $ifconfig_pool_remote_ip
33
fi
34

    
35
exit 0
(7-7/30)