#!/bin/sh # 2024-04-23 02:36:07 MS fwcmd="/sbin/ipfw" num="10000" act="deny" ${fwcmd} add ${num} ${act} ip from 199.7.90.0/24 to any ${fwcmd} add ${num} ${act} ip from any to 199.7.90.0/24 ${fwcmd} add ${num} ${act} ip from 208.90.112.0/22 to any ${fwcmd} add ${num} ${act} ip from any to 208.90.112.0/22