-
Notifications
You must be signed in to change notification settings - Fork 3k
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
support freebsd's fib feature #550
base: master
Are you sure you want to change the base?
Conversation
I am wondewring if the ifconfig behaviour is intended behaviour or if we working around a bug in ifconfig here in OpenVPN. |
There are also build failures related to macOS. |
Yeah, these are related to the code that was not moved correctly. |
Co-authored-by: Frank Lichtenheld <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
all changes have made
Sorry, it seems I misunderstood earlier.
|
This patch is to support FreeBSD's FIB feature.
When using FreeBSD's
setfib
command to launch OpenVPN in other FIB (routing table), the interface's IP address was not added to correct routing table, and then the routing entries couldn't be added successfully:https://forums.freebsd.org/threads/freebsd-14-and-route-in-non-zero-fib.91099/
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=278295
This is duo to
ifconfig
command does not retrieve FIB number of current envirnment which is set bysetfib
. It only acceptsfib N
parameter.route
command can retrieve FIB number of current envirnment, the following routing entries will be added to correct routing table. But if the interface's IP address was not added correct routing table,route
command will fail.