To clarify, I am using a sub-domain and not seeing an issue but apparently if you use a root domain then there is a setting not yet implemented within the opnsense plugin that will cause an issue.
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 MenuQuote
sysctl dev.ix.X.advertise_speed=N
Where X is the interface number (e.g. for ix0, X=0 in the command above) and N is the sum of the advertised speeds, works.
In hex and decimal:
Control advertised link speed using these flags:
0x1 - 1 - advertise 100M
0x2 - 2 - advertise 1G
0x4 - 4 - advertise 10G
0x8 - 8 - advertise 10M
0x10 - 16 - advertise 2.5G
0x20 - 32 - advertise 5G
100M and 10M are only supported on certain adapters.
To add advertisement of 2.5G and 5G on ix0:
sysctl dev.ix.0.advertise_speed=55
Since 7 + 16 + 32 = 55.
Quote
sysctl dev.ix.X.advertise_speed=N
Where X is the interface number (e.g. for ix0, X=0 in the command above) and N is the sum of the advertised speeds, works.
In hex and decimal:
Control advertised link speed using these flags:
0x1 - 1 - advertise 100M
0x2 - 2 - advertise 1G
0x4 - 4 - advertise 10G
0x8 - 8 - advertise 10M
0x10 - 16 - advertise 2.5G
0x20 - 32 - advertise 5G
100M and 10M are only supported on certain adapters.
To add advertisement of 2.5G and 5G on ix0:
sysctl dev.ix.0.advertise_speed=55
Since 7 + 16 + 32 = 55.