No authenticate log in openvpn.log

This forum is for general conversation and user-user networking.

Moderators: TinCanTech, TinCanTech, TinCanTech, TinCanTech, TinCanTech, TinCanTech

Post Reply
tienpro113396
OpenVpn Newbie
Posts: 3
Joined: Tue Mar 17, 2020 2:14 pm

No authenticate log in openvpn.log

Post by tienpro113396 » Tue Mar 31, 2020 3:26 am

Dear all,
I edited /usr/local/sbin/openvpn.attributes.sh to get disconnected log, but last 2 days I can't see authenticated log although it generated by default. I changed log verbose to level 4 but nothing change.
My file:

Code: Select all

#!/bin/sh
#
# openvpn.attributes.sh
#
# part of pfSense (https://www.pfsense.org)
# Copyright (c) 2004-2020 Rubicon Communications, LLC (Netgate)
# All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

if [ "$script_type" = "client-connect" ]; then
        if [ -f /tmp/$common_name ]; then
                /bin/cat /tmp/$common_name > $1
                /bin/rm /tmp/$common_name
                /bin/echo "$(date +'%b %d %H:%M:%S') pfSense2 openvpn: user '${common_name}' authenticated" >> /var/log/openvpn.log #for test
                /bin/echo "$(date +'%b %d %H:%M:%S') pfSense2 openvpn: user '${common_name}' authenticated" >> /home/tien.tran/testlog.log #for test
        fi
elif [ "$script_type" = "client-disconnect" ]; then
        command="/sbin/pfctl -a 'openvpn/$common_name' -F rules"
        eval $command
        /sbin/pfctl -k $ifconfig_pool_remote_ip
        /sbin/pfctl -K $ifconfig_pool_remote_ip
        /bin/echo "$(date +'%b %d %H:%M:%S') pfSense2 openvpn: user '${common_name}' disconnected" >> /var/log/openvpn.log
fi

exit 0
Any solutions for that?
Thanks & Regards

tienpro113396
OpenVpn Newbie
Posts: 3
Joined: Tue Mar 17, 2020 2:14 pm

Re: No authenticate log in openvpn.log

Post by tienpro113396 » Tue Mar 31, 2020 3:28 am

And I have to config "log-append /var/log/openvpn.log" to get log although all log is generated by default

Post Reply