Parse IP info

Inspect an IP address for family, canonical form, and special-use flags.

freeworks offlinenothing uploaded
ToolIP Info Parser
Input
Output
Put this on your own site

The frame below runs the same code as this page, in the reader's own browser. Nothing is sent to us, and nothing is sent to you.

Pick a dark background and the text and panels follow it, so the frame stays readable on a dark page.

Preview

How it works

An IPv4 or IPv6 address is normalized and classified into family, components, prefix status, and flags such as loopback or private. The result is derived locally and does not query geolocation or ownership services.

  • Syntax and registry data remain separate.
  • Local classification is deterministic.

Worked example

Analyze 192.168.1.1 private address
Get type, class, decimal, binary, and reverse PTR for a private IPv4 address
Input
											192.168.1.1
										
Output
												IP: 192.168.1.1
Version: IPv4
Type: Private (RFC 1918)
Class: C
Is private: yes
Is loopback: no
Is link local: no
Is multicast: no
Is broadcast: no
Is unspecified: no
Decimal: 3232235777
Hex: 0xC0A80101
Binary: 11000000.10101000.00000001.00000001
Octets: 192, 168, 1, 1
Reverse ptr: 1.1.168.192.in-addr.arpa
											

When to use this

Logs, firewall UIs, and networking lessons inspect IP fields.

Edge cases

  • IPv4-mapped IPv6 has both family and embedded-address meaning.
  • Private addresses have no public geolocation.
  • An IPv6 zone identifier is interface context rather than address bits.

References