Domain route via VPN
This allows you to selectively route specific domains through the VPN tunnel while keeping all other traffic unaffected. This is the opposite of the Domain Bypass feature.
Configuration via VPN
This configuration typically includes these main components:
List<String> domainsRouteViaVPN
creates a newArrayList
to store a list of domains that will be bypassed by the VPN.addCategoryRule()
adds a category rule to theSessionConfig
usingFireshieldCategoryRule.Builder.fromDomains()
, which takes a category name("safeCategory")
and a list of domains.
Last updated
Was this helpful?