#!/bin/sh # 2024-03-26 02:37:09 NU fwcmd="/sbin/ipfw" num="10000" act="deny" ${fwcmd} add ${num} ${act} ip from 49.156.48.0/22 to any ${fwcmd} add ${num} ${act} ip from any to 49.156.48.0/22 ${fwcmd} add ${num} ${act} ip from 202.59.4.0/22 to any ${fwcmd} add ${num} ${act} ip from any to 202.59.4.0/22