Git Product home page Git Product logo

wireguard's Introduction

Wireguard

Setup Scripts to create a Wireguard reverseVPN

Preparation:

  1. Domain: 1 Zone with Wildcard CNAME (completely free) from dynv6.com
  2. Install wireguard-tools locally to generate Keys
  3. wg0 config files with keys prepared (see below)
  4. Cloud server with public IP/IPv6
    • Kernel with Wireguard
    • Firewalld, Docker, Docker-Compose, nano, cron and wget installed
  5. VM/RasPi/PC in local Network
    • Kernel with Wireguard
    • Firewalld, Docker, Docker-Compose, nano, cron and wget installed

Generate Keys:

mkdir server client
for i in server client; do
  cd $i
  wget https://raw.githubusercontent.com/HPPinata/Wireguard/main/$i/wg0.conf.templ
  cat wg0.conf.templ > wg0.conf
  wg genkey > pri.key
  wg pubkey > pub.key < pri.key
  wg genpsk > psk.key
  cd ..
done
for i in server/pri.key server/pub.key server/psk.key client/pri.key client/pub.key; do
  sed -i "s;$i;$(cat $i);g" ./server/wg0.conf ./client/wg0.conf
done

wireguard's People

Contributors

hppinata avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.