- CheckMates
- :
- Products
- :
- Developers
- :
- API / CLI Discussion
- :
- Re: Do we have API command to get the checkpoint g...
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Are you a member of CheckMates?
×- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Do we have API command to get the checkpoint gateway uptime & exported into CSV format?
I am trying to get the gateway uptime and other detail via management server & then need to export it into CSV format.
Please let me know if there is any option.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Personally, I never heard of such command in API. Even guide itself does not list one.
Andy
https://sc1.checkpoint.com/documents/latest/APIs/#introduction~v1.9.1%20
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can use GAIA API command "Run Script".
Basically you can inject command. You can write uptime to a file.
https://sc1.checkpoint.com/documents/latest/GaiaAPIs/index.html#web/run-script~v1.7%20
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hey Amir,
Do you have simple example you can give? Would like to try it in the lab.
Best,
Andy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I run login and then run script.
For this I would use echo value to a file.
If you want to automate it in some capacity you could also add this to a cron job.
[Expert@Amir:0]# echo $(uptime) >> test.csv
[Expert@Amir:0]# echo $(uptime) >> test.csv
[Expert@Amir:0]# echo $(uptime) >> test.csv
[Expert@Amir:0]# echo $(uptime) >> test.csv
[Expert@Amir:0]# echo $(uptime) >> test.csv
[Expert@Amir:0]# cat test.csv
08:56:40 up 16:58, 1 user, load average: 0.08, 0.08, 0.05
08:56:41 up 16:58, 1 user, load average: 0.08, 0.08, 0.05
08:56:41 up 16:58, 1 user, load average: 0.08, 0.08, 0.05
08:56:42 up 16:58, 1 user, load average: 0.08, 0.08, 0.05
08:56:42 up 16:58, 1 user, load average: 0.08, 0.08, 0.05
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Will try it later.
Best,
Andy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Just tested it, good! I will try with watch -d flag later to see if that works.
Andy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How can i use this to collect the uptime from management for multiple gateways?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I dont think watch -d works : - (
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This API call runs a script directly on the system against which you make the call. You would make the call on each firewall individually, then your client would assemble the results.
You could use that call against the management to have the management run a script like this one to run commands on every firewall reporting to that management. This takes a lot of familiarity with BASH scripting.
You can use the management API call /gaia-api to tell the management to tell a gateway to run something.
If you have a script in the management script repository, you can use the management API call /run-script to run it against whichever firewalls you specify.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
thank you!! is there an article that i can follow to setup?
