Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - firetron

#1
ProtonVPN's pfSense guide was a total fail for me in 19.7 so you seem to be a few steps ahead of me.
#2
johnw, this is the issue we are having. did you get around this somehow?

Quote from: thereaper on June 17, 2019, 08:45:30 AM
on step 8:

Enabling new Interface with OpenVPN client:
> IPv4 Configuration Type: DHCP

OPNsense GUI gives me error: "Cannot assign an IP configuration type to a tunnel interface"
#3
Quote from: johnw230873 on August 01, 2019, 10:40:56 AM
Did you get it working as i use nordvpn and it works fine for me
Did you try it on 19.7? Or did you do it on 19.1 and it just continued to work after upgrading to 19.7?
#4
Other tutorials say to assign an interface, and set IPv4 Configuration Type: DHCP
This worked in 19.1 but in 19.7 it shows an error "Cannot assign an IP configuration type to a tunnel interface".
I noticed in your tutorial here, you do not assign an interface at all. Is it not necessary to assign an interface?
#5
I'm stuck on this too. I see that in the code, the option will always error for ovpn:
https://github.com/opnsense/core/blob/master/src/www/interfaces.php
        if ($pconfig['type'] != 'none' || $pconfig['type6'] != 'none') {
            if (strstr($pconfig['if'], 'gre') || strstr($pconfig['if'], 'gif') || strstr($pconfig['if'], 'ovpn') || strstr($pconfig['if'], 'ipsec')) {
                $input_errors[] = gettext('Cannot assign an IP configuration type to a tunnel interface.');
            }
        }

I assume this means that the opnsense developer learned that this is improper for openvpn, and is now forcing us to do it the right way. The problem is that no vpn providers know how to do it the right way yet.
In the opnsense 19.7 release notes, this is the only mention of openvpn:
QuoteOpenVPN no longer supports listening on gateway groups.  Use localhost paired with port forwards instead.
Maybe that has something to do with it.