Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
bubuntux authored May 20, 2024
2 parents 7787b19 + 6e4ca12 commit 58b3cf1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ services:
* `MESHNET` - Enable or Disable.
* `ALLOWLOCAL` - Comma delimited list of Meshnet devices you will allow to access this devices local network. For example 'ALLOWLOCAL=vpn-friction5976.nord,vpn-world2962.nord'
* `ALLOWROUTE` - Comma delimited list of Meshnet devices you will allow to route though this device. For example 'ALLOWROUTE=vpn-friction5976.nord,vpn-world2962.nord'
* `LAN_DISCOVERY` - on or off.


# Issues
Expand Down
3 changes: 2 additions & 1 deletion rootfs/usr/bin/nord_config
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ nordvpn set technology ${TECHNOLOGY:-NordLynx}
[[ -n ${OBFUSCATE} ]] && nordvpn set obfuscate ${OBFUSCATE}
[[ -n ${FIREWALL} ]] && nordvpn set firewall ${FIREWALL}
[[ -n ${MESHNET} ]] && nordvpn set meshnet ${MESHNET}
[[ -n ${LAN_DISCOVERY} ]] && nordvnp set lan-discovery ${LAN_DISCOVERY}

# Configue local network and routing allow list
if [[ -n ${MESHNET} ]]; then
Expand Down Expand Up @@ -46,4 +47,4 @@ fi
[[ -n ${NETWORK} && -z ${NET_LOCAL} ]] && NET_LOCAL=${NETWORK}
[[ -n ${NET_LOCAL} ]] && for net in ${NET_LOCAL//[;,]/ }; do nordvpn whitelist add subnet "${net}"; done

exit 0
exit 0

0 comments on commit 58b3cf1

Please sign in to comment.