Set up in-band integration for a producer-consumer model

Network Security Integration uses the producer-consumer model to inspect and monitor data. It uses in-band integration with packet intercept technology to insert third-party network devices into the network traffic flow and perform deep packet inspection.

This tutorial describes how to create and configure producer and consumer resources to set up in-band integration.

Objectives

This tutorial shows you how to complete the following tasks in a project:

  • Create custom VPC networks with subnets for the producer and the consumer in the same project.
  • For the producer, create and configure producer resources, such as an internal passthrough Network Load Balancer, an interception service, and intercept deployment resources.
  • For the consumer, create and configure client and server virtual machine (VM) instances, consumer endpoint resources, and firewall policies to intercept the client-server traffic.
  • Test the connection and verify that network traffic packets are intercepted by the consumer's endpoint resources and inspected by the producer's intercept resources.

Before you begin

  1. Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
  2. In the Google Cloud console, on the project selector page, select or create a Google Cloud project.

    Roles required to select or create a project

    • Select a project: Selecting a project doesn't require a specific IAM role—you can select any project that you've been granted a role on.
    • Create a project: To create a project, you need the Project Creator role (roles/resourcemanager.projectCreator), which contains the resourcemanager.projects.create permission. Learn how to grant roles.

    Go to project selector

  3. Verify that billing is enabled for your Google Cloud project.

  4. In the Google Cloud console, on the project selector page, select or create a Google Cloud project.

    Roles required to select or create a project

    • Select a project: Selecting a project doesn't require a specific IAM role—you can select any project that you've been granted a role on.
    • Create a project: To create a project, you need the Project Creator role (roles/resourcemanager.projectCreator), which contains the resourcemanager.projects.create permission. Learn how to grant roles.

    Go to project selector

  5. Verify that billing is enabled for your Google Cloud project.

  6. Enable the Compute Engine API for your project.
  7. Enable the Network Security API in the Google Cloud project that you want to use for billing.
  8. Make sure that you have the Compute Network Admin role (roles/compute.networkAdmin) granted at the project level and the Security Profile Admin role (roles/networksecurity.securityProfileAdmin) granted at the organization level.
  9. If you prefer to work from the command line, install the Google Cloud CLI. For the conceptual and installation information about the tool, see gcloud CLI overview.

    Note: If you haven't run the Google Cloud CLI previously, first run gcloud init to initialize your gcloud CLI directory.

  10. Get the ID of your project. You need it to create intercept and endpoint resources.

    If you're using gcloud CLI, you can replace the PROJECT_ID here or later in the respective commands.

  11. Get the ID of your organization. You need it to create organization level resources, such as security profiles and security profile groups.

    If you're using gcloud CLI, you can replace the ORG_ID here or later in the respective commands.

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 running a Generic Network Virtualization Encapsulation (GENEVE) echo server.
  • An internal passthrough Network Load Balancer with a backend service and a forwarding rule.
  • A firewall rule to allow Google Cloud health checks.
  • An intercept deployment group and an intercept deployment.

Create a custom VPC network

In this section, you create a VPC network with a subnet.

Console

  1. In the Google Cloud console, go to the VPC networks page.

    Go to VPC networks

  2. Click Create VPC network.

  3. For Name, enter producer-network.

  4. For Description, enter Producer VPC network.

  5. In the Subnets section, do the following:

    1. For Subnet creation mode, choose Custom.
    2. 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
    3. Click Done.
  6. Click Create.

  7. Open the Google Cloud CLI and run the following command to increase the maximum transmission unit (MTU) of the VPC network.

    gcloud compute networks update producer-network \
        --mtu=1856
    

    In the command, you specify MTU of 1856 bytes, which is the sum of the default MTU of a VPC network (1460 bytes) and the Network Security Integration GENEVE encapsulation overhead (396 bytes).

gcloud

  1. Create a VPC network.

    gcloud compute networks create producer-network \
        --subnet-mode=custom \
        --mtu=1856 \
        --description="Producer VPC network"
    

    In the command, you specify maximum transmission unit (MTU) of 1856 bytes, which is the sum of the default MTU of a VPC network (1460 bytes) and the Network Security Integration GENEVE encapsulation overhead (396 bytes).

  2. 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

  1. In the Google Cloud console, go to the Instance groups page.

    Go to Instance groups

  2. Click Create instance group.

  3. Click New unmanaged instance group.

  4. For Name, enter producer-instance-group.

  5. In the Location section, select us-west1 for Region, and select us-west1-b for Zone.

  6. For Network, select producer-network.

  7. For Subnetwork, select producer-subnet.

  8. 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

  1. In the Google Cloud console, go to the Load balancing page.

    Go to Load balancing

  2. Click Create load balancer.
  3. For Type of load balancer, select Network Load Balancer (TCP/UDP/SSL) and click Next.
  4. For Proxy or passthrough, select Passthrough load balancer and click Next.
  5. For Public facing or internal, select Internal and click Next.
  6. 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

  1. Click Backend configuration.
  2. For Protocol, select UDP.
  3. 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
  4. In the New Backend section of Backends, select the IP stack type as IPv4 (single-stack).
  5. In Instance group, select the producer-instance-group instance group and click Done.
  6. 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, do the following:

  1. For Name, enter producer-ilb-fr.
  2. For Subnetwork, select producer-subnet.
  3. For Ports, select Single and then in Port number, enter 6081.
  4. Verify that there is a blue check mark next to Frontend configuration before continuing.

Review the configuration

  1. Click Review and finalize.
  2. Review your load balancer configuration settings.
  3. Click Create.

gcloud

  1. Create a regional health check.

    gcloud compute health-checks create tcp producer-health-check \
        --region=us-west1 \
        --port=80
    
  2. 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
    
  3. 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 \
        --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 an echo server for GENEVE encapsulated packets.

Before you create the VM instance, get the IP address of the internal passthrough Network Load Balancer's forwarding rule and subnet's gateway. You need the IP addresses for the startup script.

Console

Get the IP address of the internal passthrough Network Load Balancer

  1. In the Google Cloud console, go to the Load balancing page.

    Go to Load balancing

  2. Click the producer-ilb load balancer.

  3. In the Frontend section, note the IP address of the forwarding rule from the IP:ports column.

Get the IP address of the subnet gateway

  1. In the Google Cloud console, go to the VPC networks page.

    Go to VPC networks

  2. Click the producer-network VPC network.

  3. Click the Subnets tab.

  4. In the Subnets section, note the gateway IP address from the Gateway column.

Create the VM instance

  1. In the Google Cloud console, go to the VM instances page.

    Go to VM instances

    1. Click Create instance.
    2. For Name, enter producer-instance.
    3. For Region, select us-west1.
    4. For Zone, select us-west1-b.
    5. Click Networking and configure the following fields:

      In the Network interfaces section, click default and edit the network interface.

      • Network: producer-network
      • Subnet: producer-subnet
      • External IPv4 address: None
    6. Click Advanced and enter the following script in Startup script:

      #!/bin/bash
      # Enable IP forwarding.
      echo 1 > /proc/sys/net/ipv4/ip_forward
      
      # Log incoming packets from the gateway IP and the GENEVE 6081
      # port.
      iptables -t nat -A PREROUTING -p udp -s GATEWAY_IP/32 --dport 6081 -j LOG --log-prefix="[NSI INTERCEPT] "
      
      # Apply DNAT (Destination NAT) on incoming packets from the gateway IP
      # and the GENEVE 6081 port.
      # Set the destination IP to the gateway IP so the packet is rerouted
      # back to the sender.
      iptables -t nat -A PREROUTING -p udp -s GATEWAY_IP/32 --dport 6081 -j DNAT --to-destination GATEWAY_IP
      
      # Apply SNAT (Source NAT) on outgoing packets that have the GENEVE 6081
      # port and source IP that equals the gateway IP.
      # Set the source IP to the internal load balancer IP which
      # effectively swaps the IPs of the original packet.
      iptables -t nat -A POSTROUTING -p udp -s GATEWAY_IP/32 --dport 6081 -j SNAT --to-source LOAD_BALANCER_IP
      
      # Spin up a simple server for health checks on port 80.
      nohup python3 -u -m http.server 80 &
      

      Replace the following:

      • GATEWAY_IP: the IP address of the subnet gateway.
      • LOAD_BALANCER_IP: the IP address of the load balancer forwarding rule.
    7. Click Create.

Add the VM instance to the instance group

  1. In the Google Cloud console, go to the Instance groups page.

    Go to Instance groups

  2. Click producer-instance-group.

  3. Click Edit.

  4. In the VM instances section, from the Select VMs list, select producer-instance VM.

  5. Click Save.

gcloud

  1. Get the IP address of the load balancer's forwarding rule.

    ILB_IP=$(gcloud compute forwarding-rules describe producer-ilb-fr \
        --region=us-west1 \
        --format="get(IPAddress)")
    
  2. Get the IP address of the subnet's gateway.

    GW_IP=$(gcloud compute networks subnets describe producer-subnet \
        --region=us-west1 \
        --format="get(gatewayAddress)")
    
  3. 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
        # Enable IP forwarding.
        echo 1 > /proc/sys/net/ipv4/ip_forward
    
        # Log incoming packets from the gateway IP and the GENEVE 6081 port.
        iptables -t nat -A PREROUTING -p udp -s '"$GW_IP"'/32 --dport 6081 -j LOG --log-prefix="[NSI INTERCEPT] "
    
        # Apply DNAT (Destination NAT) on incoming packets from the gateway
        # IP and the GENEVE 6081 port.
        # Set the destination IP to the gateway IP so the packet is rerouted
        # back to the sender.
        iptables -t nat -A PREROUTING -p udp -s '"$GW_IP"'/32 --dport 6081 -j DNAT --to-destination '"$GW_IP"'
    
        # Apply SNAT (Source NAT) on outgoing packets that have the GENEVE
        # 6081 port and source IP that equals the gateway IP.
        # Set the source IP to the internal load balancer IP which
        # effectively swaps the IPs of the original packet.
        iptables -t nat -A POSTROUTING -p udp -s '"$GW_IP"'/32 --dport 6081 -j SNAT --to-source '"$ILB_IP"'
    
        # Spin up a simple server for health checks on port 80.
        nohup python3 -u -m http.server 80 &'
    
  4. 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
    
  5. 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 connections, Google Cloud health checks, and SSH connections to the producer VM instance through Identity-Aware Proxy (IAP).

Console

  1. In the Google Cloud console, go to the Firewall policies page.

    Go to Firewall policies

  2. Click Create firewall policy.

  3. In the Name field, enter producer-firewall-policy.

  4. For Deployment scope, select Global, and click Continue.

  5. Create the following rules for your policy.

    Allow UDP connection with GENEVE port from the VPC gateway IP address

    1. 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 specify 6081 in Ports.
    2. Click Create.

    Replace GATEWAY_IP with the IP address of the subnet gateway.

    Allow Google Cloud health checks

    1. 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 and 130.211.0.0/22
      • Protocol and ports: Select Specified protocol and ports, select the TCP checkbox and specify 80 in Ports.
    2. Click Create.

    Allow SSH connection to the producer VM instance through Identity-Aware Proxy

    1. 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 specify 22 in Ports.
    2. Click Create.
  6. To associate the policy with a network, click Continue, and then click Associate.

  7. Select the producer-network checkbox.

  8. Click Continue.

  9. Click Create.

gcloud

  1. Create global network firewall policy.

    gcloud compute network-firewall-policies create producer-firewall-policy \
        --global
    
  2. 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
    
  3. 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
    
  4. 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
    
  5. 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
    

Create producer intercept resources

In this section, you create an intercept deployment group and an intercept deployment.

Console

  1. In the Google Cloud console, go to the Deployment groups page.

    Go to Deployment groups

  2. Click Create deployment group.

  3. For Name, enter producer-deployment-group.

  4. For Network, select producer-network.

  5. For Purpose, select NSI in-band.

  6. In the Intercept deployments section, click Create intercept deployment, specify the following fields, and click Create:

    • Name: producer-deployment.
    • Region: us-west1.
    • Zone: us-west1-b.
    • Internal load balancer: producer-ilb.
  7. Click Create.

gcloud

  1. Create an intercept deployment group.

    gcloud network-security intercept-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.

  2. Create an intercept deployment.

    gcloud network-security intercept-deployments create producer-deployment \
        --location=us-west1-b \
        --forwarding-rule=producer-ilb-fr \
        --forwarding-rule-location=us-west1 \
        --intercept-deployment-group=projects/PROJECT_ID/locations/global/interceptDeploymentGroups/producer-deployment-group \
        --no-async
    

    Replace PROJECT_ID with the ID of your project.

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 intercept traffic.
  • An intercept endpoint group and an intercept 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

  1. In the Google Cloud console, go to the VPC networks page.

    Go to VPC networks

  2. Click Create VPC network.

  3. For Name, enter consumer-network.

  4. For Description, enter Consumer VPC network.

  5. In the Subnets section, do the following:

    1. Set the Subnet creation mode to Custom.
    2. In the New subnet section, enter the following information:
      • Name: consumer-subnet
      • Region: us-west1
      • IP stack type: IPv4 (single-stack)
      • IPv4 range: 10.10.0.0/16
    3. Click Done.
  6. Click Create.

gcloud

  1. Create a consumer VPC network.

    gcloud compute networks create consumer-network \
        --subnet-mode=custom \
        --description="Consumer VPC network"
    
  2. In the VPC network, create a subnet.

    gcloud compute networks subnets create consumer-subnet \
        --network=consumer-network \
        --region=us-west1 \
        --range=10.10.0.0/16
    

Create server and client VMs

In this section, you create a server and a client VM.

Console

Create a server VM

  1. In the Google Cloud console, go to the VM instances page.

    Go to VM instances

  2. Click Create instance.

  3. Set Name to consumer-server-vm.

  4. Set Region to us-west1.

  5. Set Zone to us-west1-b.

  6. Set Machine type to e2-micro.

  7. Click Networking and configure the following fields:

  8. In the Network interfaces section, click default and edit the network interface:

    • Network: consumer-network
    • Subnet: consumer-subnet
    • External IPv4 address: None
  9. Click Advanced and enter the following script in Startup script:

    echo success > /tmp/connection_test && nohup python3 -u -m http.server --directory /tmp 8000
    
  10. Click Create.

Create a client VM

  1. In the Google Cloud console, go to the VM instances page.

    Go to VM instances

  2. Click Create instance.

  3. Set Name to consumer-client-vm.

  4. Set Region to us-west1.

  5. Set Zone to us-west1-b.

  6. Set Machine type to e2-micro.

  7. Click Networking and configure the following fields:

  8. In the Network interfaces section, click default and edit the network interface:

    • Network: consumer-network
    • Subnet: consumer-subnet
    • External IPv4 address: None
  9. Click Create.

gcloud

  1. 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"
    
  2. 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 SSH access

In this section, you create a firewall policy and add a firewall rule to allow SSH access to the consumer VMs.

Console

  1. In the Google Cloud console, go to the Firewall policies page.

    Go to Firewall policies

  2. Click Create firewall policy.

  3. In the Name field, enter consumer-firewall-policy.

  4. For Deployment scope, select Global, and click Continue.

  5. Click Create firewall rule, configure the following fields, and click Create:

    • Priority: 100
    • 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 specify 22 in Ports.

    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 TCP forwarding.

  6. To associate the policy with a network, click Continue, and then click Associate.

  7. Select the consumer-network checkbox.

  8. Click Continue.

  9. Click Create.

gcloud

  1. Create global network firewall policy.

    gcloud compute network-firewall-policies create consumer-firewall-policy \
        --global
    
  2. 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
    
  3. 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
    

    The IPv4 range 35.235.240.0/20 contains all IP addresses that Identity-Aware Proxy (IAP) uses for TCP forwarding. For more information, see Preparing your project for TCP forwarding.

Create consumer endpoint group

In this section, you create an intercept endpoint group and an intercept endpoint group association.

Console

  1. In the Google Cloud console, go to the Endpoint groups page.

    Go to Endpoint groups

  2. Click Create endpoint group.

  3. For Name, enter consumer-endpoint-group.

  4. For Deployment group, from the Select project menu, select Select current project.

  5. For Intercept deployment group, select producer-deployment-group.

  6. Click Continue.

  7. Click Add endpoint group association.

  8. For Project, select your current project.

  9. For Network, select consumer-network.

  10. Click Create.

gcloud

  1. Create the intercept endpoint group.

    gcloud network-security intercept-endpoint-groups create consumer-endpoint-group \
        --location=global \
        --intercept-deployment-group=projects/PROJECT_ID/locations/global/interceptDeploymentGroups/producer-deployment-group \
        --no-async
    

    Replace PROJECT_ID with the ID of your project.

  2. Create the intercept endpoint group association.

    gcloud network-security intercept-endpoint-group-associations create consumer-endpoint-group-association \
        --location=global \
        --intercept-endpoint-group=projects/PROJECT_ID/locations/global/interceptEndpointGroups/consumer-endpoint-group \
        --network=consumer-network \
        --no-async
    

    Replace PROJECT_ID with the ID of your project.

Create a security profile and a security profile group

Create a security profile group and a custom security profile to intercept traffic.

Console

Create a security profile

  1. In the Google Cloud console, go to the Security profiles page.

    Go to Security profiles

  2. From the project picker, select your organization.

  3. In the Security profiles tab, click Create profile.

  4. For Name, enter consumer-security-profile.

  5. For Security profile purpose, select NSI in-band.

  6. For Project, select your current project.

  7. For Intercept endpoint group, select consumer-endpoint-group.

  8. Click Create.

Create a security profile group

  1. In the Google Cloud console, go to the Security profile groups page.

    Go to Security profile groups

  2. From the project picker, select your organization.

  3. In the Security profile groups tab, click Create profile group.

  4. For Name, enter consumer-security-profile-group.

  5. For Security profile group purpose, select NSI in-band.

  6. For Custom intercept profile, select consumer-security-profile.

  7. Click Create.

gcloud

  1. Create an intercept security profile.

    gcloud network-security security-profiles custom-intercept create consumer-security-profile \
        --location=global \
        --organization=ORG_ID \
        --intercept-endpoint-group=projects/PROJECT_ID/locations/global/interceptEndpointGroups/consumer-endpoint-group \
        --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.
  2. Create an intercept security profile group.

    gcloud network-security security-profile-groups create consumer-security-profile-group \
        --location=global \
        --organization=ORG_ID \
        --custom-intercept-profile=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 to intercept traffic

In this section, you create a firewall policy and a firewall rule to intercept traffic.

Console

  1. In the Google Cloud console, go to the Firewall policies page.

    Go to Firewall policies

  2. Click consumer-firewall-policy.

  3. Click Create firewall rule and configure the following fields:

    • Priority: 100
    • Direction of traffic: Ingress
    • Action on match: Proceed to L7 inspection
    • Purpose: NSI in-band
    • Security profile group: consumer-security-profile-group
    • IP ranges: 10.10.0.0/16
    • Protocol and ports: Select Specified protocol and ports, select the TCP checkbox and specify 8000 in Ports.
  4. Click Create.

gcloud

  1. Add a firewall rule to intercept traffic on the TCP port 8000 on the server VM.

    gcloud compute network-firewall-policies rules create 100 \
        --firewall-policy=consumer-firewall-policy \
        --global-firewall-policy \
        --action=apply_security_profile_group \
        --security-profile-group=organizations/ORG_ID/locations/global/securityProfileGroups/consumer-security-profile-group \
        --direction=INGRESS \
        --layer4-configs=tcp:8000 \
        --src-ip-ranges=10.10.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 interception.

  1. 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.

  2. 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 INTERCEPT'"
    

    You see a message similar to [NSI INTERCEPT] 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 intercepted by the producer VM instance.

Clean up

To avoid incurring charges to your Google Cloud account for the resources used in this tutorial, either delete the project that contains the resources, or keep the project and delete the individual resources.

Delete the consumer resources

  1. Disassociate the firewall policy from the consumer network and delete the firewall policy.

    Console

    1. In the Google Cloud console, go to the Firewall policies page.

      Go to Firewall policies

    2. Click the consumer-firewall-policy policy.

    3. Click the Associations tab.

    4. Select the consumer-network association checkbox.

    5. Click Remove association.

    6. Click Remove.

    7. On the top of the page, click Delete.

    8. Click Delete again to confirm.

    gcloud

    1. Remove the association.

      gcloud compute network-firewall-policies associations delete \
          --name=consumer-firewall-policy-assoc \
          --firewall-policy=consumer-firewall-policy \
          --global-firewall-policy
      
    2. Delete the firewall policy.

      gcloud compute network-firewall-policies delete consumer-firewall-policy \
          --global
      
  2. Delete the security profile group.

    Console

    1. In the Google Cloud console, go to the Security profiles page.

      Go to Security profiles

    2. From the project picker, select your organization.

    3. In the Security profile groups tab, select the consumer-security-profile-group security profile group, and then click Delete.

    4. Click Delete again to confirm.

    gcloud

    gcloud network-security security-profile-groups delete consumer-security-profile-group \
        --location=global \
        --organization=ORG_ID \
        --billing-project=PROJECT_ID \
        --quiet
    

    Replace the following:

    • ORG_ID: the ID of your organization
    • PROJECT_ID: the ID of your project
  3. Delete the security profile.

    Console

    1. In the Google Cloud console, go to the Security profiles page.

      Go to Security profiles

    2. From the project picker, select your organization.

    3. In the Security profiles tab, select the consumer-security-profile security profile, and then click Delete.

    4. Click Delete again to confirm.

    gcloud

    gcloud network-security security-profiles custom-intercept delete consumer-security-profile \
        --location=global \
        --organization=ORG_ID \
        --billing-project=PROJECT_ID \
        --quiet
    

    Replace the following:

    • ORG_ID: the ID of your organization
    • PROJECT_ID: the ID of your project
  4. Delete the intercept endpoint group association.

    Console

    1. In the Google Cloud console, go to the Endpoint groups page.

      Go to Endpoint groups

    2. Click consumer-endpoint-group.

    3. Select the consumer-network association and click Delete.

    4. Click Delete again to confirm.

    gcloud

    gcloud network-security intercept-endpoint-group-associations delete consumer-endpoint-group-association \
        --location=global \
        --no-async
    
  5. Delete the intercept endpoint group.

    Console

    1. In the Google Cloud console, go to the Endpoint groups page.

      Go to Endpoint groups

    2. Select consumer-endpoint-group and click Delete.

    3. Click Delete again to confirm.

    gcloud

    gcloud network-security intercept-endpoint-groups delete consumer-endpoint-group \
        --location=global \
        --no-async
    
  6. Delete the server and client VMs.

    Console

    1. In the Google Cloud console, go to the VM instances page.

      Go to VM instances

    2. Select the checkboxes of consumer-client-vm and consumer-server-vm and click Delete.

    3. Click Delete again to confirm.

    gcloud

    1. Delete the client VM.

      gcloud compute instances delete consumer-client-vm \
          --zone=us-west1-b \
          --quiet
      
    2. Delete the server VM.

      gcloud compute instances delete consumer-server-vm \
          --zone=us-west1-b \
          --quiet
      
  7. Delete the consumer network and subnet.

    Console

    1. In the Google Cloud console, go to the VPC networks page.

      Go to VPC networks

    2. Click consumer-network.

    3. In the Subnets tab, select the checkbox of consumer-subnet and click Delete.

    4. Click Delete again to confirm.

    5. Click Delete VPC network.

    6. In the text field, enter consumer-network and click Delete.

    gcloud

    1. Delete the subnet.

      gcloud compute networks subnets delete consumer-subnet \
          --region=us-west1 \
          --quiet
      
    2. Delete the VPC network.

      gcloud compute networks delete consumer-network \
          --quiet
      

Delete the producer resources

  1. Disassociate the firewall policy from the producer network and delete the firewall policy.

    Console

    1. In the Google Cloud console, go to the Firewall policies page.

      Go to Firewall policies

    2. Click the producer-firewall-policy policy.

    3. Click the Associations tab.

    4. Select the producer-network association checkbox.

    5. Click Remove association.

    6. Click Remove.

    7. On the top of the page, click Delete.

    8. Click Delete again to confirm.

    gcloud

    1. Remove the association.

      gcloud compute network-firewall-policies associations delete \
          --name=producer-firewall-policy-assoc \
          --firewall-policy=producer-firewall-policy \
          --global-firewall-policy
      
    2. Delete the firewall policy.

      gcloud compute network-firewall-policies delete producer-firewall-policy \
          --global
      
  2. Delete the intercept deployment and intercept deployment group.

    Console

    1. In the Google Cloud console, go to the Deployment groups page.

      Go to Deployment groups

    2. Click producer-deployment-group.

    3. Delete producer-deployment.

      1. Select the producer-deployment checkbox and click Delete.
      2. Click Delete again to confirm.
    4. Click the Delete button at the top of the page.

    5. Click Delete again to confirm.

    gcloud

    1. Delete the intercept deployment.

      gcloud network-security intercept-deployments delete producer-deployment \
          --location=us-west1-b \
          --no-async
      
    2. Delete the intercept deployment group.

      gcloud network-security intercept-deployment-groups delete producer-deployment-group \
          --location=global \
          --no-async
      
  3. Delete the load balancer resources.

    Console

    1. In the Google Cloud console, go to the Load balancing page.

      Go to Load balancing

    2. Select the producer-ilb checkbox.

    3. Click the Delete button at the top of the page.

    4. Select the producer-health-check checkbox and click Delete load balancer and the selected resources.

    gcloud

    1. Delete the forwarding rule.

      gcloud compute forwarding-rules delete producer-ilb-fr \
          --region=us-west1 \
          --quiet
      
    2. Remove the backend service.

      gcloud compute backend-services delete producer-backend-service \
          --region=us-west1 \
          --quiet
      
    3. Delete the health check.

      gcloud compute health-checks delete producer-health-check \
          --region=us-west1 \
          --quiet
      
  4. Delete the producer VM instance.

    Console

    1. In the Google Cloud console, go to the VM instances page.

      Go to VM instances

    2. Select the checkbox of producer-instance and click Delete.

    3. Click Delete again to confirm.

    gcloud

    gcloud compute instances delete producer-instance \
        --zone=us-west1-b \
        --quiet
    
  5. Delete the instance group.

    Console

    1. In the Google Cloud console, go to the Instance groups page.

      Go to Instance groups

    2. Select the producer-instance-group checkbox.

    3. Click Delete.

    4. In the confirmation window, click Delete.

    gcloud

    gcloud compute instance-groups unmanaged delete producer-instance-group \
        --zone=us-west1-b \
        --quiet
    
  6. Delete the producer network and subnet.

    Console

    1. In the Google Cloud console, go to the VPC networks page.

      Go to VPC networks

    2. Click producer-network.

    3. In the Subnets tab, select the checkbox of producer-subnet and click Delete.

    4. Click Delete again to confirm.

    5. Click Delete VPC network.

    6. In the text field, enter producer-network and click Delete.

    gcloud

    1. Delete the subnet.

      gcloud compute networks subnets delete producer-subnet \
          --region=us-west1 \
          --quiet
      
    2. Delete the network.

      gcloud compute networks delete producer-network \
          --quiet
      

What's next