Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Deriving the Landauer Principle from the Quantum Shannon Entropy(acs.org)
    discuss
  2. Commodore's forgotten Amiga Unix gets a modern revival(theregister.com)
    discuss
  3. FAA debuts its AI-powered tool for managing flight traffic(politico.com)
    discuss
  4. Nginx (1.31.5) – Ngx_HTTP_JSON_module(nginx.org)
    discuss
  5. Study: Young users (9 to 18Y) ditch Google for AI, with unknown consequences(norwegianscitechnews.com)
    discuss
  6. Ask HN: What do you expect from the next 5 years of AI?
    discuss
  7. ONELite – Digital Guard(play.google.com)
    discuss
  8. Show HN:Clipwise – a Notion web clipper with no account and no server(chromewebstore.google.com)
    discuss
  9. Organizing with Bayes(heat-shield.space)
    discuss
  10. jev-router: route to the cheapest model in claude code for your task(github.com/gargpratyush)
    discuss
  11. EU and Philippines agree free trade deal(reuters.com)
    discuss
  12. Looking back at my first year as the Renovate Project Lead(jvt.me)
    discuss
  13. Meritocracy and Inequality Acceptance(nature.com)
    discuss
  14. Find 20x more prospects discussing problem you solve(markai.io)
    discuss
  15. How AI is impacting who gets to cross borders(taylorandfrancisgroup.com)
    discuss
  16. Does Image batch processing (styling/conversions) is underrated?
    discuss
  17. Returning Soldier Effect(wikipedia.org)
    1comments
  18. Lu Ban's Axe and Working with Your Chinese Suppliers(hackaday.com)
    discuss
  19. Autonomous Plane Becomes the First to Fly Coast to Coast on Its Own(gizmodo.com)
    discuss
  20. AI Mode for Emacs(github.com/ai-mode)
    discuss
  21. Tell HN: Claude Code just accepted and signed a contract for me. Without asking
    29comments
  22. I'm screwing 1M screws into a wall, one per dollar the internet sends(1millionscrews.com)
    discuss
  23. Apple Music Hall(applemusichall.com)
    discuss
  24. Generals: Zero Hour in Browser(generals.zone)
    1comments
  25. Textbook Review: Is Parallel Programming Hard, and, If So, What Can You Do About(ahelwer.ca)
    discuss
  26. AMD's random number generator can't generate a 0?(flatassembler.net)
    discuss
  27. How I Made Palmer Luckey and Paul Graham Perform Hotel Lobby(skeptrune.com)
    discuss
  28. The .au namespace is about to be gutted, and almost nobody knows it's happening(reddit.com)
    discuss
  29. Brazilian researcher who helped country's grain boom wins World Food Prize(reuters.com)
    discuss
  30. OpenPrinter: Open Source Printer(crowdsupply.com)
    discuss

Show HN: Cheap and easy throwaway VPN server

2 pointsby 2h agoa.l3x.in
2 comments
2h agoHN ↗

You don't even need wireguard really, you could just use ssh -D by itself, then either your browser (or foxyproxy) or individual app can point to the local socks proxy, or you can use tun2socks to make a tun(4) network interface out of it. Optionally you can use a network namespace to only route certain apps through it.

Or ssh -w can do the tun(4) interface for you, and supports both layer 2 and layer 3.

True that it won't be using UDP (or sshuttle can fix TCP-in-TCP issues for you), but for my usecase it works out better anyway, as many places I frequent restrict UDP usage. Even China doesn't block SSH.

1h agoHN ↗

Fair, I still have to find a place that restricts UDP but iirc WireGuard should offer TCP as well.

By the way, if you check out the repository's README it already shows the SSH use case, but why not to have WireGuard available too? with it there's no need to manually setup any application to use/not use SOCKS, it's as simple as click "Connect" in the WireGuard client and all the traffic including ICMP and what not is tunneled through the server. It can even be installed at the router level so to have all the LAN traffic tunneled automatically, can't easily do that with SSH.

Different use cases, not saying SSH isn't valid, I just prefer WireGuard UX.