This is a valid ipv4 address 13 years ago
Using this python script to make the int-ip-address:
#!/usr/bin/env python
import socket
import struct
def ip2long(ip):
packedIP = socket.inet_aton(ip)
return struct.unpack("!L", packedIP)[0]
print ip2long('192.241.224.102') # your website ip address# or download it on github: https://gist.github.com/Leask/7075483