Recent Content
What do you think about the new Cato Community?
What do you think about the new Cato Community?SolvedMikeOrtega4 months agoCato Employee111Views3likes8CommentsWhat's new at Cato? 25th November 2024
"Hey Robin, what's new at Cato Networks this week?" Great question, have a sub-1 minute video giving you a digest of the latest and greatest. Naturally, you can find a full list on our Knowledge Base here:https://support.catonetworks.com/hc/en-us/articles/23222708288157-Product-Update-November-25-2024 Don't forget - it's Thanksgiving in the US this Thursday, so let's reflect on the things we're thankful for: 1) Cato's rapid product development which helps keep us secure, protected and connected 2) Star Wars 3) Memes Happy Monday ya'll! 🦃Robin_Johns2 months agoCato Employee37Views3likes0CommentsHey, Robin! I currently use Okta to manage my users. How complicated is this to set up with Cato?
You know those situations where someone asks you a question, and you think to yourself "this is something that's going to be asked multiple times?" Yeah, this is one of them. While I was talking with a future Cato Customer, they asked a simple question about how difficult it would be to provision their users with SCIM into the Cato Management Application. Naturally they were hesitant (as this can be a mammoth task with many vendors), but with us, it's a pretty light-lift. Being the egotistical buffoon I am, I thought to record a video in a dimly lit hotel room. Of course we have fantastic product documentation that explains this procedure in detail, but some people are visual learners who want to see the 'final product' instead of the steps along the way. Remember, 5 hours of troubleshooting can often save you 10 minutes of reading the documentation 😀Robin_Johns3 months agoCato Employee49Views2likes1CommentNotifications on Cato Connect
If you’d like to change your notification settings, just click on your avatar, choose “my settings” Then click on "Follow & Notifications" Then make the changes you would like to make to your notification settings. If you’d like to receive email notifications, make sure this button is toggled on. Otherwise, your notifications will be only in the bell icon on Cato Connect. Everything here is set to immediate, but you can choose to get a daily or even weekly digest of information, totally up to you. Don’t forget to check out the advanced options at the very bottom of the page. We’re glad you’re here and we want to make Cato Connect as useful and engaging as possible. Start a discussion or email us with any ideas or questions!yumdarling3 months agoCommunity Manager22Views2likes0Comments- JM3 months agoMeteor38Views2likes2Comments
Community Guidelines
Welcome to Cato Connect! We’re excited to have you here. Cato Networks created the Cato Connect community to give our customers, partners, and employees a place to discuss and collaborate on Cato and SASE. In order to keep everything running smoothly, we’re following these guidelines and are expecting users to do the same: Do: Stay respectful and be nice – we are all here to problem-solve and learn, keep your comments respectful and avoid vulgar or derogatory speech. Keep it on topic – Cato Networks and SASE provide us plenty of fodder for conversations, let’s stick to those on Cato Connect. Protect your privacy – keep your network and API keys to yourselves, people! Along with your emails, your addresses, or anything you wouldn’t otherwise plaster on the internet. Protect other people’s privacy as well and don’t post it online. I know you know this, but it bears repeating. Keep in mind that this content is user generated – Many of the solutions you’ll find here may very well work for you (and yay), but sometimes, people have their software configured differently. Use your good judgement when implementing solutions found here. Don’t: Post anything illegal – respect the rules of your organization, copyrights, trade secrets, and any nondisclosure agreements you’re beholden to. Lawyers are expensive. Spam – while some forms of spamming may be obvious (we’ve all seen those condo or printer ads on software communities before), some might be a little more obscure. Please refrain from posting your question in multiple forums or the same comment on multiple threads if it’s not relevant. Please do not send unsolicited private messages that are off topic. We will know, and we will moderate you. Solicit business – keep our community clear of posts that are for advertising and soliciting business, trust that if you make yourself famous by answering questions and participating in the community, our smart and attentive members will notice and reach out if they’d like to work with you. Get weird with images – keep images clean and safe-for-work. Inappropriate language or visuals in images are a no-no and we will remove them. We are over the moon that you’ve joined and want to make this experience the best for you! If you see spam or inappropriate behavior,report it. If you need help, come find us. And if you have suggestions for the community, post them here! By participating in these forums, you agree to theTerms of Service for the Cato Connect Community.yumdarling3 months agoCommunity Manager26Views2likes0CommentsArea for users to submit and vote for RFEs
Currently the only option to submit an RFE is to contact CATO representative by email and answer a set of template questions. With this method, different users are not aware of RFEs already opened, their status etc. and it is likely they submit similar or the same ideas independently. I would recommend to create an area in this community portal to submit RFEs, review the ones already opened by others and maybe vote for the ones you appreciate. Vote results could be a way for CATO Team to understand what are the needs and expectations of the customers, and maybe prioritize some RFEs over another. RFEs submitted by users could go through a review/approval process first, so CATO Team checks if something similar was already created in the past (to avoid duplicates) or if provided description is complete and enough to start the process.40Views2likes1CommentSetting up custom email alerts for changes in CMA
We would like to see email alerts when either of the following changes are made in the Cato Management App Firewall policies are added/modified Routing changes are made. changes are made to the TLS inspection policy Any other changes that could affect the security profile How can we setup such email alerts62Views2likes7CommentsA simple example in Python
import json import ssl import urllib.parse import urllib.request headers = { "x-api-key": MY_API_KEY, "Content-Type": "application/json" } body = { "operationName": "accountSnapshot", "variables": {"accountID":MY_ACCOUNT_ID}, "query": ''' query accountSnapshot($accountID:ID!) { accountSnapshot(accountID:$accountID) { id } }''' } request = urllib.request.Request(url='https://api.catonetworks.com/api/v1/graphql2', data=json.dumps(body).encode("ascii"), headers=headers) response = urllib.request.urlopen(request, context=ssl._create_unverified_context()) print(json.loads(response.read().decode("utf-8","replace")))peter4 months agoCato Employee62Views2likes2Comments