Advanced Search
Search Results
19 total results found
SmartConsole cli parameters
In R77.30 you could use command line parameters to specify username/password like this: FwPolicy.exe connect %Hostname% %Username% Since R80.10 you need to do the following: SmartConsole.exe -p SmartConsole.LoginParams Here is the SmartConsole.LoginParams ...
Useful SNMP OIDs (VSX)
Check Point and SNMP Monitoring for a Firewall is important, you need to make sure that you see the baseline of your environment and that you can see when some value will go up too high. The following guide is showing some of the most used SNMP OID for monit...
Missing feature - Global search across multiple CMA
Preface Before R80.x in a MDM (Multi Domain Management) you could do a search where an object is used in all the CMA's.Until now (R80.30) this feature is not included in SmartConsole anymore. Script solution https://github.com/WadesWeaponShed/Global-IP-Sea...
How to copy a file from a Check Point firewall
For troubleshooting you need sometime to transfer files from a Check Point firewal, as example tcpdump files etc.With the admin user it is not possible to login with sftp, the shell for the user is set to /etc/cli.sh. For a temporary access to the sftp featur...
tcpdump Cheat Sheet
tcpdump Cheat Sheet (https://www.comparitech.com/net-admin/tcpdump-cheat-sheet/)
IPv6 CLI commands
IPv6 Commands Below are the most important helpful commands for checking and diagnosing the IPv6 environment Windows 8 / 10 Command Function ipconfig /all displays all interface details ping ::1 Test IPv6 protocol host internally (localhost) n...
How to always run local-exec with Terraform
Sometimes there is a need to always run some terraform local-exec, so we can always execute a null_resource when doing an apply or applying it as a target. So, how can you make sure to invalidate state for the null resource, so it always runs the local-exec s...
F5 REST-API (iControlREST)
iControlREST Home Find the documentation about the F5 REST-API here: https://clouddocs.f5.com/api/icontrol-rest/ Examples GTM Get GTM Pool fallbackIp curl -sku admin:<password> https://<f5-bigip>/mgmt/tm/gtm/pool/a\ | jq '.items[] | { name: .name, ip: ....
Show interface speed and duplex as a list
If you need a list of interfaces and the actual speed and duplex settings use this: # ifconfig -a | grep encap | awk '{print $1}' | grep -v lo | grep -v bond | grep -v ":" \ | grep -v ^lo | xargs -I % sh -c 'ethtool %; ethtool -i %' | grep '^driver\|Speed\|D...
GAIA - Easy execute CLI commands on all gateways simultaneously
Link https://community.checkpoint.com/t5/Enterprise-Appliances-and-Gaia/GAIA-Easy-execute-CLI-commands-on-all-gateways-simultaneously/m-p/50883
Export/Import Policy Package
Check Point ExportImportPolicyPackage tool enables you to export a policy package from a Management database to a .tar.gz file, which can then be imported into any other Management database. The tool is supported for version R80.10 and above. This tool can be...
Using cli on the switches
Getting into cli Ubiquiti equipment is managed by the unifi tool which can run on a vm or you use a hardware box like dream machine pro. At the moment I use unifi on a dedicated vm for managing all the devices. To get into the cli you can setup in the unifi ...
Run a container with kubectl
In Docker you can run a one-time container with the following docker run --rm -it centos /bin/bash To use the same in Kubernetes you need to use kubectl in any cluster kubectl run tmp-shell --restart=Never --rm -i --tty --image centos -- /bin/bash Links F...
F5 Big-IP Advanced Troubleshooting
I work with F5 since many years and I always need some advanced troubleshooting tools which I documented here a little bit. CLI Commands Show pool members monitoring status tmsh show ltm pool all members field-fmt | grep -P "(ltm\ pool|active-member-cnt|add...
F5 fix Guided Configuration Installation
Customers are using more and more Guided Configuration on F5 systems.Sometimes we have the problem that GC is not working and shows a 404 not-found error or similar. The problem is that when GC is not working properly anymore you cannot get to the GUI part to...
Useful CLI commands F5
CLI commands tmsh on F5 is the CLI tool to get and set all config of the F5. You can get the same configuration options like in the F5 UI. Use "tmsh" to start an interactive shell or use "tmsh show ..." directly to get an output of the command The tmsh and ...
Useful CLI commands F5OS
CLI commands ConfD on F5 is the CLI tool to get and set all config of the F5. You can get the same configuration options like in the F5OS UI. Use "su admin" to start an interactive shell when you are logged in as root via ssh. Useful CLI command line troubl...
F5 LTM TMSH Base Config
Config with LDAP Auth ## ====================================================== ## Insert in TMSH "load sys config merge from-terminal" ## Finish with CTRL-D ## ====================================================== # - NTP settings # -----------------...
Useful CLI Commands Check Point
Cheatsheets Check Point CLI Reference Card (https://www.roesen.org/files/cp_cli_ref_card.pdf) FW Monitor (https://www.roesen.org/files/fw_monitor.pdf) R80 Cheat Sheet FW-Monitor (https://www.ankenbrand24.de/index.php/articles/check-point-articel/cheat-she...