Network Security Integration uses the producer-consumer model to inspect and monitor data. It uses out-of-band integration with packet mirroring technology to mirror network traffic using user-managed virtual appliances.
This tutorial describes how to create and configure producer and consumer resources to set up out-of-band integration.
Create producer resources
In this section, you create the following resources for the producer:
- A custom VPC network with a subnet.
- An unmanaged instance group with a VM instance logging incoming Generic Network Virtualization Encapsulation (GENEVE) packets.
- An internal passthrough Network Load Balancer with a backend service and a forwarding rule.
- A firewall rule to allow Google Cloud health checks.
- A mirroring deployment group and a mirroring deployment.
Create a custom VPC network
In this section, you create a VPC network with a subnet.
Console
In the Google Cloud console, go to the VPC networks page.
Click
Create VPC network.For Name, enter
producer-network
.For Description, enter
Producer VPC network
.In the Subnets section, do the following:
- For Subnet creation mode select Custom.
- In the New subnet section, enter the following information:
- Name:
producer-subnet
- Region:
us-west1
- IP stack type: IPv4 (single-stack)
- IPv4 range:
10.10.0.0/16
- Name:
- Click Done.
Click Create.
Open the gcloud CLI and run the following command to increase the maximum transmission unit (MTU) of the Google Cloud console network.
gcloud compute networks update producer-network \ --mtu=1856
In the command, specify an MTU of 1856 bytes, which is the sum of the default MTU of a Google Cloud console network (1460 bytes) and the Network Security Integration GENEVE encapsulation overhead (396 bytes).
gcloud
Create a VPC network.
gcloud compute networks create producer-network \ --subnet-mode=custom \ --mtu=1856 \ --description="Producer VPC network"
In the command, specify an MTU of 1856 bytes, which is the sum of the default MTU of a Google Cloud console network (1460 bytes) and the Network Security Integration GENEVE encapsulation overhead (396 bytes).
In the VPC network, create a subnet.
gcloud compute networks subnets create producer-subnet \ --network=producer-network \ --region=us-west1 \ --range=10.10.0.0/16
Create an unmanaged instance group
In this section, you create an unmanaged instance group.
Console
In the Google Cloud console, go to the Instance groups page.
Click Create instance group.
Click New unmanaged instance group.
For Name, enter
producer-instance-group
.In the Location section, select
us-west1
for Region, and selectus-west1-b
for Zone.In the Network and instances section, do the following:
- For Network, select
producer-network
. - For Subnetwork, select
producer-subnet
.
- For Network, select
Click Create.
gcloud
gcloud compute instance-groups unmanaged create producer-instance-group \ --zone=us-west1-b
Configure load balancer components
In this section, you create the components for an internal passthrough Network Load Balancer, including a backend service and a forwarding rule.
Console
Start your configuration
In the Google Cloud console, go to the Load balancing page.
- Click Create load balancer.
- For Type of load balancer, select Network Load Balancer (TCP/UDP/SSL) and click Next.
- For Proxy or passthrough, select Passthrough load balancer and click Next.
- For Public facing or internal, select Internal and click Next.
- Click Configure.
Basic configuration
On the Create internal passthrough Network Load Balancer page, enter the following information:
- Load balancer name:
producer-ilb
- Region:
us-west1
- Network:
producer-network
Configure the backends
- Click Backend configuration.
- For Protocol, select
UDP
. - From the Health check list, select Create a health check, enter
the following information, and click Create.
- Name:
producer-health-check
- Scope: Regional
- Port:
80
- Proxy protocol:
NONE
- Name:
- In the New Backend section of Backends, for IP stack type, choose IPv4 (single-stack).
In Instance group, select the
producer-instance-group
instance group and click Done.Verify that there is a blue check mark next to Backend configuration before continuing.
Configure the frontend
- In the New Frontend IP and port section, enter
the following information, and click Done:
- For Name, enter
producer-ilb-fr
. - For Subnetwork, select
producer-subnet
. - For Ports, select Single and then in Port number,
enter
6081
. - In the Advanced configuration section, for Packet mirroring, select Enable this load balancer for packet mirroring
- Verify that there is a blue check mark next to Frontend configuration before continuing.
- For Name, enter
Review the configuration
- Click Review and finalize.
- Review your load balancer configuration settings.
- Click Create.
gcloud
Create a regional health check.
gcloud compute health-checks create tcp producer-health-check \ --region=us-west1 \ --port=80
Create the backend service.
gcloud compute backend-services create producer-backend-service \ --protocol=UDP \ --region=us-west1 \ --health-checks=producer-health-check \ --health-checks-region=us-west1 \ --load-balancing-scheme=INTERNAL
Create a forwarding rule for the backend service.
gcloud compute forwarding-rules create producer-ilb-fr \ --backend-service=producer-backend-service \ --region=us-west1 \ --network=producer-network \ --subnet=producer-subnet \ --ip-protocol=UDP \ --load-balancing-scheme=INTERNAL \ --is-mirroring-collector \ --ports=6081
Create a VM instance and add it to the instance group
In this section, you create a VM instance with a startup script that sets up a logging server for GENEVE encapsulated packets. Before you create the VM instance, get the IP address of the subnet's gateway. You need the IP address for the startup script.
Console
Get the IP address of the subnet gateway
In the Google Cloud console, go to the VPC networks page.
Click the
producer-network
VPC network.Click the Subnets tab.
In the Subnets section, note the gateway IP address from the Gateway column.
Create the VM instance
In the Google Cloud console, go to the VM instances page.
- Click Create instance.
- For Name, enter
producer-instance
. - For Region, select
us-west1
. - For Zone, select
us-west1-b
. - Set Machine type to e2-micro.
- Click Networking and then, in the Network interfaces
section, click Add a network interface and set the following:
- Network:
producer-network
- Subnet:
producer-subnet
- External IPv4 address: None
- Network:
Click Advanced and enter the following script in Startup script:
#!/bin/bash # Log incoming packets from the gateway IP and the GENEVE 6081 port. iptables -A INPUT -p udp -s '"$GW_IP"'/32 --dport 6081 -j LOG --log-prefix "[NSI MIRRORING] " # Spin up a simple server for health checks on port 80. nohup python3 -u -m http.server 80 &
Replace the following:
GW_IP
: the IP address of the subnet gateway.
Click Create.
Add the VM instance to the instance group
In the Google Cloud console, go to the Instance groups page.
Click
producer-instance-group
.Click Edit.
In the VM instances section, from the Select VMs list, select the
producer-instance
VM.Click Save.
gcloud
Get the IP address of the subnet's gateway.
GW_IP=$(gcloud compute networks subnets describe producer-subnet \ --region=us-west1 \ --format="get(gatewayAddress)")
Create a VM instance.
gcloud compute instances create producer-instance \ --image-project=debian-cloud \ --image-family=debian-11 \ --machine-type=e2-micro \ --zone=us-west1-b \ --network-interface="subnet=producer-subnet,no-address" \ --metadata=startup-script='#!/bin/bash # Log incoming packets from the gateway IP and the GENEVE 6081 port. iptables -A INPUT -p udp -s '"$GW_IP"'/32 --dport 6081 -j LOG --log-prefix "[NSI MIRRORING] " # Spin up a simple server for health checks on port 80. nohup python3 -u -m http.server 80 &'
Add the VM instance to the instance group.
gcloud compute instance-groups unmanaged add-instances producer-instance-group \ --instances=producer-instance \ --zone=us-west1-b
Add the instance group to the backend service.
gcloud compute backend-services add-backend producer-backend-service \ --region=us-west1 \ --instance-group=producer-instance-group \ --instance-group-zone=us-west1-b
Create a firewall policy and add firewall rules
In this section, you create a firewall policy and add firewall rules to allow UDP traffic, Google Cloud health checks, and SSH connections to the producer VM instance through Identity-Aware Proxy (IAP).
Console
In the Google Cloud console, go to the Firewall policies page.
Click
Create firewall policy.In the Name field, enter
producer-firewall-policy
.For Deployment scope, select Global, and click Continue.
Create the following rules for your policy.
Allow UDP traffic with GENEVE port from the VPC gateway IP address
- Click Create firewall rule and configure the following
fields:
- Priority:
100
- Direction of traffic: Ingress
- Action on match: Allow
- Source filters > IP ranges:
GATEWAY_IP
- Protocol and ports: Select Specified protocol and
ports, select the UDP checkbox, and then, in Ports
specify
6081
.
- Priority:
- Click Create.
Replace
GATEWAY_IP
with the IP address of the subnet gateway.Allow Google Cloud health checks
Click Create firewall rule and configure the following fields:
- Priority:
101
- Direction of traffic: Ingress
- Action on match: Allow
- IP ranges:
35.191.0.0/16
and130.211.0.0/22
- Protocol and ports: Select Specified protocol and
ports, select the TCP checkbox, and then, in Ports
specify
80
.
- Priority:
Click Create.
Allow SSH connection to the producer VM instance through Identity-Aware Proxy
- Click Create firewall rule and configure the following
fields:
- Priority:
102
- Direction of traffic: Ingress
- Action on match: Allow
- IP ranges:
35.235.240.0/20
- Protocol and ports: Select Specified protocol and
ports, select the TCP checkbox, and then, in Ports
specify
22
.
- Priority:
- Click Create.
- Click Create firewall rule and configure the following
fields:
To associate the policy with a network, click Continue, and then click Associate.
Select the
producer-network
checkbox.Click Continue.
Click Create.
gcloud
Create global network firewall policy.
gcloud compute network-firewall-policies create producer-firewall-policy \ --global
Associate the firewall policy with the producer network.
gcloud compute network-firewall-policies associations create \ --name=producer-firewall-policy-assoc \ --firewall-policy=producer-firewall-policy \ --global-firewall-policy \ --network=producer-network
Create a firewall rule to allow UDP connection with GENEVE port from the VPC gateway IP address.
gcloud compute network-firewall-policies rules create 100 \ --firewall-policy=producer-firewall-policy \ --global-firewall-policy \ --action=allow \ --direction=INGRESS \ --layer4-configs=udp:6081 \ --src-ip-ranges=$GW_IP/32
Create a firewall rule to allow Google Cloud health checks.
gcloud compute network-firewall-policies rules create 101 \ --firewall-policy=producer-firewall-policy \ --global-firewall-policy \ --action=allow \ --direction=INGRESS \ --layer4-configs=tcp:80 \ --src-ip-ranges=35.191.0.0/16,130.211.0.0/22 # Google Cloud health check ranges
Create a firewall rule to allow SSH connection to the producer VM instance through Identity-Aware Proxy.
gcloud compute network-firewall-policies rules create 102 \ --firewall-policy=producer-firewall-policy \ --global-firewall-policy \ --action=allow \ --direction=INGRESS \ --layer4-configs=tcp:22 \ --src-ip-ranges=35.235.240.0/20 # Google Cloud IAP range
Create producer mirroring resources
In this section, you create a mirroring deployment group and a mirroring deployment.
Console
In the Google Cloud console, go to the Deployment groups page.
Click Create deployment group.
For Name, enter
producer-deployment-group
.For Network, select
producer-network
.For Purpose, select NSI out-of-band.
In the Mirroring deployments section, click Create mirroring deployment, specify the following fields, and then, click Create:
- Name:
producer-deployment
. - Region:
us-west1
. - Zone:
us-west1-b
. - Internal load balancer:
producer-ilb
.
- Name:
Click Create.
gcloud
Create a mirroring deployment group.
gcloud network-security mirroring-deployment-groups create producer-deployment-group \ --location=global \ --network=projects/PROJECT_ID/global/networks/producer-network \ --no-async
Replace
PROJECT_ID
with the ID of your project.Create a mirroring deployment.
gcloud network-security mirroring-deployments create producer-deployment \ --location=us-west1-b \ --forwarding-rule=producer-ilb-fr \ --forwarding-rule-location=us-west1 \ --mirroring-deployment-group=projects/PROJECT_ID/locations/global/mirroringDeploymentGroups/producer-deployment-group \ --no-async
Create consumer resources
In this section, you create the following resources for the consumer:
- A custom VPC network with a subnet
- A server and a client VM
- A firewall policy and a rule to mirror traffic
- A mirroring endpoint group and a mirroring endpoint group association
- A security profile and a security profile group
Create a custom VPC network
In this section, you create a VPC network with a subnet.
Console
In the Google Cloud console, go to the VPC networks page.
Click Click
Create VPC network.For Name, enter
consumer-network
.For Description, enter
Consumer VPC network
.In the Subnets section, do the following:
- For Subnet creation mode select Custom.
- In the New subnet section, enter the following information:
- Name:
consumer-subnet
- Region:
us-west1
- IP stack type: IPv4 (single-stack)
- IPv4 range:
10.11.0.0/16
- Name:
- Click Done.
Click Create.
gcloud
Create a consumer VPC network.
gcloud compute networks create consumer-network \ --subnet-mode=custom \ --description="Consumer VPC network"
In the VPC network, create a subnet.
gcloud compute networks subnets create consumer-subnet \ --network=consumer-network \ --region=us-west1 \ --range=10.11.0.0/16
Create server and client VMs
In this section, you create a server and a client VM.
Console
Create a server VM
In the Google Cloud console, go to the VM instances page.
Click Create instance.
Set Name to
consumer-server-vm
.Set Region to
us-west1
.Set Zone to
us-west1-b
.Set Machine type to e2-micro.
Click Networking and then, in the Network interfaces section, click Add a network interface and set the following:
- Network:
consumer-network
- Subnet:
consumer-subnet
- External IPv4 address: None
- Network:
Click Advanced and enter the following script in Startup script:
echo success > /tmp/connection_test && nohup python3 -u -m http.server --directory /tmp 8000 &
Click Create.
Create a client VM
In the Google Cloud console, go to the VM instances page.
Click Create instance.
Set Name to
consumer-client-vm
.Set Region to
us-west1
.Set Zone to
us-west1-b
.Set Machine type to e2-micro.
Click Networking and then, in the Network interfaces section, click Add a network interface and set the following:
- Network:
consumer-network
- Subnet:
consumer-subnet
- External IPv4 address: None
- Network:
Click Create.
gcloud
Create the server VM.
gcloud compute instances create consumer-server-vm \ --image-project=debian-cloud \ --image-family=debian-11 \ --machine-type=e2-micro \ --zone=us-west1-b \ --network-interface="subnet=consumer-subnet,no-address" \ --metadata=startup-script="echo success > /tmp/connection_test && nohup python3 -u -m http.server --directory /tmp 8000 &"
Create the client VM.
gcloud compute instances create consumer-client-vm \ --image-project=debian-cloud \ --image-family=debian-11 \ --machine-type=e2-micro \ --zone=us-west1-b \ --network-interface="subnet=consumer-subnet,no-address"
Create a firewall policy to allow ingress traffic
In this section, you create a firewall policy and add a firewall rule to allow ingress traffic to the consumer VMs.
Console
In the Google Cloud console, go to the Firewall policies page.
Click
Create firewall policy.In the Name field, enter
consumer-firewall-policy
.For Deployment scope, select Global, and click Continue.
Click Create firewall rule, configure the following fields, and click Create:
- Priority:
101
- Direction of traffic: Ingress
- Action on match: Allow
- Source filters > IP ranges:
35.235.240.0/20
- Protocol and ports: Select Specified protocol and
ports, select the TCP checkbox, and then, in Ports
specify
22
.
The IPv4 range
35.235.240.0/20
contains all IP addresses that Identity-Aware Proxy uses for TCP forwarding. For more information, see Preparing your project for IAP TCP forwarding.- Priority:
To allow traffic on TCP port
8000
into the server VM, click Create firewall rule and configure the following fields:- Priority:
102
- Direction of traffic: Ingress
- Action on match: Allow
- Source filters > IP ranges:
10.11.0.0/16
- Protocol and ports: Select Specified protocol and
ports, select the TCP checkbox, and then, in Ports
specify
8000
. - Click Create
- Priority:
To associate the policy with a network, click Continue, and then click Associate.
Select the
consumer-network
checkbox.Click Continue.
Click Create.
gcloud
Create global network firewall policy.
gcloud compute network-firewall-policies create consumer-firewall-policy \ --global
Associate the firewall policy with the consumer network.
gcloud compute network-firewall-policies associations create \ --name=consumer-firewall-policy-assoc \ --firewall-policy=consumer-firewall-policy \ --global-firewall-policy \ --network=consumer-network
Create an SSH allow rule to allow SSH connection to the client VM instance through Identity-Aware Proxy.
gcloud compute network-firewall-policies rules create 101 \ --firewall-policy=consumer-firewall-policy \ --global-firewall-policy \ --action=allow \ --direction=INGRESS \ --layer4-configs=tcp:22 \ --src-ip-ranges=35.235.240.0/20 # Google Cloud IAP range
The IPv4 range
35.235.240.0/20
contains all IP addresses that IAP uses for TCP forwarding. For more information, see Preparing your project for IAP TCP forwarding.Create firewall rule to allow traffic on TCP port
8000
into the server VM.gcloud compute network-firewall-policies rules create 102 \ --firewall-policy=consumer-firewall-policy \ --global-firewall-policy \ --action=allow \ --direction=INGRESS \ --layer4-configs=tcp:8000 \ --src-ip-ranges=10.11.0.0/16
Create consumer endpoint group
In this section, you create a mirroring endpoint group and a mirroring endpoint group association.
Console
In the Google Cloud console, go to the Endpoint groups page.
Click Create endpoint group.
For Name, enter
consumer-endpoint-group
.For Purpose, select NSI out-of-band.
For Deployment group, select In project.
For Deployment group name, enter
producer-deployment-group
.Click Continue.
Click Add endpoint group association.
For Project, select your current project.
For Network, select
consumer-network
.Click Create.
gcloud
Create the mirroring endpoint group.
gcloud network-security mirroring-endpoint-groups create consumer-endpoint-group \ --location=global \ --mirroring-deployment-group=projects/PROJECT_ID/locations/global/mirroringDeploymentGroups/producer-deployment-group \ --no-async
Replace
PROJECT_ID
with the ID of your project.Create the mirroring endpoint group association.
gcloud network-security mirroring-endpoint-group-associations create consumer-endpoint-group-association \ --location=global \ --mirroring-endpoint-group=projects/PROJECT_ID/locations/global/mirroringEndpointGroups/consumer-endpoint-group \ --network=consumer-network \ --no-async
Create a security profile and a security profile group
Create a security profile group and a custom security profile to mirror traffic.
Console
Create a custom security profile
In the Google Cloud console, go to the Security profiles page.
From the project picker, select your organization.
In the Security profiles tab, click Create profile.
For Name, enter
consumer-security-profile
.For Purpose, select NSI out-of-band.
For Project, select your current project.
For Endpoint group, select
consumer-endpoint-group
.Click Create.
Create a security profile group
In the Google Cloud console, go to the Security profile groups page.
From the project picker, select your organization.
In the Security profile groups tab, click Create profile group.
For Name, enter
consumer-security-profile-group
.For Purpose, select NSI out-of-band.
For Custom mirroring profile, select
consumer-security-profile
.Click Create.
gcloud
Create a custom mirroring security profile.
gcloud network-security security-profiles custom-mirroring create consumer-security-profile \ --location=global \ --organization=ORG_ID \ --mirroring-endpoint-group=projects/PROJECT_ID/locations/global/mirroringEndpointGroups/consumer-endpoint-group \ --billing-project=PROJECT_ID \ --no-async
Replace the following:
ORG_ID
: the ID of your organization. Security profiles are organizational-level resources. To create them, you need the Security Profile Admin role (networksecurity.securityProfileAdmin
) at the organization level.PROJECT_ID
: the ID of your project.
Create a mirroring security profile group.
gcloud network-security security-profile-groups create consumer-security-profile-group \ --location=global \ --organization=ORG_ID \ --custom-mirroring-profile=organizations/ORG_ID/locations/global/securityProfiles/consumer-security-profile \ --billing-project=PROJECT_ID \ --no-async
Replace the following:
ORG_ID
: the ID of your organization. Security profile groups are organizational-level resources. To create them, you need the Security Profile Admin role (networksecurity.securityProfileAdmin
) at the organization level.PROJECT_ID
: the ID of your project.
Create a firewall policy rule to mirror traffic
In this section, you create a mirroring rule to mirror traffic.
Console
In the Google Cloud console, go to the Firewall policies page.
Click
consumer-firewall-policy
.Click Mirroring rules tab.
Click Create mirroring rule and configure the following fields:
- Priority:
100
- Direction of traffic: Ingress
- Action on match: Mirror
- Security profile group:
consumer-security-profile-group
- Source: IPv4
- IP ranges:
10.11.0.0/16
- Protocol and ports: select Specified protocol and
ports, select the TCP checkbox, and then, in Ports,
specify
8000
.
- Priority:
Click Create.
gcloud
Add a firewall rule to mirror traffic on the TCP port
8000
on the server VM.gcloud compute network-firewall-policies mirroring-rules create 100 \ --firewall-policy=consumer-firewall-policy \ --global-firewall-policy \ --action=mirror \ --security-profile-group=organizations/ORG_ID/locations/global/securityProfileGroups/consumer-security-profile-group \ --direction=INGRESS \ --layer4-configs=tcp:8000 \ --src-ip-ranges=10.11.0.0/16
Replace
ORG_ID
with the ID of your organization.
Test the connection
In this section, you send some network traffic from the consumer client VM instance to the consumer server VM instance, and then check the logs of the producer VM instance to verify the mirroring.
Run the following command to connect to the consumer client VM instance through SSH, and send a request to the consumer server VM instance.
gcloud compute ssh consumer-client-vm \ --tunnel-through-iap \ --zone=us-west1-b \ --command="curl -m 3 -s http://consumer-server-vm:8000/connection_test || echo fail"
You see the
success
message when you run the previous command. It indicates that traffic is sent from the client to the server.Run the following command to check the logs of the producer VM instance.
gcloud compute ssh producer-instance \ --tunnel-through-iap \ --zone=us-west1-b \ --command="cat /var/log/syslog | grep 'NSI MIRRORING'"
You see a message similar to
[NSI MIRRORING] IN=ens4 OUT= MAC=xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx SRC=10.10.0.1 DST=10.10.0.2 LEN=136 TOS=0x00 PREC=0x00 TTL=64 ID=0 DF PROTO=UDP SPT=45554 DPT=6081 LEN=116
. It indicates that the client-server traffic is mirrored by the producer VM instance.