What is a IP Address? A Unique network IDentifier

Map Of Internet 1973

About

An IP address is:

Example

With Ipv4:

192.168.1.10 / 255.255.255.0

where:

Type

Unicast

An Unicast address is an identifier for a single interface. adapter

A packet sent to a unicast address is delivered to the interface identified by that address.

Wildcard

The Wildcard Address indicates the absence of an address.

It's used mostly as the target of bind, which allows a server to accept a client connection on any interface, in case the server host has multiple interfaces.

It's also known as:

  • the anylocal
  • the Unspecified address.

It must:

  • never be assigned to any node.
  • not be used as the destination address of an IP packet.

Loopback

The Loopback Addresses is the address assigned to the loopback interface.

Anything sent to this IP address loops around and becomes IP input on the local host.

This address is often used when testing a client.

multicast

A multicast address is an identifier for a set of interfaces (typically belonging to different nodes).

A packet sent to a multicast address is delivered to all interfaces identified by that address.

Syntax

An IP address is comprised of:

All hosts on a subnetwork have the same mask (ie network prefix), unlike the host identifier which is a unique local identification.

Protocols

The IP Address is an attribute of the Internet Protocol (ie tcp or udp packet).

Version

There are 2 version:

The main difference between IPv4 and IPv6 is the number of bytes and therefore the number of possible ip addresses. IPv6 was introduced in 1995 to ensure that the world would not run out anytime soon of IP number.

IP Version Number of bytes Bit Address Space Possible addresses
Ipv4 4 32 4 billion
Ipv6 16 128 <math>3.4 \times 10^{38}</math>

Relation

Scope

Public Vs Private Ip Address

1)

Public

Public IP are global addresses that are unique across the internet.

See What is a public IP?.

Private

The devices that do not require public access may be assigned a private IP address and make it uniquely identifiable within one organization.

For example, a network printer may be assigned a private IP address to prevent rest of the world from printing from it.

To allow organizations to freely assign private IP addresses, the NIC has reserved certain address blocks for private use. See private

To hostname

See DNS - rDNS - Reverse DNS (lookup|resolution) - from IP to name

Database Owner

You can query a whois database to see the owner of an IP address.

Reference / Architecture

The IP address architecture is defined by:

2)

3)





Discover More
Map Of Internet 1973
AAAA DNS record

A AAAA DNS record maps a domain name to a IPV6 address
Map Of Internet 1973
Broadcast Domain

The is defined on the host by an IP address and a Subnet mask IP: Subnet Mask 192.168.1.1 255.255.255.0
Map Of Internet 1973
Classless Inter-Domain Routing (CIDR)

is a notation that defines a subnet (ip net range) CIDR notation: where: IP Address is a prefix is the subnet mask prefix length. where: 0.0.0.0 is the wildcard IP address that match...
Map Of Internet 1973
DNS - Record

A DNS record is a row in a DNS database. Example of a A record. where: api is a relative name IN is the INTERNET class (An other value is ANY) A is the A record 164.132.99.202 is the Ip address...
Map Of Internet 1973
DNS - rDNS - Reverse DNS (lookup|resolution) - from IP to name

A reverse dns lookup is a dns lookup that: query the PTR record with a reverse map name in order to get the DNS name (known also as the reverse DNS name) from a IP address forward dns lookup...
Map Of Internet 1973
DNS Alias record

An alias is a DNS record with a name that resolves directly to an ip_address. cnamenamenamean ip addressDNS resolverroundtripip_addressCNAME Before creating an ALIAS record, check there are no: ...
HTTP - Request IP Address

The users / original IP address of a request is stored in the following headers without proxy: X_REAL_IP with proxy: geolocalization of your users An HTTP reverse proxy uses non-standard headers...
Recaptcha
How can I protect myself from Bad Bot (Spambot, Attacker )?

Bad Bots are robots with bad intentions. They are also known as attackers. They walk through: web pages trying to find a form and to fill them trying: to send email in mass to create a fake...
Java Conceptuel Diagram
Java - Integer

integer data type in Java. int (or Integer) is the 32 bit implementation of an integer. Java can also store an integer on 64 bit with a long. An integer in java is a sub-class of number They are...
Linux - ifconfig (Interface Configuration)

ifconfig is the equivalent of ipconfig in DOS where you can configure network interface. Without parameters, it gives you the list of interface with their corresponding IP. Below you can see...



Share this page:
Follow us:
Task Runner