hola ArturoGallegos muchisimas gracias por responder pero ya lo logre solventar con un amigo
Aqui pongo el codigo por si alguien lo necesita Saludos y Muchas Gracias
Código PHP:
<script>
function validateIp(ip) {
var patronIp = new RegExp("^([0-9]{1,3}).([0-9]{1,3}).([0-9]{1,3}).([0-9]{1,3})$");
var valores;
if(ip.search(patronIp) !== 0) {
return false
}
valores = ip.split(".");
return valores[0] <= 255 && valores[1] <= 255 && valores[2] <= 255 && valores[3] <= 255
}
function validateForm(idForm) {
var object = document.getElementById(idForm);
var valueForm = object.value.split('\n');
var isValid = valueForm.every(validateIp)
if (isValid) {
object.style.color = "#000";
return;
}
object.style.color = "#f00";
}
</script>