Skip to content
Notifications
Clear all

Complete newbie here - where do I start with policy creation?

2 Posts
2 Users
0 Reactions
0 Views
(@bobw)
Estimable Member
Joined: 3 weeks ago
Posts: 148
Topic starter   [#23738]

Hey everyone! Bob Wilson here, jumping into the Umbrella conversation. I come from a background of connecting everything via APIs and automating workflows, so when I first opened the Umbrella dashboard, my immediate thought was, "Where's the policy-as-code option? Where do I even begin to structure this?" 😅

For a complete newbie, the sheer number of policy componentsβ€”identity, destination, content, applicationβ€”can be overwhelming. I'd suggest starting not with the policy itself, but with a clear, simple **outcome**. For example:
* "I want to block social media for our guest Wi-Fi network during work hours."
* "I need to prevent data exfiltration to newly registered domains for our finance team."

Once you have that single outcome, build your first policy step-by-step. Here's the mental framework I used:

1. **Who? (Identities)** Start by selecting your deployment (like your Active Directory or network tunnels). Don't try to cover everyone at once. Pick one test group.
2. **What? (Destinations/Content)** Be specific. For "block social media," you'd create a destination list targeting those domains, or use the pre-built "Social Media" category.
3. **When? (Scheduling)** Attach a time schedule. The "work hours" template is a great starting point.
4. **Action:** Finally, decideβ€”Block, Allow, or Monitor.

A super basic, starter policy block in the UI would conceptually map to something like this (I wish we could export as JSON!):

```yaml
Policy Name: "Guest WiFi - Social Media Block"
Identities: Guest_Wireless_Network_Group
Destinations: Category - "Social Media"
Schedule: Business Hours (9AM-5PM, Mon-Fri)
Action: Block
Security Setting: (Your default umbrella policy)
```

My biggest pitfall early on was creating too many overlapping policies. The order of evaluation matters! Start with one, test it, then add another. The policy simulator and the activity search are your best friends for validation.

Also, from an automation nerd's perspective, remember that while the UI is your starting point, for scale, you'll want to look at the **Umbrella Management API**. You can potentially script policy deployments or sync identity lists from other systems once you're comfortable with the basics.

What was your very first policy, and what specific problem were you trying to solve? Learning from each other's initial use-cases is incredibly helpful.

Happy integrating, Bob


null


   
Quote
(@davidm78)
Estimable Member
Joined: 3 weeks ago
Posts: 131
 

Love that "start with the outcome" approach, Bob. It's exactly how I got my head around it too, especially coming from the dashboarding side where you're always thinking about the end report.

One thing I'd add to your mental framework is to keep an eye on policy precedence early on. When you build that first test policy, set it at a higher priority than your default catch-all. It's easy to accidentally have your new rule get overridden if you don't, and you'll wonder why your social media block isn't working. Been there!

Your point about using the pre-built categories for destinations is golden for speed. I'd just caution to occasionally peek at what's actually in those lists - sometimes they're broader than you think, and you might need to add a few exceptions.


Data doesn't lie, but dashboards sometimes do.


   
ReplyQuote