You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
2.9 KiB

  1. # OpenWrt VPNBypass
  2. A simple PROCD-based vpnbypass service for OpenWrt/LEDE Project. Useful if your router accesses internet thru VPN client/tunnel, but you want specific traffic (ports, IP ranges, domains or local IP ranges) to be routed outside of this tunnel.
  3. ## Features
  4. - Allows to define local ports so that traffic to them is routed outside of the VPN tunnel (by default routes Plex Media Server traffic (port 32400) outside of the VPN tunnel).
  5. - Allows to define IPs/subnets in local network so that their traffic is routed outside of the VPN tunnel (by default routes traffic from 192.168.1.81-192.168.1.87 outside of the VPN tunnel).
  6. - Allows to define remote IPs/ranges that they are accessed outside of the VPN tunnel (by default routes LogmeIn Hamachi traffic (25.0.0.0/8) outside of the VPN tunnel).
  7. - Allows to define list of domain names which are accessed outside of the VPN tunnel (useful for Netflix, Hulu, etc).
  8. - Doesn't stay in memory -- creates the iptables rules which are automatically updated on WAN up/down.
  9. - Has a companion package (luci-app-vpnbypass) so everything can be configured with Web UI.
  10. - Proudly made in Canada, using locally-sourced electrons.
  11. ## Requirements
  12. This service requires following packages to be installed on your router: ip-full ipset iptables dnsmasq-full (ip-full requires you uninstall ip first; dnsmasq-full requires you uninstall dnsmasq first). Run the following commands to satisfy the requirements:
  13. ```sh
  14. opkg update
  15. opkg remove dnsmasq ip; opkg install ip-full ipset iptables dnsmasq-full
  16. ```
  17. ## How to install
  18. ```sh
  19. opkg update
  20. opkg install vpnbypass luci-app-vpnbypass
  21. ```
  22. Default install routes Plex Media Server traffic (port 32400) outside of the VPN tunnel, routes LogmeIn Hamachi traffic (25.0.0.0/8) outside of the VPN tunnel and also routes internet traffic from local IPs 192.168.1.81-192.168.1.87 outside of the VPN tunnel. You can safely delete these example rules if they do not apply to you.
  23. ## Documentation / Discussion
  24. Please head to [LEDE Project Forum](https://forum.lede-project.org/t/vpn-bypass-split-tunneling-service-luci-ui/1106) or [OpenWrt Forum]() for discussions of this service.
  25. ## What's New
  26. 1.0.1:
  27. - Detects individual IP addresses in the config and converts them to subnet automatically.
  28. - Proper implementation of reload on vpnbypass config change.
  29. 1.0.0:
  30. - Hotplug script created during install.
  31. 0.1.0:
  32. - Package built.
  33. - Support for user-defined ports implemented.
  34. - Support for user-defined routes implemented.
  35. - Support for user-defined local ranges implemented.
  36. 0.0.1:
  37. - Initial release.
  38. ## Known Issues
  39. Until user-defined domains are supported within vpnbypass config, you can set domains to be accessed outside of VPN tunnel like so:
  40. ```sh
  41. uci add_list dhcp.@dnsmasq[-1].ipset='/github.com/plex.tv/google.com/vpnbypass'
  42. uci add_list dhcp.@dnsmasq[-1].ipset='/hulu.com/netflix.com/nhl.com/vpnbypass'
  43. uci commit dhcp
  44. /etc/init.d/dnsmasq restart
  45. ```