#!/bin/sh
#security_level=`uci get firewall.general.security_level`
security_level="no"


###When security level is "High Security"
#if [ "$security_level" == "high" ]
#then
#fi

###When security level is "Low Security"
#if [ "$security_level" == "low" ]
#then
#fi

###When security level is "No Security"
if [ "$security_level" == "no" ]
then
ipset -N exception_subnet_set iptreemap
ipset -N exception_subnet_gre_set iptreemap
fi
