Thank you Dameon.
I want to send to that tunnel only requests from 192.168.1.0/24 going to the Internet (example);
Thinking on that, I will need to exclude all my internal subnets going to the Internet, example:
// // User defined INSPECT code // vpn_exclude_src={<192.168.1.1,192.168.1.254>}; vpn_exclude_dst={<I need to put all Internet IPs here?>}; #ifndef IPV6_FLAVORipv #define NON_VPN_TRAFFIC_RULES ((src in vpn_exclude_src) and (dst in vpn_exclude_dst)) #else #define NON_VPN_TRAFFIC_RULES 0 #endif
So, I'll need to put all Internet IPs on vpn_exclude_dst?