Wireguard statt OpenVPN Setup Ubuntu-Server & Windows Client

Windows Wireguard Client Installieren VPN Forwarding Step 1: Accept all traffic created by wg0 interface Allow all traffic on wg0 interface: Step 2: Configuring FORWARD rules We must allow for packets being routed through the WireGuard server by setting up the FORWARD rule. The syntax is: Step 3: Open WireGuard UDP port # 51194  Finally, weiterlesen…

Simple VPN with OpenVPN Server Script

Create OpenVPN Server and Client wget https://git.io/vpn -O openvpn-ubuntu-install.sh chmod +x openvpn-ubuntu-install.sh sudo ./openvpn-ubuntu-install.sh Copy the from the Script generated *.ovpn file to your Client Desktop Get The Client from: https://openvpn.net/download-open-vpn/ Import the *.ovpn file inside the Windows Client or use the terminal openvpn with the *.ovpn file as parameter. Internet by OpenVPN: Routing Configuration weiterlesen…

Fix Network Issues on Win10

Wenn die WLAN Verbindung langsam ist hilft möglicherweiße ein Treiber Update über die Bereitgestellte INI der Herstellerwebseite der Netzwerkkarte, Gerade nach neuen Windows Updates liegen Treiber noch nicht beim Notebookhersteller vor. Oft liegen diese auch nur als INI Datei vor und müssen über den Gerätemanager Upgedated werden. Wenn Webseiten nicht richtig geladen werden, z.B. Bilder weiterlesen…

SSH Tunnel over http proxy

UNBLOCK YOURSELF GUIDE you need a SOCKS5 to handle every connection type? ssh is blocked? add an aditional ssh port nano /etc/ssh/sshd_config # This is ssh server systemwide configuration file. Port 22 Port 8080 # Add this line to accept ssh connections on 8080 service sshd restart SSH config file nano ~/.ssh/config ## Outside of the firewall, with HTTPS weiterlesen…