#!/bin/sh # 2024-04-16 02:39:02 ST fwcmd="/sbin/ipfw" num="10000" act="deny" ${fwcmd} add ${num} ${act} ip from 154.72.12.0/22 to any ${fwcmd} add ${num} ${act} ip from any to 154.72.12.0/22 ${fwcmd} add ${num} ${act} ip from 197.159.160.0/19 to any ${fwcmd} add ${num} ${act} ip from any to 197.159.160.0/19