What kind of format is the below code written in and how do I get Python to interpret it? It's labeled as a policy file for firewall rules deployment.
#include '../../subnets/OFFICE_NETWORKS.inc'
term allow-internetwork-traffic {
source-address:: SOURCE_ADDRESSES
destination-address:: DESTINATION_ADDRESSES
protocol:: tcp
action:: accept
counter:: allow.internetwork.traffic
}
term deny-to-accounting {
source-address:: OFFICE_USERS
destination-address:: ACCOUNTING_NETWORK
destination-port:: TCP_8080
protocol:: tcp
logging:: true
action:: deny
counter:: deny.to.accounting
}