diff --git a/README.md b/README.md index 5a66420..b2d2bc8 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ These options can be configured by setting environment variables using `-e KEY=" | `WG_PORT` | `51820` | `12345` | The public UDP port of your VPN server. WireGuard will always listen on 51820 inside the Docker container. | | `WG_MTU` | `null` | `1420` | The MTU the clients will use. Server uses default WG MTU. | | `WG_PERSISTENT_KEEPALIVE` | `0` | `25` | Value in seconds to keep the "connection" open. If this value is 0, then connections won't be kept alive. | -| `WG_DEFAULT_ADDRESS` | `10.8.0.1/24` | `10.6.0.x` | Clients IP address range. (For Legacy reasons x in last place is supported (e.g. 10.8.0.x)) | +| `WG_DEFAULT_ADDRESS` | `10.8.0.0/24` | `10.6.0.0/24` | Clients IP address range. (For Legacy reasons x in last place is supported and will be replaced with 0/24 (e.g. 10.8.0.x)) | | `WG_DEFAULT_DNS` | `1.1.1.1` | `8.8.8.8, 8.8.4.4` | DNS server clients will use. If set to blank value, clients will not use any DNS. | | `WG_ALLOWED_IPS` | `0.0.0.0/0, ::/0` | `192.168.15.0/24, 10.0.1.0/24` | Allowed IPs clients will use. | | `WG_PRE_UP` | `...` | - | See [config.js](https://github.com/wg-easy/wg-easy/blob/master/src/config.js#L19) for the default value. | diff --git a/docker-compose.yml b/docker-compose.yml index 9495b9b..766ed69 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -15,7 +15,7 @@ services: # Optional: # - PASSWORD=foobar123 # - WG_PORT=51820 - # - WG_DEFAULT_ADDRESS=10.8.0.1/24 + # - WG_DEFAULT_ADDRESS=10.8.0.0/24 # - WG_DEFAULT_DNS=1.1.1.1 # - WG_MTU=1420 # - WG_ALLOWED_IPS=192.168.15.0/24, 10.0.1.0/24 diff --git a/src/config.js b/src/config.js index f1779fe..21470be 100644 --- a/src/config.js +++ b/src/config.js @@ -6,11 +6,11 @@ const { release } = require('./package.json'); function parseDefaultAddress(defaultAddress) { // Set the default full address with subnet if it's not provided - const defaultFullAddress = defaultAddress || '10.8.0.1/24'; + const defaultFullAddress = defaultAddress || '10.8.0.0/24'; - // Check if the address ends with '.x', if so, replace with '.1/24' + // Check if the address ends with '.x', if so, replace with '.0/24' const addressWithSubnet = defaultFullAddress.endsWith('.x') - ? defaultFullAddress.replace('.x', '.1/24') + ? defaultFullAddress.replace('.x', '.0/24') : defaultFullAddress; const [ipAddress, subnetRange] = addressWithSubnet.split('/'); @@ -21,7 +21,7 @@ function parseDefaultAddress(defaultAddress) { }; } -// Use the function to parse the environment variable or default to '10.8.0.1/24' +// Use the function to parse the environment variable or default to '10.8.0.0/24' const { ipAddress, subnetRange } = parseDefaultAddress(process.env.WG_DEFAULT_ADDRESS); module.exports.RELEASE = release; diff --git a/wg-easy.service b/wg-easy.service index 91b3520..6adee95 100644 --- a/wg-easy.service +++ b/wg-easy.service @@ -5,7 +5,7 @@ After=network-online.target nss-lookup.target [Service] Environment="WG_HOST=raspberrypi.local" # Change this to your host's public address or static public ip. Environment="PASSWORD=REPLACEME" # When set, requires a password when logging in to the Web UI, to disable add a hashtag -#Environment="WG_DEFAULT_ADDRESS=10.0.8.1/24" #Clients IP address range. +#Environment="WG_DEFAULT_ADDRESS=10.0.8.0/24" # Clients IP address range. #Environment="WG_DEFAULT_DNS=10.0.8.1, 1.1.1.1" #DNS server clients will use. If set to blank value, clients will not use any DNS. #Environment="WG_ALLOWED_IPS=0.0.0.0/0,::/0" #Allowed IPs clients will use. #Environment="WG_DEVICE=ens1" #Ethernet device the wireguard traffic should be forwarded through.