IPv4 Address Range (10.192.1.112/28)

Please enter a valid IPv4 address (i.e. 10.0.0.0)
/
Please enter a valid CIDR value between 0 and 32.
Range: 10.192.1.112 - 10.192.1.127
Total IPs: 16
Prev Range: 10.192.1.96/28
Next Range: 10.192.1.128/28

The 10.192.1.112/28 CIDR range starts with the IP address 10.192.1.112 and ends with 10.192.1.127, covering all addresses in between. This provides a total of 16 usable IPv4 addresses.

This is a Private IPv4 address range.

This CIDR range represents a private block of private IPv4 addresses defined by RFC 1918. It is commonly used for large organizations or ISPs that require a significant number of private IP addresses.

This CIDR range represents a block of private IPv4 addresses that are not routable on the public internet. These addresses are typically used for local area networks (LANs), virtual private networks (VPNs), or other internal applications.

The addresses in this range are not globally unique and can be reused in different private networks without conflict.

The range is defined by the combination of the IP address 10.192.1.112 and the subnet mask 28, which determines the size of the block. With 16 total addresses, this range is ideal for networks requiring efficient address utilization.

IP Address 10.192.1.112 is number 180,355,441 out of the total 4,294,967,296 (or roughly 4.3 billion) addresses in the IPv4 address space.


Provision Infrastructure - Network and/or Subnet

The following sections providers infrastructure as Code (IaC) you can copy/paste to provision a network and/or subnet in your cloud provider of choice. The IaC is generated based on the CIDR range you provided above.

Microsoft Azure: Azure Bicep | HashiCorp Terraform

Microsoft Azure w/ Azure Bicep

param vnetName string = 'myVNet' // Name of the virtual network
param addressPrefix string = '10.192.1.112/28' // Address prefix for the virtual network

resource vnet 'Microsoft.Network/virtualNetworks@2021-05-01' = {
    name: vnetName
    location: resourceGroup().location
    properties: {
        addressSpace: {
        addressPrefixes: [
            addressPrefix
        ]
        }
    }
}
param vnetName string // Name of the existing Virtual Network
param resourceGroupName string // Resource group where the VNet exists
param subnetName string = 'mySubnet' // Name of the new subnet
param subnetPrefix string = '10.192.1.112/28' // Address prefix for the subnet

resource existingVnet 'Microsoft.Network/virtualNetworks@2021-05-01' existing = {
  name: vnetName
}

resource subnet 'subnets' = {
  parent: existingVnet
  name: subnetName
  properties: {
    addressPrefix: subnetPrefix
  }
}

Microsoft Azure w/ HashiCorp Terraform

variable "vnet_name" {
  type    = string
  default = "myVNet"
}

resource "azurerm_resource_group" "rg" {
  name     = "myResourceGroup"
  location = "East US"
}

resource "azurerm_virtual_network" "vnet" {
  name                = var.vnet_name
  address_space       = ["10.192.1.112/28"]
  location            = azurerm_resource_group.rg.location
  resource_group_name = azurerm_resource_group.rg.name
}
variable "vnet_name" {
  type = string
}

variable "resource_group_name" {
  type = string
}

resource "azurerm_subnet" "subnet" {
  name                 = var.subnet_name
  resource_group_name  = var.resource_group_name
  virtual_network_name = data.azurerm_virtual_network.existing_vnet.name
  address_prefixes     = ["10.192.1.112/28"]
}

Nearby CIDR Ranges

10.192.1.64/28 10.192.1.80/28 10.192.1.96/28  << 10.192.1.112/28 >>  10.192.1.128/28 10.192.1.144/28 10.192.1.160/28