Without a secure way to connect from home, your company’s data would be exposed to anyone on the internet — a nightmare for security and a certain fail on the PCNSE exam. Remote employees need to access internal resources like email servers, file shares, and business applications as if they were sitting in the office. GlobalProtect solves this by creating a secure, encrypted tunnel between a remote device and the corporate network, and the PCNSE exam expects you to know exactly how to set up and troubleshoot this connection.
Jump to a section
A simple way to picture Remote Access VPN with GlobalProtect
240 floors make up a single, massive apartment building in the city centre. Each floor has one distinct flat, and you have just moved into flat 240. Your friend, who lives in the building next door, wants to come over for a visit. But the building has a strict security door with an intercom system. You cannot just leave the main door unlocked all the time — that would let anyone in, including people who do not belong there. So, you give your friend a temporary, one-time code to enter into the intercom panel outside. When they type in the code, the intercom calls your specific flat. You answer, verify their voice, and then press a button that unlocks the main door for them. Once inside, they walk through the public hallway and take the elevator up to your flat. The temporary code works only for that one visit and for a limited time. This is exactly how GlobalProtect works. The building is your company’s network. The main security door is the firewall. The intercom system is the GlobalProtect portal. The temporary code is the VPN authentication. Your friend is a remote employee. The public hallway is the encrypted tunnel. The elevator to your flat is the specific access policy that allows the employee to reach only the resources they need. Without this system, you would have to prop the main door open permanently, making everyone inside unsafe.
Remote Access VPN is a technology that allows a user outside the office to connect securely to their company’s private network over the public internet. Think of the public internet as a busy city street. Without a VPN, any data you send is like shouting your credit card number across that street — everyone can hear it. A VPN wraps your data in a secure, encrypted envelope so that only the intended recipient can open it. GlobalProtect is Palo Alto Networks’ specific implementation of this technology.
At the heart of GlobalProtect are two main components: the portal and the gateway. The GlobalProtect Portal is the first point of contact for a remote user. When you install the GlobalProtect app on your laptop and open it, the app reaches out to the portal. The portal acts like a receptionist. It authenticates you (verifies who you are, usually with a username and password), and then it tells your app which GlobalProtect Gateway to connect to. The GlobalProtect Gateway is the actual tunnel endpoint. It sits on the edge of your network, usually on a Palo Alto Networks firewall. Once the app connects to the gateway, the gateway creates an encrypted tunnel back to the user’s device. All the user’s traffic that is destined for the corporate network is then sent through this tunnel, encrypted, to the gateway, which decrypts it and forwards it to the internal resources.
Why do we need two separate things (portal and gateway)? Because it allows flexibility. You might have multiple gateways in different offices around the world. The portal can direct a user in London to the London gateway for the fastest connection, while a user in Sydney connects to the Sydney gateway. This split also improves security: the portal only handles the initial handshake, while the gateway handles the heavy lifting of encrypting and decrypting traffic.
When a user connects, several things happen in order. First, the GlobalProtect app on the device sends a request to the portal’s IP address (which is usually a public address, so reachable from anywhere). The portal presents a certificate — a digital ID card — to prove it is legitimate. The app checks that certificate against a trusted authority (like a company’s internal certificate authority or a public one like DigiCert). If the certificate is valid, the user is asked for their credentials (username and password, sometimes plus a second factor like a code from a phone app). The portal verifies these against the corporate directory (often Microsoft Entra ID or an LDAP server). Once verified, the portal sends the app a configuration file that includes the gateway addresses. The app then initiates a new connection directly to the gateway, again using certificate validation and credentials. The gateway assigns an IP address to the user’s device from a pool of internal IP addresses. This makes the remote device look like it is actually inside the corporate network. The tunnel is now established using IPSec (Internet Protocol Security) or SSL/TLS (Secure Sockets Layer / Transport Layer Security).
What does this replace? Before widespread VPNs, companies either used expensive leased lines (dedicated physical cables) to connect remote offices, or they relied on dial-up modems where users would literally call a phone number to connect. Neither was scalable for many remote workers. Modern VPNs like GlobalProtect replaced those old methods with a software-based, on-demand connection that works over any internet connection.
Key terms to understand in this topic include:
Tunnel: The encrypted logical path between the client and the gateway.
Authentication: Proving you are who you say you are (e.g., password).
Encryption: Scrambling data so only the intended reader can understand it.
Gateway: The firewall component that terminates the tunnel.
Portal: The component that orchestrates which gateway to use.
Client: The GlobalProtect app installed on the user’s device.
Certificate: An electronic document used to verify identity and enable encryption.
There are also different modes of operation. In tunnel mode, all the user’s traffic (including internet-bound traffic) can be sent through the tunnel and inspected by the firewall. This is useful if you want to enforce security policies on all traffic, even when the user is at home. In split-tunnel mode, only traffic destined for the corporate network goes through the tunnel; all other traffic goes directly to the internet. Split-tunnel saves bandwidth but reduces the firewall’s ability to inspect non-corporate traffic.
User Launches GlobalProtect App
The user double-clicks the GlobalProtect icon on their laptop. The app checks for a saved portal address. If none is saved, it prompts the user to enter one (e.g., vpn.company.com). This address must be resolvable via DNS (Domain Name System) to the public IP of the portal.
Portal Authentication Handshake
The app contacts the portal over HTTPS (port 443). The portal presents its server certificate. The app validates this certificate against a trusted root certificate store on the device. If valid, the portal challenges the user for their credentials (username and password, possibly plus MFA). The portal verifies these against the configured authentication profile.
Gateway List Retrieval
After successful authentication, the portal sends the app a configuration payload. This payload includes a list of available gateways with their IP addresses or DNS names, and the authentication method required for the gateway (often the same as the portal). The app selects the best gateway (usually the one with the lowest latency or the first in the list).
Gateway Tunnel Establishment
The app now opens a new connection directly to the chosen gateway. It sends its credentials and the gateway validates them (often against the same authentication profile). If using certificates for client authentication, the app sends its own certificate. The gateway ensures the client is authorised to connect. Then, the gateway and client negotiate encryption keys and establish an IPSec or SSL tunnel.
IP Address Assignment and Routing
The gateway assigns a virtual IP address to the client from its configured IP pool. The client’s routing table is modified so that traffic destined for the corporate network (defined by routes pushed from the gateway) goes through the tunnel interface. In tunnel mode, a default route (0.0.0.0/0) is added to send all traffic through the tunnel. The user can now access internal resources securely.
Ongoing Tunnel Monitoring and Disconnection
The app and gateway maintain the tunnel using keepalive messages. If the user closes the app, the tunnel is torn down. If the user loses internet connectivity, the app attempts to reconnect automatically. The gateway logs the session for auditing. When the user logs off, the gateway reclaims the virtual IP address for reuse.
An IT administrator at a mid-sized company called ‘Acme Corp’ is setting up GlobalProtect for 500 remote employees. Many of these employees work from home, from coffee shops, or while travelling. The administrator needs to ensure that these employees can access internal applications like the company’s accounting software (which runs on a server in the office) and the internal wiki, without exposing those applications to the public internet.
Step by step, the administrator does the following. First, they configure a GlobalProtect portal on the Palo Alto Networks firewall at headquarters. They create a portal configuration that specifies the authentication method — in this case, using Microsoft Entra ID as the identity provider. They enable certificate authentication so that the portal can validate the client devices. Next, they configure a GlobalProtect gateway on the same firewall (or a separate one). The gateway is assigned an IP address pool (e.g., 10.10.100.1 to 10.10.100.255) which will be handed out to remote users. They also set up routing rules so that traffic coming from the gateway destined for the internal network is allowed through the firewall.
Then the administrator creates security policies on the firewall. One policy allows traffic from the gateway to the accounting server on port 443 (HTTPS). Another policy blocks all other traffic from the gateway to the rest of the internal network, preventing a compromised remote device from doing damage. They also enable logging on these policies so they can see who connected and when.
On the employee side, the administrator distributes a GlobalProtect installer via the company’s software management tool. The first time an employee opens the app, they type in the portal address (e.g., vpn.acmecorp.com). The app downloads its configuration from the portal. The employee enters their Microsoft Entra ID username and password, and approves a multi-factor authentication prompt on their phone. The app then connects to the gateway. The employee can now open the company’s internal wiki by typing its internal URL into their browser.
Common troubleshooting steps the administrator performs include:
Checking the GlobalProtect logs on the firewall to see why a specific user cannot connect.
Verifying that the user’s device has a valid certificate (if certificate authentication is required).
Testing DNS resolution: if the portal address does not resolve to the correct IP, the connection fails.
Confirming that the gateway’s IP pool is not exhausted. If 500 users try to connect but only 100 addresses are in the pool, 400 users will fail.
Ensuring that the firewall’s security policies allow the necessary ports (e.g., UDP 500, UDP 4500 for IPSec).
The administrator also regularly updates the GlobalProtect app and the firewall software to patch vulnerabilities. They monitor the number of concurrent connections and may add more gateways in different geographic regions to reduce latency.
The PCNSE exam tests your understanding of how GlobalProtect fits into a network security architecture. Expect multiple-choice and multiple-select questions. The exam loves to test your ability to distinguish between the portal and the gateway — including which one does what, and which one is reachable from the internet. A typical trap: the question says ‘a user cannot connect to the VPN, and you see the portal is reachable but the gateway is not.’ The exam expects you to know that the portal must be publicly reachable (or reachable through a DNS name) because the client connects to it first. The gateway can be on a private IP, because the portal tells the client where to find it.
Specific concepts you must memorise:
The three authentication methods for GlobalProtect: user authentication (password), certificate authentication, and multi-factor authentication. Know when each applies.
The difference between tunnel mode and split-tunnel mode. The exam will give you a scenario about bandwidth savings or security inspection and ask which mode to use.
How the firewall processes traffic from the gateway. Traffic from the VPN gateway is treated as coming from a specific source zone (usually called ‘VPN’). You need to know how to write security policies for that zone.
The concept of clientless VPN (which is a different feature — GlobalProtect is client-based). The exam may confuse you by offering clientless options as answers for remote access.
The role of certificates. The exam often includes a question about certificate validation failing, and you must know that the portal presents its certificate to the client, not the other way around by default.
Trap patterns to watch out for:
The exam might describe a situation where a user can connect to the gateway but cannot access internal resources. The answer is usually ‘security policy blocking traffic from the gateway zone to the internal zone’.
A question about GlobalProtect gateway high availability. The exam tests that you can configure multiple gateways and use the portal to load-balance or failover.
Misunderstanding that GlobalProtect can also be used for internal users (like on a guest Wi-Fi network). The exam may ask about that use case.
Key definitions to memorise for the exam:
Portal: authenticates users and provides gateway list.
Gateway: terminates VPN tunnels and enforces policies.
External Gateway: a gateway placed in the DMZ (demilitarised zone) that is publicly accessible.
Internal Gateway: a gateway placed inside the network, used for internal roaming users.
IPSec: a protocol suite for secure IP communications.
SSL VPN: a VPN that uses the SSL/TLS protocol (GlobalProtect can use both SSL and IPSec).
The GlobalProtect portal authenticates the user and directs them to the correct gateway, but does not handle actual data traffic.
The GlobalProtect gateway terminates the encrypted tunnel and must have security policies allowing traffic to internal resources.
Tunnel mode sends all user traffic through the firewall for inspection, while split-tunnel mode sends only corporate traffic through the tunnel.
A valid certificate on the portal is essential for the initial handshake; a certificate mismatch will prevent any connection.
Multi-factor authentication can be enforced at the portal level using third-party identity providers like Microsoft Entra ID.
GlobalProtect can use either IPSec or SSL as the underlying encryption protocol; the PCNSE exam tests the differences between them.
These come up on the exam all the time. Here's how to tell them apart.
GlobalProtect Portal
Authenticates users and issues configuration.
Does not handle encrypted data traffic.
Must be reachable from the public internet (usually).
GlobalProtect Gateway
Terminates the encrypted VPN tunnel.
Handles all data traffic between client and network.
Can be on a private IP as long as the portal tells the client how to reach it.
Tunnel Mode (Full Tunnel)
All user traffic (including internet) is sent through the VPN.
More secure as all traffic is inspected by the firewall.
Higher bandwidth usage on the firewall and corporate internet link.
Split Tunnel Mode
Only corporate-destined traffic goes through the VPN.
Less secure because internet traffic bypasses firewall inspection.
Lower bandwidth usage and less latency for non-corporate traffic.
Mistake
GlobalProtect only works when the user is outside the office and cannot be used for internal roaming.
Correct
GlobalProtect can be configured with internal gateways that allow users to roam within the office while maintaining a consistent security posture.
Beginners often assume VPN is only for remote access, but the technology is also used to enforce security policies on internal wireless networks.
Mistake
If the portal is down, existing VPN tunnels through the gateway will stop working immediately.
Correct
The portal is only needed for the initial connection setup. Once the tunnel is established, the portal can go down and existing tunnels remain active until they time out or are disconnected.
People confuse the orchestrator with the actual data path. They think the portal is involved in every packet, but it is not.
Mistake
Split-tunnel mode is always more secure than tunnel mode because it reduces traffic through the firewall.
Correct
Tunnel mode is more secure because it forces all traffic (including internet-bound traffic) through the firewall, where it can be inspected for threats. Split-tunnel mode reduces inspection capabilities.
The misconception comes from thinking that less traffic means less risk, but in security, more inspection usually means better protection.
Mistake
GlobalProtect uses the same certificate for both the portal and the gateway, so if one certificate expires, both stop working.
Correct
The portal and gateway can use separate certificates. They are independent components. One can have a valid certificate while the other is expired, causing different symptoms.
Because both are part of the same product, beginners assume they share everything, but they are configured separately on the firewall.
Reveal each answer, then mark whether you got it right. Score 60%+ to unlock the next chapter.
The portal is the first point of contact that authenticates the user and tells them which gateway to use. The gateway is the actual component that creates the encrypted tunnel and forwards traffic to the internal network.
GlobalProtect has clients for Windows, macOS, Linux, Android, and iOS. The PCNSE exam focuses on Windows and macOS, but you should know that mobile clients exist.
Split-tunnel saves bandwidth and reduces load on the firewall because only corporate traffic goes through the VPN. It also reduces latency for non-corporate traffic (like streaming video) because that traffic goes directly to the internet.
Yes, for internal users you can configure an internal gateway without an external portal. Users on the local network can connect directly to the internal gateway without going through the portal.
Check that the gateway is configured and reachable from the client’s network, that the firewall security policies allow the VPN protocol ports (UDP 500, UDP 4500, or TCP 443), and that the client certificate is valid if required.
Certificates are used to authenticate the portal and gateway to the client, and optionally to authenticate the client to the gateway. They enable encrypted communication by verifying the identity of both ends.
You've finished Remote Access VPN with GlobalProtect. Continue through the PCNSE study guide to build a complete picture of the exam.
Done with this chapter?