I have problems figuring out a regular expression on this pattern
oSevenDigits-TwoDigits-aValidIPv4Adress
I tried
$_regex = "/(o[0-9]{7})-[0-9]{2}-^((2[0-4]|1\d|[1-9])?\d|25[0-5])(\.(?1)){3}\z/";
but it seems to be wrong in multiple ways...