-
Notifications
You must be signed in to change notification settings - Fork 759
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed bug which caused the some cache files not being created #1524
Conversation
…pv6 files to not be generated. According to: https://redmine.pfsense.org/issues/3669
|
Hi @theq86, Thanks! There is indeed something wrong here, but it looks like we should get rid of the cacheipv6 file trickery and align the code a bit more. IPv4 doesn't use this workaround so IPv6 should be the same. I'll see what I can do and report back. :) Cheers, |
|
I've added f729d88 but won't be able to test this before tomorrow. |
|
Thanks. I will apply the changes live on my opnSense and test as well. |
|
There are some devel changes, I don't think it's fully compatible with 17.1.4 at this point. Be careful 😊
… On 6. Apr 2017, at 12:55, theq86 ***@***.***> wrote:
Thanks. I will apply the changes live on my opnSense and test as well.
—
You are receiving this because you were assigned.
Reply to this email directly, view it on GitHub, or mute the thread.
|
|
You're right. I reverted to my temporary fix. It works and it will do until your changes find the way into the release. |
|
@fichtner Will this fix make it to the 17.1.5 release? |
|
opnsense-devel on 17.1.5 will have it. If someone could test it would speed up inclusion. When 17.1.5 is out I can also provide a clean patch for this change only if something else on -devel doesn't work, which could be, but normally it's fine too. 😊
… On 23. Apr 2017, at 14:02, Marco Woitschitzky ***@***.***> wrote:
@fichtner Will this fix make it to the 17.1.5 release?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or mute the thread.
|
|
If I run |
|
# opnsense-update -t opnsense-devel
It'll install the latest 17.7 prerelease GUI package, kernel and base are the same as the 17.1 release. -devel is fixed build, it currently does not include these changes, but will once 17.1.5 is out.
With git you can get the latest -devel changes afterwards anyway:
# opnsense-code core
# cd /usr/core
# make upgrade
… On 23. Apr 2017, at 15:02, Marco Woitschitzky ***@***.***> wrote:
If I run pkg install -y opnsense-devel as described in https://docs.opnsense.org/contribute.html#testing do I end up with an pre-release of 17.1.5 or an development version of 17.7?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or mute the thread.
|
|
I'll try to test the fix, but I don't expect to find time for this during the next two weeks. |
|
The backported patch for 17.1.5: (run once to apply, run again to remove) |
|
Since this pull request will never make it as it is, should we reject and close it? |
|
@theq86 a pull request cannot be converted to a ticket. |
|
Okay, then I close it because the issue presented in this pull request is going to be resolved by other commits. |
|
I'll give feedback f31964a |
|
@theq86 your patch will go into 17.1.7 via 805cac40 -- thanks! we're reworking and unifying the IP renewal for IPv4 and IPv6 completely for 17.7, so this buys some time. The code hasn't been dusted off in a very long time. :) |
Hello, since opnSense is a fork of pfSense I found a solution for a problem I had with opnSense in the pfSense bugtracker. See: https://redmine.pfsense.org/issues/3669
They state, that there are 2 bugs which cause the cache files /var/db/wan_cacheip and /var/db/wan_cacheipv6 not being created.
One of the bugs is already fixed in pfSense as well as opnSense.
The other bug concerning IPv6 is fixed by my change and working for me.
For me, the bug caused OpenVPN restart every 15 minutes, when WAN has IPv6 enabled. Now it works.
However, I do not know the whole opnSense and can not say if this fix would have other side-effects.