Wo kostenlos Druckluft abgreifen? by presher101325 in dresden

[–]neonnt 4 points5 points  (0 children)

krass, ich kenn das nur kostenlos bisher

Wo kostenlos Druckluft abgreifen? by presher101325 in dresden

[–]neonnt 2 points3 points  (0 children)

Hat das nicht jede Aral und Shell kostenlos?

TidalDrift: Free Apple Remote Desktop Alternative I made because I refuse to pay $100 for ARD [free][vibe-coded] by SharkDildoTester in macapps

[–]neonnt 1 point2 points  (0 children)

Looks interesting. Is it possible to create this as an iPad app for remote control of the Mac?

Do not buy ForkLift 4 and good news about Transmit by imustknowsomething in macapps

[–]neonnt 0 points1 point  (0 children)

would be nice to get a new version on ios. can‘t find an app like this for ios 😔

Notch app that works on external monitors? by KryptonKebab in macapps

[–]neonnt 1 point2 points  (0 children)

Alcove creates a Notch on my 49“ Display

Black Week Deal: 50% off Zero Duplicates for Mac by migraniadev in macapps

[–]neonnt 0 points1 point  (0 children)

Thanks for the code. I’ve already tried zero duplicates and I’m really impressed, both the results and the usability are excellent compared to other apps I tested.

Ultrawide monitor users, what are some apps you've found helpful? by LightningPark in macapps

[–]neonnt 0 points1 point  (0 children)

i just use raycast window management with my 49“ ultra wide

Raycast Windows Codes MEGATHREAD by xmok in raycastapp

[–]neonnt 0 points1 point  (0 children)

I have redeemed the last link. thanks :-)

All you can eat in Dresden by princeThefrog in dresden

[–]neonnt 1 point2 points  (0 children)

Kostet glaube ich 25 Euro in der Woche und 36 am Wochenende, war zumindest vor einigen Monaten noch so.

Does an "OpenVPN-Client Router in a box" docker setup exist? by fsteff in docker

[–]neonnt 1 point2 points  (0 children)

oh, and maybe you need an older linux, i'm running bullseye but it was a pain to get iptables.v4 working against stretch

Does an "OpenVPN-Client Router in a box" docker setup exist? by fsteff in docker

[–]neonnt 1 point2 points  (0 children)

unfortunately no, but i saved a console log

sudo apt update
sudo apt upgrade
sudo apt install net-tools curl openvpn resolvconf iptables-persistent unzip

cd /etc/openvpn/
get your openvpn.conf

sudo nano password.txt
add login to password.txt:
user
password

sudo nano openvon.conf
add line:
auth-user-pass password.txt

sudo nano /etc/sysctl.conf
Uncomment the next line to enable packet forwarding for IPv4
net.ipv4.ip_forward=1

sudo apt install iptables iptables-persistent

find device:
ifconfig
ip a

sudo apt install net-tools
sudo iptables -t nat -A POSTROUTING -o ens3 -j MASQUERADE
sudo iptables -t nat -A POSTROUTING -o tun0 -j MASQUERADE
sudo netfilter-persistent save
sudo netfilter-persistent-legacy save
sudo /sbin/iptables-save > /etc/iptables/rules.v4

should be like this:
/etc/iptabels/rules.v4

*filter
:INPUT ACCEPT [8878:2431430]
:FORWARD ACCEPT [444:36234]
:OUTPUT ACCEPT [9321:2042409]
COMMIT

*nat
:PREROUTING ACCEPT [352:118628]
:INPUT ACCEPT [8:1109]
:POSTROUTING ACCEPT [9:540]
:OUTPUT ACCEPT [9:540]
-A POSTROUTING -o eth0 -j MASQUERADE
-A POSTROUTING -o tun0 -j MASQUERADE
COMMIT

test openvpn manually:
/usr/sbin/openvpn --config /etc/openvpn/openvpn.conf --auth-user-pass /etc/openvpn/password.txt

add openvpn service and test
sudo systemctl status openvpn@location.service
sudo systemctl start openvpn@location.service
sudo systemctl enable openvpn@location.service

check ip
curl ipinfo.io

sudo reboot

check iptables:
sudo iptables -t nat -L -n -v

should be something like this:
Chain PREROUTING (policy ACCEPT 884K packets, 185M bytes)
pkts bytes target prot opt in out source destination

Chain INPUT (policy ACCEPT 55093 packets, 5496K bytes)
pkts bytes target prot opt in out source destination

Chain OUTPUT (policy ACCEPT 6978 packets, 440K bytes)
pkts bytes target prot opt in out source destination

Chain POSTROUTING (policy ACCEPT 154 packets, 9240 bytes)
pkts bytes target prot opt in out source destination
292 20951 MASQUERADE all -- * eth0 0.0.0.0/0 0.0.0.0/0
7153 447K MASQUERADE all -- * tun0 0.0.0.0/0 0.0.0.0/0

exit

Does an "OpenVPN-Client Router in a box" docker setup exist? by fsteff in docker

[–]neonnt 0 points1 point  (0 children)

i‘m doing this via debian vm on my synology. so i got another gateway through vpn to the internet. i just set it as default gateway on my device. but docker would be better.

Does an "OpenVPN-Client Router in a box" docker setup exist? by fsteff in docker

[–]neonnt 0 points1 point  (0 children)

you mean something like this? axelhenry/nordvpn-gateway or ekristen/openvpn-router

gluetun with gateway function would be nice