Поставил на первый комп NAT - всё работает - со второго компа могу просматривать сеть от первого, но к VPN не могу подключится
Выкладываю свой pf.conf
ext_if="rl0"
int_if="rl1"
icmp_types="echoreq"
nat on $ext_if from $int_if:network to any -> ($ext_if)
block all
block in quick inet6 all
pass from {lo, $int_if:network} keep state
tcp_services="{ domain,www }"
udp_services = " { domain } "
pass out proto tcp to any port $tcp_services keep state
pass quick inet proto udp to any port $udp_services keep state
pass inet from $int_if to $ext_if
pass inet from $ext_if to $int_if
pass proto tcp to any port > 1024 user updater
pass inet proto icmp all icmp-type $icmp_types keep state
pass inet proto { tcp,udp } from $int_if to any
pass inet proto { tcp, udp } from $ext_if to any
block in proto tcp from any to port < 1024
pass proto tcp from any to any port $tcp_services keep state