And, with this change, it seems we no longer require nexthop to be loopback interface (V_lo) for blackhole / rejected routes.
- Queries
- All Stories
- Search
- Advanced Search
- Transactions
- Transaction Logs
Advanced Search
Nov 13 2024
Is this a replacement of D46301 ?
Nov 12 2024
Nov 11 2024
Looks good to me.
Nov 7 2024
Also encounter this issue on VMware Fusion (13.5.2). @yuripv May you please MFC this fix to stable/13 branch , or I can do that if no objections ?
Nov 6 2024
Do you hint that one listening socket can have multiple / change the fib number ? That sounds not possible
Well, what if we allow changing the fib number of listening socket, so filtering new connections based on the new fib number ?
Nov 4 2024
In D47384#1080748, @melifaro wrote:In D47384#1080729, @markj wrote:In fact, this probably does not go far enough. I'm not sure when it's useful to change the fibnum of a socket after creation time, but it's dangerous in general since the fibnum is also inherited by the inpcb.
What about multi-fib-aware applications? For example, nginx allows to specify a specific fib for each listening socket.
Nov 1 2024
Oct 31 2024
In D47314#1079145, @kib wrote:This is indeed a workaround, I remember fixing something similar for ports' variant of if_re. The fix was to move the ether_ifattach() after the media structures are initialized,
https://github.com/alexdupre/rtl_bsd_drv/commit/2a97cc982d0362b69040d1c849f697ff61e37106I did not looked at the bge code to confirm that it is the case.
Oct 30 2024
Landed as c59a5fbd8a2e (ena: Fix driver unload crash).
In D47332#1079398, @igoro wrote:Another point is how to deal with sysctl which are "per jail" and vnet-related as well. I guess, they could end up with both flags?
sysctl: Add missing CTLFLAG_PRISON to security.jail.children.*
This looks good to me.
Oct 29 2024
Oct 28 2024
Added -J flag to filter jail prison variables.
Oct 25 2024
This change is focusing on VNET variables, but is open for -J ( CTLFLAG_PRISON ) if requested.
Use -V instead. Added Xr jail 8 .
Oct 24 2024
In D47234#1077261, @kp wrote:It's not as straightforward for '-A' as it'd be for other options, but we should look into writing a test case for this too.
Known bugs are an obvious candidate for test cases after all.
In D46794#1077535, @stephan.dewt_yahoo.co.uk wrote:In D46794#1076717, @zlei wrote:Is that specific to FreeBSD only ? I do not see this workaround in Linux driver https://github.com/torvalds/linux/blob/master/drivers/net/ethernet/amd/xgbe/xgbe-dev.c#L2855 .
I don't know for sure, but chances are this issue has never been seen on Linux given the low adoption.
Oct 22 2024
Looks good to me.
A following fix for the netlink based implementation requires this refactoring
Oct 21 2024
In D46794#1076531, @stephan.dewt_yahoo.co.uk wrote:Just to comment on the unconditional promisc mode initialization, this is shown in more detail here: https://github.com/freebsd/freebsd-src/blob/main/sys/dev/axgbe/xgbe-dev.c#L2032-L2036.
Rebased onto latest main.
Oct 20 2024
Oct 19 2024
I'd like to push this to main and MFC to stable/14. Any objections ?
My personal usage is get vnet tunables via the combination of -J and -T. This has been in my local working tree for quite a long time, mainly to support working on D39638 .
This should also fix https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=275381 . See also D42678 .
Oct 17 2024
Oct 15 2024
Address @Jose 's comment.