Skip to content

Commit

Permalink
Include 10.x.x.x local net traffic through VPN (#5252)
Browse files Browse the repository at this point in the history
Task/Issue URL: https://app.asana.com/0/1198194956794324/1208714463179856/f

### Description
10.x.x.x range (traffic) should go through the VPN when local networks are included.

### Steps to test this PR
_Test_
- [x] install from this branch, launch and sign into PPro
- [x] in settigns -> VPN -> VPN settings disable `Exclude local Networks` setting
- [x] enable VPN
- [x] verify 10.x.x.x route is included (you can do that by filtering logcat by `Adding route`)
- [x] smoke test apps and browser, all should work normally
- [x] in settigns -> VPN -> VPN settings enable `Exclude local Networks` setting and navigate out of VPN settings for the VPN to re-configre
- [x] verify 10.x.x.x route is excluded (you can do that by filtering logcat by `Adding route`)
- [x] smoke test apps and browser, all should work normally
  • Loading branch information
aitorvs authored Nov 7, 2024
1 parent 3245b7d commit 590d792
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ internal class WgVpnRoutes {
val wgVpnRoutesIncludingLocal: Map<String, Int> = mapOf(
"0.0.0.0" to 5,
"8.0.0.0" to 7,
// Excluded range: 10.0.0.0 -> 10.255.255.255
"10.0.0.0" to 8,
"11.0.0.0" to 8,
"12.0.0.0" to 6,
"16.0.0.0" to 4,
Expand Down

0 comments on commit 590d792

Please sign in to comment.