TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Dissecting OpenBSD's divert(4)

69 pointsby fcambusover 10 years ago

3 comments

mbenover 10 years ago
Check pf-diverters [1]. We are using them in our openbsd firewalls in order to block unwanted connections.<p>[1] <a href="https://github.com/echothrust/pf-diverters" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;echothrust&#x2F;pf-diverters</a>
mctover 10 years ago
There is a similar feature in Linux which I&#x27;ve used a number of times over the years to simulate various network problems, and to modify packets flowing through my router in interesting ways.<p>You can select packets to be sent to userspace with the &quot;-j QUEUE&quot; iptables target handler, and then read those packets using libnetfilter.
gizzlonover 10 years ago
Cool, I run a pf firewall but this was news to me.<p>Anyone have any idea of the performance overhead? (Not that it really matters for me, just curious)