SY0-701Chapter 111 of 212Objective 3.1

Air-Gapped Networks

This chapter covers air-gapped networks, a critical security architecture concept for the SY0-701 exam under Objective 3.1 (Security Architecture). An air gap is a physical isolation technique where a network has no direct or indirect connection to any other network, especially the internet. Understanding air gaps is essential for protecting highly sensitive systems, such as those controlling nuclear power plants or military command centers. This chapter explains what air gaps are, how they work, their strengths and weaknesses, and how attackers can bypass them.

25 min read
Intermediate
Updated May 31, 2026

The Fort Knox Vault for Data

Imagine an air-gapped network as a secure vault inside Fort Knox. The vault has no doors, windows, or any physical connection to the outside world. To place gold inside or retrieve it, a guard must physically walk the gold through a series of airlocks and authenticated checkpoints. No network cables, no wireless signals, no carrier pigeons—nothing crosses the boundary except authorized personnel carrying physical media. Now consider an attacker who wants to steal the gold. They cannot hack into the vault remotely because there is no network connection. Instead, they must resort to physical infiltration—bribing a guard to smuggle a tiny radio transmitter inside, or hiding a listening device in a gold bar. This is analogous to an air gap breach via a malicious insider or a supply chain attack. The air gap provides strong isolation, but it is not absolute; physical security and procedural controls are equally critical. Just as Fort Knox relies on guards, cameras, and tamper-evident seals, an air-gapped network requires strict policies, data diodes, and periodic audits to prevent data exfiltration through covert channels.

How It Actually Works

What Is an Air-Gapped Network?

An air-gapped network is a computer network that is physically and logically isolated from unsecured networks, including the internet and other external networks. The term "air gap" refers to the literal gap of air between the secure network and any other network—no cables, wireless links, or any other connection crosses that boundary. This is the highest level of network security, used for systems that must be protected from remote attacks, such as classified military systems, critical infrastructure control systems (e.g., SCADA), and sensitive financial databases.

How Air Gaps Work Mechanically

Air gaps rely on physical separation. There are no network interface cards (NICs) connected to external networks, no wireless adapters, no Bluetooth, no infrared ports, and no modems. If data must enter or leave the air-gapped network, it must be transferred via physical media—such as USB drives, CDs, or dedicated transfer stations—that are rigorously inspected and sanitized. The process typically involves:

1.

Data Creation: Data is created on a secure workstation within the air-gapped network.

2.

Approval: A security officer approves the data for export.

3.

Transfer to Media: The data is written to a write-once medium (e.g., a CD-R) or a secure USB drive.

4.

Physical Transfer: The media is physically carried out of the secure area through a security checkpoint.

5.

Import: On the receiving network, the media is scanned for malware before use.

For data entering the air-gapped network, the reverse process applies, with strict scanning and validation.

Key Components and Variants

Data Diodes: A data diode is a hardware device that allows data to flow in only one direction, ensuring that no data can be sent back out from the secure network. This is common in high-security environments. For example, a data diode might allow sensor readings from a nuclear reactor to be transmitted to an external monitoring system, but prevent any commands from entering the reactor's control network.

One-Way Transfer Devices: Similar to data diodes but may use software-enforced one-way communication.

Air Gap with Periodic Connection: Some systems are air-gapped most of the time but are periodically connected to an external network for updates. This is a weaker form of air gap and is often referred to as a "periodic air gap."

Physical Isolation: Complete physical separation, including separate power supplies, HVAC, and physical security perimeters.

How Attackers Exploit Air Gaps

Despite the name, air gaps are not impenetrable. Attackers use several methods to breach them:

Malicious Insider: An employee with physical access can plug a malicious USB device into an air-gapped computer, introducing malware or exfiltrating data.

USB-Based Attacks: Malware like Stuxnet spread via USB drives, jumping the air gap. Stuxnet specifically targeted Iranian nuclear centrifuges and used USB drives to infect air-gapped systems.

Electromagnetic Covert Channels: Sophisticated attackers can use electromagnetic emissions from monitors or keyboards to exfiltrate data. For example, the "Tempest" attack captures electromagnetic radiation from a display to reconstruct the screen content.

Acoustic Covert Channels: Malware can use speakers or even hard drive noise to transmit data via sound waves. For instance, the "Fansmitter" malware uses the noise of a computer fan to encode data.

Thermal Covert Channels: Data can be transmitted via heat emissions, though this is slow and requires specialized equipment.

Optical Covert Channels: Using blinking LEDs (e.g., on a keyboard or hard drive) to transmit data via light signals.

Supply Chain Attacks: Hardware or software installed before the system is air-gapped can contain backdoors.

Countermeasures

Strict Physical Access Controls: Biometrics, guards, and man-traps prevent unauthorized physical access.

USB Port Control: Physically disable or epoxy USB ports on air-gapped machines.

Data Diode Enforcement: Use hardware data diodes to ensure one-way data flow.

Electromagnetic Shielding: Faraday cages or shielded rooms prevent electromagnetic leakage.

Acoustic Dampening: Use soundproofing or disable speakers and microphones.

Regular Audits: Check for unauthorized devices or connections.

Policy and Training: Educate personnel about the risks of removable media and social engineering.

Real Command/Tool Examples

While air-gapped networks themselves don't have typical commands, the tools used to manage them include:

scp or rsync for secure file transfers over authorized connections (if a temporary connection is allowed).

dd or mkisofs for creating disk images on physical media.

clamscan for scanning USB drives before import.

chkrootkit and rkhunter for checking for rootkits on air-gapped systems.

nmap scanning from within the air-gapped network to ensure no unexpected connections exist.

Standards and References

NIST SP 800-82: Guide to Industrial Control Systems (ICS) Security, which covers air gaps for SCADA.

NIST SP 800-53: Security and Privacy Controls, including PE-3 (Physical Access Control) and SC-7 (Boundary Protection).

ISO/IEC 27001: Information security management standards that include physical security controls.

CVE-2010-2568: Stuxnet's LNK vulnerability used to spread via USB.

RFC 2544: Benchmarking methodology for network devices, not directly related but often referenced in network isolation testing.

Walk-Through

1

Identify Critical Assets and Threats

The first step in implementing an air gap is identifying which systems and data require such extreme isolation. Typically, these are systems whose compromise would lead to catastrophic consequences, such as loss of life, national security breaches, or massive financial loss. Conduct a risk assessment to determine the threat model. For example, a nuclear power plant's safety control system might be a candidate. Document the data flow requirements—what data must enter and leave the air-gapped network. This step is crucial because an overly restrictive air gap can hinder operations, while a poorly implemented one fails to provide security.

2

Design Physical and Logical Separation

Design the network so that there are no physical connections (Ethernet, fiber, serial) between the air-gapped network and any other network. Use separate switches, routers, and cabling. Ensure that no wireless signals (Wi-Fi, Bluetooth, cellular) are present within the secure area. Install Faraday shielding if necessary. Logical separation includes disabling all unnecessary services and protocols. For example, disable DHCP, DNS, and any routing protocols that could inadvertently create a bridge. The design should also include a secure data transfer mechanism, such as a data diode or a manual transfer process with strict procedures.

3

Implement Physical Security Controls

Physical security is paramount for air-gapped networks. Install access control systems such as biometric scanners, smart card readers, and PIN pads at the entrance to the secure area. Use man-traps to prevent tailgating. Deploy surveillance cameras to monitor all entry points and the area around the air-gapped equipment. Enforce a strict clean desk policy to prevent sensitive information from being left in the open. All removable media must be inspected and sanitized before entering or leaving the secure area. For example, use a dedicated scanning station with up-to-date antivirus and malware analysis tools.

4

Establish Data Transfer Procedures

Define and document the procedures for transferring data into and out of the air-gapped network. For data import, the process might involve: (1) Media is brought to a quarantine station outside the secure area. (2) The media is scanned for malware using multiple antivirus engines. (3) If clean, the media is physically passed through a security checkpoint. (4) Inside the secure area, the data is copied to a staging server for further analysis. For data export, the process is reversed, with an emphasis on preventing accidental leakage. Use write-once media for exports to prevent tampering. Log every transfer event with details such as timestamp, operator identity, and file metadata.

5

Monitor and Audit Continuously

Even with an air gap, continuous monitoring is essential. Deploy host-based intrusion detection systems (HIDS) on air-gapped machines to detect anomalies. Monitor system logs for unauthorized access attempts or unusual behavior. Conduct periodic audits of physical security controls—check for unauthorized USB devices, tampered seals, or signs of electromagnetic leakage. Use vulnerability scanners (e.g., Nessus) on the air-gapped network to identify missing patches or misconfigurations. Since the network is isolated, updates must be manually applied using signed and verified media. Audit logs should be reviewed regularly, and any discrepancies investigated immediately.

What This Looks Like on the Job

Scenario 1: Nuclear Power Plant Control System

A nuclear power plant uses an air-gapped network for its reactor control system. An engineer notices that the system's temperature readings are slightly off. The analyst checks the data diode logs and sees that all outbound data is normal, but inbound commands are blocked as expected. However, a physical inspection reveals a USB drive left plugged into a workstation. The drive contains malware that could have altered control logic. The correct response is to immediately disconnect the drive, quarantine it, and conduct a forensic analysis of the system. A common mistake is to assume the air gap makes the system immune to USB attacks, leading to lax physical security. The analyst should also review security camera footage to identify who left the drive.

Scenario 2: Government Classified Network

A government facility operates an air-gapped network for classified documents. An employee is seen using a smartphone inside the secure area, which violates policy. The security team confiscates the phone and scans it for any data exfiltration attempts. The analyst uses a forensic tool to check for Bluetooth or Wi-Fi activity logs on the phone. The correct response is to revoke the employee's access and initiate an investigation. A common mistake is to downplay the incident because no data was actually stolen. However, the presence of a smartphone could indicate a planned exfiltration attempt via electromagnetic or acoustic covert channels.

Scenario 3: Financial Trading System

A high-frequency trading firm uses an air-gapped network for its trading algorithms to prevent insider trading leaks. An analyst notices an unusual pattern of hard drive activity on one of the servers. Using a spectrum analyzer, they detect electromagnetic emissions that match the pattern of a known covert channel attack. The correct response is to isolate the server, conduct a full forensic analysis, and check for any unauthorized hardware modifications. A common mistake is to ignore the emissions as normal electrical noise. The firm should also implement electromagnetic shielding and periodic spectrum monitoring.

How SY0-701 Actually Tests This

What SY0-701 Tests on Air-Gapped Networks

SY0-701 Objective 3.1 (Security Architecture) includes understanding air gaps as a network segmentation technique. Specifically, you must know:

The definition of an air gap and its purpose.

How air gaps differ from other isolation methods like VLANs or firewalls.

Common attack vectors against air-gapped networks (USB, insider threats, covert channels).

Countermeasures such as data diodes, Faraday cages, and strict physical access controls.

Common Wrong Answers and Why

1.

"An air gap provides complete security." This is false because air gaps can be bypassed via physical means. Candidates choose this because they think "air gap = no connection = no attack." The reality is that insiders, USB drives, and electromagnetic leakage can compromise air gaps.

2.

"Air gaps are only used for military systems." While common in military, air gaps are used in any environment requiring high security, such as SCADA, financial systems, and healthcare. Candidates may choose this because of textbook examples focusing on military.

3.

"A firewall can achieve the same isolation as an air gap." Firewalls provide logical separation but are still connected via network cables. An air gap has no physical connection. Candidates confuse logical isolation with physical isolation.

4.

"Data diodes allow bidirectional communication." Data diodes are strictly one-way. Candidates may think they are like firewalls that allow return traffic.

Specific Terms and Acronyms

Data diode: Hardware device for one-way data flow.

Covert channel: Any communication path not intended for data transfer (e.g., electromagnetic, acoustic).

Tempest: A set of standards for electromagnetic shielding and eavesdropping.

Faraday cage: An enclosure that blocks electromagnetic fields.

SCADA: Supervisory Control and Data Acquisition, often air-gapped.

Common Trick Questions

Question: "Which of the following provides the highest level of network isolation?" Options: VLAN, firewall, air gap, DMZ. The correct answer is air gap, but candidates may choose VLAN because they think segmentation equals isolation.

Question: "An organization wants to prevent any network-based attacks on a critical server. Which solution should they implement?" The answer is air gap, but candidates may choose a host-based firewall because they focus on "network-based attacks" and forget physical isolation.

Decision Rule

For scenario questions: If the question emphasizes "no network connectivity" or "physically isolated," the answer is likely an air gap. If the question mentions "one-way data transfer," look for "data diode." If the question involves a breach despite no network connection, think of USB or insider threats.

Key Takeaways

An air gap is a physical isolation technique with no network connection to other networks.

Air gaps are used for high-security systems like SCADA, military, and financial systems.

Common attack vectors include USB drives, malicious insiders, and electromagnetic covert channels.

Data diodes enforce one-way data flow out of an air-gapped network.

Faraday cages and Tempest standards mitigate electromagnetic leakage.

Physical security controls (biometrics, guards, cameras) are critical for air gap protection.

Continuous monitoring and auditing are required even for air-gapped networks.

SY0-701 tests the definition, purpose, and limitations of air gaps under Objective 3.1.

Easy to Mix Up

These come up on the exam all the time. Here's how to tell them apart.

Air Gap

Physical isolation with no network connection

Prevents all remote network attacks

Requires physical media for data transfer

Vulnerable to physical attacks and insider threats

Used for highest security environments

Firewall

Logical isolation with network connection

Filters traffic based on rules

Allows authorized network traffic

Vulnerable to misconfiguration and software exploits

Used for general network segmentation

Watch Out for These

Mistake

An air-gapped network is completely immune to all cyber attacks.

Correct

Air gaps prevent remote network-based attacks, but they are still vulnerable to physical attacks, insider threats, and covert channels (e.g., USB drives, electromagnetic emissions).

Mistake

Air gaps are only necessary for classified military systems.

Correct

Air gaps are used in many industries, including critical infrastructure (e.g., power plants), financial services, and healthcare, wherever data sensitivity or safety is paramount.

Mistake

A firewall provides the same level of isolation as an air gap.

Correct

Firewalls are logical barriers that allow network traffic through rules, while air gaps are physical barriers with no network connection. Firewalls can be misconfigured or bypassed; air gaps require physical access to breach.

Mistake

Data diodes allow bidirectional communication like a firewall.

Correct

Data diodes are hardware devices that enforce one-way data flow. They are used to allow data to leave a secure network without allowing any incoming traffic.

Mistake

If a network is air-gapped, you don't need to monitor it for attacks.

Correct

Air-gapped networks still require monitoring for insider threats, unauthorized physical access, and covert channels. Continuous monitoring and auditing are essential.

Frequently Asked Questions

What is an air-gapped network?

An air-gapped network is a computer network that is physically isolated from any other network, especially the internet. It has no wired or wireless connections to external networks. Data can only be transferred via physical media like USB drives or CDs, which are carefully scanned. This provides the highest level of security against remote attacks.

How can an air-gapped network be attacked?

Despite physical isolation, air-gapped networks can be compromised through malicious insiders who plug in USB drives containing malware, or through supply chain attacks where hardware is pre-infected. Sophisticated attacks use covert channels such as electromagnetic emissions (Tempest), acoustic signals (e.g., fan noise), or optical signals (LEDs) to exfiltrate data. Physical access controls and monitoring are essential to mitigate these risks.

What is a data diode?

A data diode is a hardware device that allows data to flow in only one direction. It is used to protect air-gapped networks by enabling data to be sent out (e.g., sensor readings) without allowing any data to come back in. This prevents attackers from sending commands or malware into the secure network. Data diodes are often used in SCADA and critical infrastructure.

What is the difference between an air gap and a VLAN?

A VLAN (Virtual Local Area Network) is a logical segmentation of a network using switches and software. Devices in different VLANs can still communicate through a router or firewall. An air gap is a physical separation with no network connection at all. VLANs are easier to implement but provide less security because they rely on network devices that can be misconfigured or exploited.

Is an air-gapped network 100% secure?

No, no system is 100% secure. Air gaps are highly effective against remote network attacks but are vulnerable to physical attacks, insider threats, and covert channels. The Stuxnet worm is a famous example of malware that crossed an air gap via USB drives. Proper physical security, strict data transfer procedures, and continuous monitoring are necessary to maximize security.

What are Tempest and Faraday cages?

Tempest refers to a set of standards for protecting against electromagnetic eavesdropping. It involves shielding equipment to prevent electromagnetic emissions from being intercepted. A Faraday cage is an enclosure made of conductive material that blocks external electromagnetic fields and contains internal emissions. Both are used to prevent covert channel attacks on air-gapped networks.

How do you transfer data into an air-gapped network?

Data is transferred using physical media such as USB drives, CDs, or DVDs. The media is first scanned for malware in a quarantine station outside the secure area. If clean, it is physically carried into the secure area and connected to a designated transfer workstation. The data is then copied to the target system. The media is often write-once to prevent tampering. Strict logging and approval processes are required.

Terms Worth Knowing

Ready to put this to the test?

You've just covered Air-Gapped Networks — now see how well it sticks with free SY0-701 practice questions. Full explanations included, no account needed.

Done with this chapter?