-
Notifications
You must be signed in to change notification settings - Fork 1
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
Interfaces with "." in the name don't work (e.g. VLAN interfaces) #10
Comments
I just hit this. Any thoughts on how fix it? I guess I can rename the vlan interface name. |
I renamed my |
I fixed this already. I’ll make sure it’s pushed to main. While in at it, can you remind me about the sysctl that fixes the retry issue? That should go in the next ports version.On Aug 31, 2024, at 2:32 AM, Antranig Vartanian ***@***.***> wrote:
I just hit this. Any thoughts on how fix it? I guess I can rename the vlan interface name.
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Thank you for fixing that. I’ll test it as soon as it’s pushed!
It’s the tunable `net.link.ifqmaxlen`, by default it’s set to `50`, I set it to `4096`, but I’m not sure if that’s the right number. I see pfSense is shipped with `net.link.ifqmaxlen: 125` (or 128, can’t remember). Keep in mind this is a kernel tunable, so it needs to be set in `loader.conf` and the system needs a reboot.
Thanks again Daniel!
Kind regards,
—
Antranig Vartanian
https://antranigv.am/
PGP Key ID: 0x2D59F21C
… On 31 Aug 2024, at 3:59 PM, Daniel J. Bell ***@***.***> wrote:
I fixed this already. I’ll make sure it’s pushed to main. While in at it, can you remind me about the sysctl that fixes the retry issue? That should go in the next ports version.On Aug 31, 2024, at 2:32 AM, Antranig Vartanian ***@***.***> wrote:
I just hit this. Any thoughts on how fix it? I guess I can rename the vlan interface name.
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: ***@***.***>
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Netgraph wants "interface_name" rather than "interface.name" as seen by ifconfig.
This is easily fixable, but it also occurs to me that there might be a tricky startup race condition with VLANs because we need to wait until they're cloned before we can bind to them.
The text was updated successfully, but these errors were encountered: