How to validate IP address in Python? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T23:30:08Z http://stackoverflow.com/feeds/question/319279 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/319279/how-to-validate-ip-address-in-python 7 How to validate IP address in Python? krupan 2008-11-25T23:40:45Z 2009-05-20T21:06:50Z <p>What's the best way to validate that an IP entered by the user is valid? It comes in as a string.</p> http://stackoverflow.com/questions/319279/how-to-validate-ip-address-in-python/319291#319291 1 Answer by chills42 for How to validate IP address in Python? chills42 2008-11-25T23:47:00Z 2008-11-25T23:47:00Z <p>I think this would do it...</p> <pre><code>def validIP(address): parts = address.split(".") if len(parts) != 4: return False for item in parts: if not 0 &lt;= int(item) &lt;= 255: return False return True </code></pre> http://stackoverflow.com/questions/319279/how-to-validate-ip-address-in-python/319293#319293 2 Answer by MizardX for How to validate IP address in Python? MizardX 2008-11-25T23:47:54Z 2009-05-20T21:06:50Z <pre><code>def is_valid_ip(ip): """Validates IP addresses. """ return is_valid_ipv4(ip) or is_valid_ipv6(ip) </code></pre> <p>IPv4:</p> <pre><code>def is_valid_ipv4(ip): """Validates IPv4 addresses. """ pattern = re.compile(r""" ^ (?: # Dotted variants: (?: # Decimal 1-255 (no leading 0's) [3-9]\d?|2(?:5[0-5]|[0-4]?\d)?|1\d{0,2} | 0x0*[0-9a-f]{1,2} # Hexadecimal 0x0 - 0xFF (possible leading 0's) | 0+[1-3]?[0-7]{0,2} # Octal 0 - 0377 (possible leading 0's) ) (?: # Repeat 0-3 times, separated by a dot \. (?: [3-9]\d?|2(?:5[0-5]|[0-4]?\d)?|1\d{0,2} | 0x0*[0-9a-f]{1,2} | 0+[1-3]?[0-7]{0,2} ) ){0,3} | 0x0*[0-9a-f]{1,8} # Hexadecimal notation, 0x0 - 0xffffffff | 0+[0-3]?[0-7]{0,10} # Octal notation, 0 - 037777777777 | # Decimal notation, 1-4294967295: 429496729[0-5]|42949672[0-8]\d|4294967[01]\d\d|429496[0-6]\d{3}| 42949[0-5]\d{4}|4294[0-8]\d{5}|429[0-3]\d{6}|42[0-8]\d{7}| 4[01]\d{8}|[1-3]\d{0,9}|[4-9]\d{0,8} ) $ """, re.VERBOSE | re.IGNORECASE) return pattern.match(ip) is not None </code></pre> <p>IPv6:</p> <pre><code>def is_valid_ipv6(ip): """Validates IPv6 addresses. """ pattern = re.compile(r""" ^ (?!.*?::.*?::) # Make sure there are at most one wildcard in # the address. [0-9a-f]{0,4} # First group, possibly empty. (?: (?:(?&lt;!::):|(?&lt;=::)) # Unless preceeded by '::', require a ':'. [0-9a-f]{0,4} # Another group, possibly empty. ){5} # Repeat 5 times. (?: (?:(?&lt;!::):|(?&lt;=::)) # Unless preceeded by '::', require a ':'. # First token of a IPv4 address: (?:[3-9]\d?|2(?:5[0-5]|[0-4]?\d)?|1\d{0,2}|0) # Followed by three more tokens, separated by dots (?:\.(?:[3-9]\d?|2(?:5[0-5]|[0-4]?\d)?|1\d{0,2}|0)){3} | (?: # Two more IPv6 groups, in case there was no (?:(?&lt;!::):|(?&lt;=::)) # IPv4 suffix. [0-9a-f]{0,4} ){2} ) $ """, re.VERBOSE | re.IGNORECASE | re.DOTALL) return pattern.match(ip) is not None </code></pre> <p>The IPv6 version uses "<code>(?:(?&lt;!::):|(?&lt;=::))</code>", which could be replaced with "<code>(?(?&lt;!::):)</code>" on regex engines that support conditionals with look-arounds. (i.e. PCRE, .NET)</p> <p><strong>Edit:</strong></p> <ul> <li>Dropped the native variant.</li> <li>Expanded the regex to comply with the RFC.</li> <li>Added another regex for IPv6 addresses.</li> </ul> http://stackoverflow.com/questions/319279/how-to-validate-ip-address-in-python/319298#319298 19 Answer by Dustin for How to validate IP address in Python? Dustin 2008-11-25T23:50:54Z 2008-11-25T23:50:54Z <p>Don't parse it. Just ask.</p> <pre><code>import socket try: socket.inet_aton(addr) # legal except socket.error: # Not legal </code></pre> http://stackoverflow.com/questions/319279/how-to-validate-ip-address-in-python/330107#330107 5 Answer by Samat Jain for How to validate IP address in Python? Samat Jain 2008-12-01T05:36:54Z 2008-12-01T05:36:54Z <p>The <a href="http://pypi.python.org/pypi/IPy/" rel="nofollow">IPy module</a> (a module designed for dealing with IP addresses) will throw a ValueError exception for invalid addresses.</p> <pre><code>&gt;&gt;&gt; from IPy import IP &gt;&gt;&gt; IP('127.0.0.1') IP('127.0.0.1') &gt;&gt;&gt; IP('277.0.0.1') Traceback (most recent call last): ... ValueError: '277.0.0.1': single byte must be 0 &lt;= byte &lt; 256 &gt;&gt;&gt; IP('foobar') Traceback (most recent call last): ... ValueError: invalid literal for long() with base 10: 'foobar' </code></pre> <p>However, like Dustin's answer, it will accept things like "4" and "192.168" since, as mentioned, these are valid representations of IP addresses.</p>