• Status Page, OpenVPN Widget

    3
    0 Votes
    3 Posts
    395 Views
    GilG

    Point taken.
    As I said, I can always include that within the CN for each P2P router.

  • OpenVPN Multiple Remote Networks and LAN firewall rule gateway.

    1
    0 Votes
    1 Posts
    185 Views
    No one has replied
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    15 Views
    No one has replied
  • pfSense router/firewall on the edge & OpenVPN

    6
    0 Votes
    6 Posts
    581 Views
    RicoR

    Ahhh I see....meant if you really care about security I suggest you not to install any custom/unofficial pfSense packages via the commandline.
    Only use the official repository.

    -Rico

  • Can't login to pfsense via OpenVPN (and other weird issues)

    2
    0 Votes
    2 Posts
    284 Views
    S

    I want to solve my own issue.

    After hours and hours of testing things out, the problem was rather simple. I just had to go to the

    OpenVPN Server settings -> Tunnel Settings -> IPv4 Local network(s)

    and just add my WAN network to the list.

    I guess that's why it never showed up in the logs. Because it wasn't ever blocked by the firewall. The VPN-users just never had any access to it

    I still can't login via my LAN-net IP. Not sure why that doesn't work, still. but it works via HAproxy. So maybe it's an http/https issue

  • pfSense OpenVPN server with user auth (LDAP) and hardware certificate

    5
    0 Votes
    5 Posts
    565 Views
    R

    OK, so there is no way. Thanks again!

  • How to add QoS only for one Vlan

    1
    0 Votes
    1 Posts
    110 Views
    No one has replied
  • New Version of openvpn-client-export

    3
    0 Votes
    3 Posts
    516 Views
    N

    Interestingly, when I went to upgrade the openvpn-client-export, the upgrade hung on, "Please wait while the update system initializes." I gave it some time and then clicked back to Installed Packages tab and it looked like it installed. As a test, I removed the openvpn-client-export and the same hang occurred, "Please wait while the update system initializes." I gave it some time and then clicked back to the Installed Packages tab and it looks like it was removed. I then went to the Available Packages tab and installed the openvpn-client-export and the Package Installer tab showed the installation process all the way to "Success." Odd...I remember when an upgrade or removal showed the process, not just the install.

  • [solved] Remote Access won't pass into Site to Site

    3
    0 Votes
    3 Posts
    444 Views
    E

    @viragomann Got it working. Thank you!

  • TAP-Windows adapter error

    3
    0 Votes
    3 Posts
    484 Views
    C

    I "solved" the problem as follows: The operating system on my remote computer is Windows10 and my installed version of the TAP Windows adaptor is 9.25. In desperation, I also installed an older verson 9.21 which I found on the Internet. Suddenly the 9.25 adaptor started working and I have had no problems ever since. I can disable the 9.25 version, and the 9.21 version works. I can disable the 9.21 version and the 9.25 version works. Obviously I don't understand this but my VPN is working now and I can successfully communicate with the office from my remote computer.

    I am not an operating system or networking expert and I don't understand all of the fine details of a VPN. But my simple VPN is working and I am happy.

    Thanks to everybody who tried to help me.

  • 2 VPN's. Remote Access not able to ping LAN

    5
    0 Votes
    5 Posts
    383 Views
    RicoR

    Glad you have it working now.

    -Rico

  • Log user connections and disconnections from OpenVPN server

    4
    0 Votes
    4 Posts
    1k Views
    noplanN

    I would go a road like that

    Write information useded in that email into a text file

    Send this file via cron to another machine

    Doin the reporting stuff there

    Sounds like a nice project

  • Set my pfsense firewall as my gateway

    1
    0 Votes
    1 Posts
    125 Views
    No one has replied
  • OpenVPN Gateway for pfSense running on Atomic Pi

    1
    0 Votes
    1 Posts
    424 Views
    No one has replied
  • How to test if a gateway is online from a bash script? (Script Included)

    13
    0 Votes
    13 Posts
    2k Views
    G

    Many thanks to all who provided assistance. Here is the finished script for anyone who may want to use/adapt it. If anyone wants to review/ provide suggestions or sees that I've done anything that could cause issues, please feel free to do so.

    #!/bin/sh # # restartvpn: Restart the OpenVPN client if it is down. The restart is supressed # if the WAN is down. # # -f / -F : Force: Force reset even if VPN is not down # -q / -Q : Quiet: Supress printed output # WAN_ID='WAN_DHCP' # WAN Gateway ID String VPN_IDs='XXXXX_VPNV4' # VPN Gateway ID Strings (Separate with a space) VPN_GWs='1' # VPN Client ID of gateway GW_DOWN='down' # Gateway down status string # -q / -Q : Quiet: Supress printed output silent=$(echo $@- | awk '{print (/-[qQ]/ ? 1 : 0)}') # -f / -F : Force: Force reset even if VPN is not down force=$(echo $@ | awk '{print (/-[fF]/ ? 1 : 0)}') restartvpn(){ # # Restart VPN client $VPN_GW # WD=$([ "$WAN_STAT" = "$GW_DOWN" ] && echo "WAN DOWN:" || echo "") FC=$([ $force -eq 1 ] && echo "FORCED:" || echo "") msg=$(echo $(date +%y/%m/%d-%H:%M:%S-)${ID}-${WD}${FC}$(/usr/local/sbin/pfSsh.php playback svc restart openvpn client $VPN_GW)) [ $silent -eq 0 ] && echo $msg logger "***** ${msg}" } gwstat=$(pfSsh.php playback gatewaystatus) WAN_STAT=$(echo "$gwstat" | awk '/'$WAN_ID'/{print $NF}') PUBLIC_IP=$(echo "$gwstat" | awk '/'$WAN_ID'/{print $3}') if [ $silent -eq 0 ];then echo -e "$(basename $0) - Public IP: $PUBLIC_IP - $(date)\n\n$gwstat\n" fi if [ "$WAN_STAT" = "$GW_DOWN" -a $force -eq 0 ];then msg=$(echo "$(date +%y/%m/%d-%H:%M:%S-)WAN is down-VPN restart not attempted.") [ $silent -eq 0 ] && echo $msg logger "***** ${msg}" return 1 fi gw=1 for ID in $VPN_IDs;do VPN_STAT=$(echo "$gwstat" | awk '/'$ID'/{print $NF}') VPN_GW=$(echo $VPN_GWs|cut -w -f $gw) if [ -n "$VPN_STAT" ];then [ $silent -eq 0 ] && echo VPN Gateway: $ID - $([ "$VPN_STAT" = "$GW_DOWN" ] && echo "DOWN" || echo "UP") if [ "$VPN_STAT" = "$GW_DOWN" -o $force -eq 1 ];then restartvpn return 1 fi else [ $silent -eq 0 ] && echo No active gateway $ID fi gw=gw+1 done
  • Route a Fake subnet to Clients with same LAN subnet

    5
    0 Votes
    5 Posts
    870 Views
    jimpJ

    That NAT must be done on the client side, as others have stated, but since you are using OpenVPN there is a chance you can pull it off.

    I have not tried this but OpenVPN also has built-in NAT:

    --client-nat snat|dnat network netmask alias This pushable client option sets up a stateless one-to-one NAT rule on packet addresses (not ports), and is useful in cases where routes or ifconfig settings pushed to the client would create an IP numbering conflict. network/netmask (for example 192.168.0.0/255.255.0.0) defines the local view of a resource from the client perspective, while alias/netmask (for example 10.64.0.0/255.255.0.0) defines the remote view from the server perspective. Use snat (source NAT) for resources owned by the client and dnat (destination NAT) for remote resources.

    So you could try this in the client config:

    client-nat dnat 10.100.0.0/255.255.255.0 192.168.0.0/255.255.255.0

    That could be pushed in a client-specific override as well.

  • OpenVPN change server virtual interface

    11
    0 Votes
    11 Posts
    1k Views
    V

    @JKnott

    The pfsense is used as only a VPN box, it is not used as a gateway by any other equipment. I think i should have mentioned this in the beginning. The pfsense only has an interface on that subnet with an IP. Like i mentioned, right now what i set up is working.

    But this does not get to the question i was asking, which is if i can change the server virtual ip address which the openvpn raises on the interface, disregarding on what i am trying to implement or not.

  • Port Forwarding over OpenVPN

    3
    0 Votes
    3 Posts
    412 Views
    T

    Hi,

    I had this working but changed the OpenVPN Settings recently to not route all traffic through the vpn and it has stopped working. Once I resolve the VPN Issue I will confirm the full configuration to help others out.

    Regards,

  • 0 Votes
    1 Posts
    391 Views
    No one has replied
  • NAT network over OpenVPN

    5
    0 Votes
    5 Posts
    607 Views
    A

    Well, after other issues that were blocking the project, nat for me worked as I described above:
    nterface: VPN (interface aded in interface> add ovpns)
    External subnet IP: 172.16.8.0
    Internal IP: 192.168.0.0/24
    I comment it in case someone comes across the post and it serves.
    Thank you very much for the answers.

Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.