after some more research i found the problem. There is still one question about.
Offical Docs Opnsense:
https://docs.opnsense.org/troubleshooting/performance.html
for other systems (DEC697 has 4-cores):
next is working on latency but that has now a bit time.
can be closed :)
Offical Docs Opnsense:
https://docs.opnsense.org/troubleshooting/performance.html
Code Select
net.isr.maxthreads = -1
net.isr.bindthreads = 1Add another tunable. This time, we're allowing NIC drivers to use ISR queues.Code Select
net.isr.dispatch = deferredNext up is to add tunables enabling RSS. (Note that net.inet.rss.bits should be set to the square root of how many cores you have.)Code Select
net.inet.rss.enabled = 1
net.inet.rss.bits = 2for other systems (DEC697 has 4-cores):
Code Select
net.inet.rss.bits = xCode Select
for 4-core systems, use '2'
for 8-core systems, use '3'
for 16-core systems, use '4'
Etc.next is working on latency but that has now a bit time.
can be closed :)
"

