If a host blacklists an entire country so that none of its IPs can reach IPs allocated to that country, is there a way to indicate that they are unreachable, using ExitPolicy or something similar? I tried the following, with this example being a relay that cannot exit to any Swiss IPs: user@host:~$ cat /etc/cron.weekly/blacklist-ch #!/bin/sh ZONE=https://ipv4.fetus.jp/ch.txt curl ${ZONE} | sed -r '/^[0-9\.\/]+$/!d;s/.*/ExitPolicy reject &:*/g' > /etc/tor/ch-ips user@host:~$ grep include /etc/...