SSL VPN Split Tunneling and Office 365
UPDATE: Apr 9, 2020 A colleague, Vinicius M. , put together a Configuration guide: Optimizing Office 365 traffic on Remote Access through VPNs when using BIG-IP APM.pdf
As we shift to a much larg...
Updated Jun 16, 2022
Version 2.0ReganAnderson
I've worked as a Professional Services Consultant for F5 Networks since 2011. I'm primarily focused on designing and implementing SSL Orchestrator and APM solutions.Employee
ReganAnderson
I've worked as a Professional Services Consultant for F5 Networks since 2011. I'm primarily focused on designing and implementing SSL Orchestrator and APM solutions.Employee
sh00b
Dec 28, 2022Nimbostratus
Please shout when there's news from PM
Here's how we might work around it using python for the time being 🙂
import requests
import json
# Fetch the data from the web service
response = requests.get("https://endpoints.office.com/endpoints/worldwide?clientrequestid=b10c5ed1-bad1-445f-b386-b919946339a7")
# Parse the JSON data
data = json.loads(response.text)
# Create an empty list to hold the Optimize entries
optimize_entries = []
# Iterate over the entries in the data
for entry in data:
# Check if the entry is categorized as "Optimize"
if entry["category"] == "Optimize":
# Add the entry to the list
optimize_entries.append(entry)
# Convert the list of entries to JSON
optimize_json = json.dumps(optimize_entries)
# Print the JSON data
print(optimize_json)