VLAN 10
Users
10.40.0.0/2510.40.0.1 – 10.40.0.126126 usable · Broadcast 10.40.0.127
Design VLAN IDs, names and IPv4 subnets, then export the plan.
10.40.0.0/2510.40.0.1 – 10.40.0.126126 usable · Broadcast 10.40.0.127
10.40.0.128/2610.40.0.129 – 10.40.0.19062 usable · Broadcast 10.40.0.191
10.40.0.192/2710.40.0.193 – 10.40.0.22230 usable · Broadcast 10.40.0.223
EXPORT CONFIGURATION
resource "aws_security_group" "vlan_10" { name = "vlan-10-Users" vpc_id = var.vpc_id ingress { from_port = 0 to_port = 0 protocol = "-1" cidr_blocks = ["10.40.0.0/25"] } }
resource "aws_security_group" "vlan_20" { name = "vlan-20-Voice" vpc_id = var.vpc_id ingress { from_port = 0 to_port = 0 protocol = "-1" cidr_blocks = ["10.40.0.128/26"] } }
resource "aws_security_group" "vlan_30" { name = "vlan-30-Servers" vpc_id = var.vpc_id ingress { from_port = 0 to_port = 0 protocol = "-1" cidr_blocks = ["10.40.0.192/27"] } }Networking TOOL
Design VLAN IDs, names and IPv4 subnets, then export the plan.
Use this planner to document segmentation before configuring switches, routers or firewalls.