1. removed unnecessary 0200::/7 routing

This commit is contained in:
vadym 2020-06-15 10:14:38 -07:00
parent f3f4043253
commit d406ba7c0d

View File

@ -64,7 +64,7 @@ class YggdrasilTunService : VpnService() {
tunInterface = builder
.addAddress(address, 7)
.allowFamily(OsConstants.AF_INET)
.addRoute("0200::", 7)
//.addRoute("0200::", 7)
.setMtu(MAX_PACKET_SIZE)
.establish()