create a prefix list and add each of the /32 that you want reject; then in your policy statement, say from prefix-list <name> then reject
That is assuming that is what you want to do. In the then action you can use reject or accept
[edit policy-options]
prefix-list block-them-32 {
1.1.1.1/32;
2.2.2.2/32;
10.10.10.10/32;
12.12.12.12/32;
}
policy-statement accept-them-thirty-two {
from {
prefix-list block-them-32;
}
then accept;
}
policy-statement block-them-thirty-two {
from {
prefix-list block-them-32;
}
then reject;
}
And you can always modify the prefix list as you wish. You can also use it in firewall filters if you want to also.