Le 28/02/2014 12:27, David DURIEUX a écrit : > Another solution is to have criteria: > * IP regex match /^172.16.(84|85)./ Remember than '.' match anything... You probably want: /^172\.16\.(84|85)\./ or /^172\.16\.8(4|5)\./ or /^172\.16\.8[45]\./ -- Guillaume