Solved
Anybody seen any cool tools that will grab fwpolicies and dump them into a format to import into xls, or csv or any other method?
Yes offcourse
I use fortigate rest api document.
http://www.tuncaybas.com/FOS_JSON_REST_API_523.pdf
Get all policy for 5.2 :
[link]https://192.168.0.1:443/api/cmdb?request=[/link]{'action':'select','path':'firewall','name':'policy','datasource':true,'skip':true,'with_meta':true}
Get all policy for 5.4 :
https://192.168.0.1:443/a..2/cmdb/firewall/policy/
This results json format.
{
"http_method":"GET",
"results":[
{
"policyid":7,
"q_origin_key":"7",
"name":"fatura-pc-deny",
"uuid":"53e964d2-36b8-51e6-a95c-9c146a1da1c8",
"srcintf":[
{
"name":"lan",
"q_origin_key":"lan"
}
],
"dstintf":[
{
"name":"wan1",
"q_origin_key":"wan1"
}
],
"srcaddr":[
{
"name":"all",
"q_origin_key":"all"
}
],
and parse with .net (or use other language).
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
