#!/bin/sh # 2024-04-16 02:33:32 IO fwcmd="/sbin/ipfw" num="10000" act="deny" ${fwcmd} add ${num} ${act} ip from 202.44.112.0/22 to any ${fwcmd} add ${num} ${act} ip from any to 202.44.112.0/22 ${fwcmd} add ${num} ${act} ip from 203.83.48.0/21 to any ${fwcmd} add ${num} ${act} ip from any to 203.83.48.0/21