Networking & Security
Manage your private networks and secure access to your resources.
Virtual Private Clouds (VPC)
Isolate your infrastructure using VPCs.
- Go to Enterprise > Networking.
- Click Create VPC.
- Define your CIDR block (e.g.,
10.0.0.0/16). - Create Subnets within the VPC (e.g.,
10.0.1.0/24for public,10.0.2.0/24for private).
Security Groups
Control inbound and outbound traffic to your instances.
Creating a Security Group
- Navigate to Enterprise > Security Groups.
- Click Create Security Group.
- Add Inbound Rules:
- SSH: Protocol TCP, Port 22, Source
0.0.0.0/0(or your specific IP). - HTTP: Protocol TCP, Port 80, Source
0.0.0.0/0. - HTTPS: Protocol TCP, Port 443, Source
0.0.0.0/0.
- SSH: Protocol TCP, Port 22, Source

Assigning to Instances
You can attach a Security Group during instance creation or edit the settings of a running instance to apply new rules immediately.