{"id":249,"date":"2009-06-19T19:20:39","date_gmt":"2009-06-19T19:20:39","guid":{"rendered":"https:\/\/fir3netwp.gmsrrpobkbd.com\/2009\/06\/19\/r55-resource-usage-report-script\/"},"modified":"2021-07-31T17:39:34","modified_gmt":"2021-07-31T17:39:34","slug":"r55-resource-usage-report-script","status":"publish","type":"post","link":"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html","title":{"rendered":"R65 \/ R55 Script – Resource Usage Report"},"content":{"rendered":"

Below is a bash\/sh script to log the resouces of a R55\/R65 Check Point firewall. The following resources are recorded,<\/p>\n

    \n
  1. Free Memory<\/li>\n
  2. CPU Usage<\/li>\n
  3. Concurrent Connections<\/li>\n
  4. Peak Connections<\/li>\n
  5. Time<\/li>\n
  6. Date<\/li>\n<\/ol>\n

    The script will build a .csv file which can then be opened using excel, and the required data (columns) can be selected and converted into graphs. The scripts can be found below,<\/p>\n

    IPSO<\/h2>\n
    # Checkpoint IPSO R55\/R65 Resource Monitoring Tool v3 - Felix\r\n# output is stored in a csv file using the $log variable \r\n# \r\n#!\/bin\/sh \r\n\r\n## Import Environment Variables\r\n. \/var\/etc\/pm_profile && \r\n. \/opt\/CPsuite-R??\/svn\/tmp\/.CPprofile.csh\r\n\r\n## If required create a directory\r\nif [ -d != \/var\/log\/resource_report ] \r\n\tthen\r\n\tmkdir \/var\/log\/resource_report  2>\/dev\/null\r\nfi\r\n\r\n## if required create a README\r\nif [ -e != \/var\/log\/resource_report\/README.txt ]\r\n\tthen\r\n\thead -5 $0  > \/var\/log\/resource_report\/README.txt\r\nfi\r\n\r\n## Assign Variables\r\ntmp=\/tmp\/cp_resource.$$\r\nlog=\/var\/log\/resource_report\/rreport-`date +\"%Y%m%d\"`.csv\r\n\r\n## Log rotate reports older then 31 days\r\nfind \/var\/log\/resource_report\/rreport* -mtime +31 -exec rm -f {} \\; 2>\/dev\/null\r\n\r\n## Gather stats\r\nfw ctl pstat >> $tmp  2>\/dev\/null\r\n\r\nif [ $? != 0 ]\r\nthen\r\n    logger -t cp_resource_report -p daemon.err \"Unable to run \\\"fw ctl pstat\\\"\" \r\n    exit 1\r\nelse\r\n    vmstat 1 5 >> $tmp  2>\/dev\/null\r\nRC=$?\r\nfi\r\nif [ $RC != 0 ]\r\nthen\r\n    logger -t cp_resource_report -p daemon.err \"Unable to run \\\"vmstat\\\"\" \r\n\texit 1\r\nelse\r\n    peakconn=`grep \"peak concurrent\" $tmp | awk ' { print $1 } '`\r\n    cpuidle=`tail -1 $tmp | awk ' { print $NF } '`\r\n    cpu=`expr 100 - $cpuidle`\r\n    conn=`grep recovered $tmp | awk ' { print $7 } '`\r\n    free=`tail -1 $tmp | awk ' { print $4 } '`\r\n    freemb=`expr $free \/ 1024`\r\nfi\r\n\r\n## Write stats to a file. If not find is present add a header\r\nif [ ! -r ${log} ] ;\r\nthen\r\n   echo date,time,connections,peak connections,cpu \\%,free mem \\(MB\\)  >> ${log}\r\n   echo `date +\"%d\/%m\/%y\"`,`date \"+%H:%M:%S\"`,$conn,$peakconn,${cpu},${freemb} >> ${log}\r\nelse\r\n   echo `date +\"%d\/%m\/%y\"`,`date \"+%H:%M:%S\"`,$conn,$peakconn,${cpu},${freemb} >> ${log}\r\nfi\r\nrm -f $tmp\r\nexit 0\r\n<\/pre>\n

    SPLAT \/ SOLARIS<\/h2>\n
    # Checkpoint Solaris \/ SPLAT R55\/R65 Resource Monitoring Tool v3 - Felix\r\n# output is stored in a csv file using the $log variable \r\n# \r\n#!\/bin\/bash\r\n\r\n## Import Environment Variables\r\n. \/opt\/CPshrd-R??\/tmp\/.CPprofile.sh \r\n\r\n## If required create a directory\r\nif [ -d != \/var\/log\/resource_report ] \r\n\tthen\r\n\tmkdir \/var\/log\/resource_report  2>\/dev\/null\r\nfi\r\n\r\n## if required create a README\r\nif [ -e != \/var\/log\/resource_report\/README.txt ]\r\n\tthen\r\n\thead -5 $0 > \/var\/log\/resource_report\/README.txt\r\nfi\r\n\r\n## Assign Variables\r\ntmp=\/tmp\/cp_resource.$$\r\nlog=\/var\/log\/resource_report\/rreport-`date +\"%Y%m%d\"`.csv\r\n\r\n## Log rotate reports older then 31 days\r\nfind \/var\/log\/resource_report\/rreport* -mtime +31 -exec rm -f {} \\; 2>\/dev\/null\r\n\r\n## Gather stats\r\nfw ctl pstat >> $tmp  2>\/dev\/null\r\n\r\nif [ $? != 0 ]\r\nthen\r\n    logger -t cp_resource_report -p daemon.err \"Unable to run \\\"fw ctl pstat\\\"\" \r\n    exit 1\r\nelse\r\n    vmstat 1 5 >> $tmp  2>\/dev\/null\r\nRC=$?\r\nfi\r\nif [ $RC != 0 ]\r\nthen\r\n    logger -t cp_resource_report -p daemon.err \"Unable to run \\\"vmstat\\\"\" \r\n\texit 1\r\nelse\r\n    peakconn=`grep \"peak concurrent\" $tmp | awk ' { print $1 } '`\r\n    cpuidle=`tail -1 $tmp | awk ' { print $NF } '`\r\n    cpu=`expr 100 - $cpuidle`\r\n    conn=`grep recovered $tmp | awk ' { print $7 } '`\r\n    free=`tail -1 $tmp | awk ' { print $4 } '`\r\n    freemb=`expr $free \/ 1024`\r\nfi\r\n\r\n## Write stats to a file. If not find is present add a header\r\nif [ ! -r ${log} ] ;\r\nthen\r\n   echo date,time,connections,peak connections,cpu \\%,free mem \\(MB\\)  >> ${log}\r\n   echo `date +\"%d\/%m\/%y\"`,`date \"+%H:%M:%S\"`,$conn,$peakconn,${cpu},${freemb} >> ${log}\r\nelse\r\n   echo `date +\"%d\/%m\/%y\"`,`date \"+%H:%M:%S\"`,$conn,$peakconn,${cpu},${freemb} >> ${log}\r\nfi\r\nrm -f $tmp\r\nexit 0\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"

    Below is a bash\/sh script to log the resouces of a R55\/R65 Check Point firewall. The following resources are recorded, Free Memory CPU Usage Concurrent Connections Peak Connections Time Date The script will build a .csv file which can then be opened using excel, and the required data (columns) can be selected and converted into … Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":248,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[40],"tags":[],"yoast_head":"\nR65 \/ R55 Script - Resource Usage Report - Fir3net<\/title>\n<meta name=\"description\" content=\"Below is a bash\/sh script to log the resouces of a R55\/R65 Check Point firewall. The following resources are recorded, Free Memory CPU Usage Concurrent\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"R65 \/ R55 Script - Resource Usage Report - Fir3net\" \/>\n<meta property=\"og:description\" content=\"Below is a bash\/sh script to log the resouces of a R55\/R65 Check Point firewall. The following resources are recorded, Free Memory CPU Usage Concurrent\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html\" \/>\n<meta property=\"og:site_name\" content=\"Fir3net\" \/>\n<meta property=\"article:published_time\" content=\"2009-06-19T19:20:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-07-31T17:39:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.fir3net.com\/wp-content\/uploads\/2009\/06\/images_legacy_graph.PNG\" \/>\n\t<meta property=\"og:image:width\" content=\"305\" \/>\n\t<meta property=\"og:image:height\" content=\"92\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Rick Donato\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Rick Donato\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html\"},\"author\":{\"name\":\"Rick Donato\",\"@id\":\"https:\/\/www.fir3net.com\/#\/schema\/person\/ab35009601b7687ee1c5310be6038037\"},\"headline\":\"R65 \/ R55 Script – Resource Usage Report\",\"datePublished\":\"2009-06-19T19:20:39+00:00\",\"dateModified\":\"2021-07-31T17:39:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html\"},\"wordCount\":74,\"publisher\":{\"@id\":\"https:\/\/www.fir3net.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.fir3net.com\/wp-content\/uploads\/2009\/06\/images_legacy_graph.PNG\",\"articleSection\":[\"Shell Scripting\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html\",\"url\":\"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html\",\"name\":\"R65 \/ R55 Script - Resource Usage Report - Fir3net\",\"isPartOf\":{\"@id\":\"https:\/\/www.fir3net.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.fir3net.com\/wp-content\/uploads\/2009\/06\/images_legacy_graph.PNG\",\"datePublished\":\"2009-06-19T19:20:39+00:00\",\"dateModified\":\"2021-07-31T17:39:34+00:00\",\"description\":\"Below is a bash\/sh script to log the resouces of a R55\/R65 Check Point firewall. The following resources are recorded, Free Memory CPU Usage Concurrent\",\"breadcrumb\":{\"@id\":\"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html#primaryimage\",\"url\":\"https:\/\/www.fir3net.com\/wp-content\/uploads\/2009\/06\/images_legacy_graph.PNG\",\"contentUrl\":\"https:\/\/www.fir3net.com\/wp-content\/uploads\/2009\/06\/images_legacy_graph.PNG\",\"width\":305,\"height\":92},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.fir3net.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Programming\",\"item\":\"https:\/\/www.fir3net.com\/programming\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Shell Scripting\",\"item\":\"https:\/\/www.fir3net.com\/programming\/shell-scripting\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"R65 \/ R55 Script – Resource Usage Report\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.fir3net.com\/#website\",\"url\":\"https:\/\/www.fir3net.com\/\",\"name\":\"Fir3net\",\"description\":\"Keeping you in the know\",\"publisher\":{\"@id\":\"https:\/\/www.fir3net.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.fir3net.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.fir3net.com\/#organization\",\"name\":\"Fir3net\",\"url\":\"https:\/\/www.fir3net.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.fir3net.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.fir3net.com\/wp-content\/uploads\/Fir3net-Background-Logo-compressed.png\",\"contentUrl\":\"https:\/\/www.fir3net.com\/wp-content\/uploads\/Fir3net-Background-Logo-compressed.png\",\"width\":390,\"height\":88,\"caption\":\"Fir3net\"},\"image\":{\"@id\":\"https:\/\/www.fir3net.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.fir3net.com\/#\/schema\/person\/ab35009601b7687ee1c5310be6038037\",\"name\":\"Rick Donato\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.fir3net.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d75d69a54c0ca3b32c24c3a9703b623c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d75d69a54c0ca3b32c24c3a9703b623c?s=96&d=mm&r=g\",\"caption\":\"Rick Donato\"},\"description\":\"Rick Donato is a Network Automation Architect\/Evangelist and the founder of Packet Coders.\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"R65 \/ R55 Script - Resource Usage Report - Fir3net","description":"Below is a bash\/sh script to log the resouces of a R55\/R65 Check Point firewall. The following resources are recorded, Free Memory CPU Usage Concurrent","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html","og_locale":"en_US","og_type":"article","og_title":"R65 \/ R55 Script - Resource Usage Report - Fir3net","og_description":"Below is a bash\/sh script to log the resouces of a R55\/R65 Check Point firewall. The following resources are recorded, Free Memory CPU Usage Concurrent","og_url":"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html","og_site_name":"Fir3net","article_published_time":"2009-06-19T19:20:39+00:00","article_modified_time":"2021-07-31T17:39:34+00:00","og_image":[{"width":305,"height":92,"url":"https:\/\/www.fir3net.com\/wp-content\/uploads\/2009\/06\/images_legacy_graph.PNG","type":"image\/jpeg"}],"author":"Rick Donato","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Rick Donato","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html#article","isPartOf":{"@id":"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html"},"author":{"name":"Rick Donato","@id":"https:\/\/www.fir3net.com\/#\/schema\/person\/ab35009601b7687ee1c5310be6038037"},"headline":"R65 \/ R55 Script – Resource Usage Report","datePublished":"2009-06-19T19:20:39+00:00","dateModified":"2021-07-31T17:39:34+00:00","mainEntityOfPage":{"@id":"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html"},"wordCount":74,"publisher":{"@id":"https:\/\/www.fir3net.com\/#organization"},"image":{"@id":"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html#primaryimage"},"thumbnailUrl":"https:\/\/www.fir3net.com\/wp-content\/uploads\/2009\/06\/images_legacy_graph.PNG","articleSection":["Shell Scripting"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html","url":"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html","name":"R65 \/ R55 Script - Resource Usage Report - Fir3net","isPartOf":{"@id":"https:\/\/www.fir3net.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html#primaryimage"},"image":{"@id":"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html#primaryimage"},"thumbnailUrl":"https:\/\/www.fir3net.com\/wp-content\/uploads\/2009\/06\/images_legacy_graph.PNG","datePublished":"2009-06-19T19:20:39+00:00","dateModified":"2021-07-31T17:39:34+00:00","description":"Below is a bash\/sh script to log the resouces of a R55\/R65 Check Point firewall. The following resources are recorded, Free Memory CPU Usage Concurrent","breadcrumb":{"@id":"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html#primaryimage","url":"https:\/\/www.fir3net.com\/wp-content\/uploads\/2009\/06\/images_legacy_graph.PNG","contentUrl":"https:\/\/www.fir3net.com\/wp-content\/uploads\/2009\/06\/images_legacy_graph.PNG","width":305,"height":92},{"@type":"BreadcrumbList","@id":"https:\/\/www.fir3net.com\/Programming\/Shell-Scripting\/r55-resource-usage-report-script.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.fir3net.com\/"},{"@type":"ListItem","position":2,"name":"Programming","item":"https:\/\/www.fir3net.com\/programming"},{"@type":"ListItem","position":3,"name":"Shell Scripting","item":"https:\/\/www.fir3net.com\/programming\/shell-scripting"},{"@type":"ListItem","position":4,"name":"R65 \/ R55 Script – Resource Usage Report"}]},{"@type":"WebSite","@id":"https:\/\/www.fir3net.com\/#website","url":"https:\/\/www.fir3net.com\/","name":"Fir3net","description":"Keeping you in the know","publisher":{"@id":"https:\/\/www.fir3net.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.fir3net.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.fir3net.com\/#organization","name":"Fir3net","url":"https:\/\/www.fir3net.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.fir3net.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.fir3net.com\/wp-content\/uploads\/Fir3net-Background-Logo-compressed.png","contentUrl":"https:\/\/www.fir3net.com\/wp-content\/uploads\/Fir3net-Background-Logo-compressed.png","width":390,"height":88,"caption":"Fir3net"},"image":{"@id":"https:\/\/www.fir3net.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.fir3net.com\/#\/schema\/person\/ab35009601b7687ee1c5310be6038037","name":"Rick Donato","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.fir3net.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d75d69a54c0ca3b32c24c3a9703b623c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d75d69a54c0ca3b32c24c3a9703b623c?s=96&d=mm&r=g","caption":"Rick Donato"},"description":"Rick Donato is a Network Automation Architect\/Evangelist and the founder of Packet Coders."}]}},"_links":{"self":[{"href":"https:\/\/www.fir3net.com\/wp-json\/wp\/v2\/posts\/249"}],"collection":[{"href":"https:\/\/www.fir3net.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.fir3net.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.fir3net.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.fir3net.com\/wp-json\/wp\/v2\/comments?post=249"}],"version-history":[{"count":0,"href":"https:\/\/www.fir3net.com\/wp-json\/wp\/v2\/posts\/249\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.fir3net.com\/wp-json\/wp\/v2\/media\/248"}],"wp:attachment":[{"href":"https:\/\/www.fir3net.com\/wp-json\/wp\/v2\/media?parent=249"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.fir3net.com\/wp-json\/wp\/v2\/categories?post=249"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.fir3net.com\/wp-json\/wp\/v2\/tags?post=249"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}