• 0 posts
  • 79 comments
Joined 1 year ago
Cake day: June 4th, 2025
  • I’m so tired of coding for work, even though I always liked the thrill of just exploring where a project would take me. I’ve been neglecting my personal projects and, over time, stopped feeling bad about it. I have plenty of opportunities at work to learn about new things, it’s okay if I do something unrelated in my free time.

    LLMs gave me some relief with work and I’m now able to at least think about programming other things for fun, but haven’t done any actual project yet.

  • You can easily forward arbitrary IP traffic if you get an additional IP for that VPS. Then you add the IP as your own on the local end, and set up routing like

    ip r a 1.2.3.4 via 10.10.10.10 dev wg0 where 1.2.3.4 is the extra ip, and 10.10.10.10 is your local wireguard address.

    With just one IP, you can forward ports over wireguard with iptables, but I failed to do that correctly.

    Now I’m using xinetd to forward traffic from external ports to Wireguard with a single IP. iptables would be better but I ran out of patience.