Ensure Control Plane Authorized Networks is Enabled (Automated)
Scanned 9/3/2026
Install to Claude Code
npx -y skills add CyberStrikeus/CyberStrike --skill cis-gke-v180-5.6.3 --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Cis Gke V180 5.6.3?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/cyberstrikeus-cis-gke-v180-5-6-3)More formats (shields.io, HTML) on the badges page.
---
name: cis-gke-v180-5.6.3
description: "Ensure Control Plane Authorized Networks is Enabled (Automated)"
category: cis-gke
version: "1.8.0"
author: cyberstrike-official
tags:
[
cis,
gke,
kubernetes,
gcp,
cluster-networking,
vpc-flow-logs,
intranode-visibility,
vpc-native,
private-cluster,
authorized-networks,
firewall,
ssl-certificates,
]
cis_id: "5.6.3"
cis_benchmark: "CIS Google Kubernetes Engine (GKE) Benchmark v1.8.0"
tech_stack: [kubernetes, gcp, gke]
cwe_ids: []
chains_with: []
prerequisites: []
severity_boost: {}
---
# 5.6.3 Ensure Control Plane Authorized Networks is Enabled (Automated)
## Profile Applicability
- Level 2
## Description
Enable Control Plane Authorized Networks to restrict access to the cluster's control plane to only an allowlist of authorized IPs.
## Rationale
Authorized networks are a way of specifying a restricted range of IP addresses that are permitted to access your cluster's control plane. Kubernetes Engine uses both Transport Layer Security (TLS) and authentication to provide secure access to your cluster's control plane from the public internet. This provides you the flexibility to administer your cluster from anywhere; however, you might want to further restrict access to a set of IP addresses that you control. You can set this restriction by specifying an authorized network.
Control Plane Authorized Networks blocks untrusted IP addresses. Google Cloud Platform IPs (such as traffic from Compute Engine VMs) can reach your master through HTTPS provided that they have the necessary Kubernetes credentials.
Restricting access to an authorized network can provide additional security benefits for your container cluster, including:
- Better protection from outsider attacks: Authorized networks provide an additional layer of security by limiting external, non-GCP access to a specific set of addresses you designate, such as those that originate from your premises. This helps protect access to your cluster in the case of a vulnerability in the cluster's authentication or authorization mechanism.
- Better protection from insider attacks: Authorized networks help protect your cluster from accidental leaks of master certificates from your company's premises. Leaked certificates used from outside GCP and outside the authorized IP ranges (for example, from addresses outside your company) are still denied access.
## Impact
When implementing Control Plane Authorized Networks, be careful to ensure all desired networks are on the allowlist to prevent inadvertently blocking external access to your cluster's control plane.
## Audit
Using Google Cloud Console:
1. Go to Kubernetes Engine by visiting: https://console.cloud.google.com/kubernetes/list.
2. From the list of clusters, click on the cluster to open the Details page and make sure 'Master authorized networks' is set to 'Enabled'.
Using Command Line:
To check Master Authorized Networks status for an existing cluster, first define 2 variables Cluster Name and Zone and then run the following command:
```
gcloud container clusters describe $CLUSTER_NAME --zone $COMPUTE_ZONE --format json | jq '.masterAuthorizedNetworksConfig'
```
The output should return
```json
{
"gcpPublicCidrsAccessEnabled": true
}
```
if Control Plane Authorized Networks is enabled. If Master Authorized Networks is disabled, the above command will return null (`{ }`).
## Remediation
Using Google Cloud Console:
1. Go to Kubernetes Engine by visiting https://console.cloud.google.com/kubernetes/list.
2. Select Kubernetes clusters for which Control Plane Authorized Networks is disabled.
3. Within the Details pane, under the Networking heading, click on the pencil icon named Edit control plane authorised networks.
4. Check the box next to Enable control plane authorised networks.
5. Click SAVE CHANGES.
Using Command Line:
To enable Control Plane Authorized Networks for an existing cluster, run the following command:
```
gcloud container clusters update <cluster_name> --zone <compute_zone> --enable-master-authorized-networks
```
Along with this, you can list authorized networks using the `--master-authorized-networks` flag which contains a list of up to 20 external networks that are allowed to connect to your cluster's control plane through HTTPS. You provide these networks as a comma-separated list of addresses in CIDR notation (such as `90.90.100.0/24`).
## Default Value
By default, Control Plane Authorized Networks is disabled.
## References
1. https://cloud.google.com/kubernetes-engine/docs/how-to/authorized-networks
2. https://cloud.google.com/kubernetes-engine/docs/how-to/latest/network-isolation
3. https://cloud.google.com/kubernetes-engine/docs/how-to/latest/network-isolation
## CIS Controls
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
| ---------------- | ----------------------------------------------------- | ---- | ---- | ---- |
| v8 | 3.3 Configure Data Access Control Lists | x | x | x |
| v7 | 14.6 Protect Information through Access Control Lists | x | x | x |
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!