Networking Tool – WireGuard

Networking Tool - WireGuard

Server docker run -d \ –name=wg-easy \ -e WG_HOST=123.123.123.123 (🚨Enter the public IP of the server here) \ -e PASSWORD=passwd123 (🚨Enter your password here) \ -e WG_DEFAULT_ADDRESS=10.0.8.x (🚨Default IP address) \ -e WG_DEFAULT_DNS=114.114.114.114 (🚨Default DNS) \ -e WG_ALLOWED_IPS=10.0.8.0/24 (🚨Allowed IP range) \ -e WG_PERSISTENT_KEEPALIVE=25 (🚨Reconnect interval) \ -v ~/.wg-easy:/etc/wireguard \ -p 51820:51820/udp \ -p 51821:51821/tcp … Read more

Installing and Configuring Tailscale on OpenWrt

Installing and Configuring Tailscale on OpenWrt

Installing and Configuring Tailscale on OpenWrt What is Tailscale Tailscale is a networking tool based on WireGuard that allows for peer-to-peer connections between nodes without the need for a public IP address, utilizing a decentralized approach. It is easy to configure and supports various platforms and clients. Advantages of Tailscale Compared to ZeroTier and WireGuard, … Read more

OpenWrt Tutorial: Configure Tailscale

OpenWrt Tutorial: Configure Tailscale

Tailscale is a networking tool based on Wireguard that allows point-to-point connections between nodes without the need for a public IP address, achieving decentralization. The configuration is simple and user-friendly, supporting various platforms and clients. Below is the configuration process on OpenWrt. 1. Download Software Download the Tailscale software package to a specified directory. Click … Read more

OpenWrt Guide: Configuring WireGuard VPN

OpenWrt Guide: Configuring WireGuard VPN

/etc/wireguard/wg0.conf configuration file content 1234567 [Interface] PrivateKey = ListenPort = 443 [PEER] PUBLICKEY = ALLOWEDIPS = 10.0.1.2/32 Script startup command 1234567891011121314151617181920 #!/bin/sh # Configure wg0 interface and set as default route ip link add wg0 type wireguard sleep 1 ip link set mtu 1420 up dev wg0 sleep 1 ip -4 address add 10.0.1.1 dev … Read more