Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Implementing Palo Alto Networks Prisma® Access

You're reading from   Implementing Palo Alto Networks Prisma® Access Learn real-world network protection

Arrow left icon
Product type Paperback
Published in May 2024
Publisher Packt
ISBN-13 9781835081006
Length 346 pages
Edition 1st Edition
Arrow right icon
Author (1):
Arrow left icon
Tom Piens Aka 'Reaper' Tom Piens Aka 'Reaper'
Author Profile Icon Tom Piens Aka 'Reaper'
Tom Piens Aka 'Reaper'
Arrow right icon
View More author details
Toc

Table of Contents (17) Chapters Close

Preface 1. Part 1:Activate and Configure Prisma Access
2. Chapter 1: Designing and Planning Prisma Access FREE CHAPTER 3. Chapter 2: Activating Prisma Access 4. Chapter 3: Setting Up Service Infrastructure 5. Chapter 4: Deploying Service Connections 6. Part 2:Configure Mobile User and Remote Network Security Processing Nodes
7. Chapter 5: Configuring Remote Network SPNs 8. Chapter 6: Configuring Mobile User SPNs 9. Chapter 7: Securing Web Gateway 10. Chapter 8: Setting Up Your Security Policy 11. Part 3:Advanced Configuration and Best Practices
12. Chapter 9: User Identification and Cloud Identity Engine 13. Chapter 10: Advanced Configurations and Insights 14. Chapter 11: ZTNA Connector 15. Index 16. Other Books You May Enjoy

Conventions used

There are a number of text conventions used throughout this book.

Code in text: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: “The first if statement contains all the things that should not be sent to the proxy, indicated by return "DIRECT" at the end. “

A block of code is set as follows:

function FindProxyForURL(url, host) {
     /* Bypass localhost and Private IPs */
     var resolved_ip = dnsResolve(host);
     if (isPlainHostName(host) ||
     shExpMatch(host, "*.local") ||
     isInNet(resolved_ip, "10.0.0.0", "255.0.0.0") ||
     isInNet(resolved_ip, "172.16.0.0", "255.240.0.0" ||
     isInNet(resolved_ip, "192.168.0.0", "255.255.0.0")  ||
     isInNet(resolved_ip, "127.0.0.0", "255.255.255.0"))
     return "DIRECT";
     /* Bypass FTP */
     if (url.substring(0,4) == "ftp:")
         return "DIRECT";
     /* Bypass SAML, e.g. Okta */
     if (shExpMatch(host, "*.okta.com") || shExpMatch(host, "*.oktacdn.com"))
         return "DIRECT";
     /* Bypass ACS */
     if (shExpMatch(host, "*.acs.prismaaccess.com"))
         return "DIRECT";
     /* Forward to Prisma Access */
     return "PROXY pangurus.proxy.prismaaccess.com:8080";
}

Bold: Indicates a new term, an important word, or words that you see onscreen. For instance, words in menus or dialog boxes appear in bold. Here is an example: “Our first step is to enable the explicit proxy in Workflows | Prisma Access Setup | Mobile Users. Click the Enable button next to Explicit Proxy.”

Tips or important notes

Appear like this.

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime