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