Log View ==> FortiGate ==> Application Control (apprisk=high or apprisk=critical) and -action=block
Category: Archive 2022
FortiGate / FortiManager TCL script example
Creating 150 address with a TCL-script #! proc do_cmd {cmd} { puts [exec “$cmd\n” “# ” 15] } set numhosts 150 do_cmd “config firewall address” for {set i 12} {$i <= $numhosts} {incr i} { do_cmd “edit host-$i” do_cmd “set subnet 192.168.21.$i/32” do_cmd “next” } do_cmd “end”
FortiGate CLI
get get router info routing-table all get router info routing-table database get router info routing-table ospf get router info ospf neighbor get system arp get system arp | grep 192.168.1.10 get system source-ip status get ipsec tunnel list get vpn ipsec tunnel details execute execute router clear ospf process execute ping 8.8.8.8 execute disk FortiGate-600D […]