@echo off
for /f "Tokens=1-5 delims=." %%i in ('type file.txt ^|find "."') do call :check_ip %%i %%j %%k %%l %%m
goto :eof
:check_ip
if %1 lss 0 goto :check_err
if %2 lss 0 goto :check_err
if %3 lss 0 goto :check_err
if %4 lss 0 goto :check_err
if %1 gtr 255 goto :check_err
if %2 gtr 255 goto :check_err
if %3 gtr 255 goto :check_err
if %4 gtr 255 goto :check_err
echo %1.%2.%3.%4
:check_err
goto :eof