Date: Thu, 26 Nov 1998 09:51:53 -0600 From: Dan Nelson <dnelson@emsphone.com> To: Dean Hollister <dean@odyssey.apana.org.au>, FreeBSD Questions <freebsd-questions@FreeBSD.ORG> Subject: Re: Quake Server: Limiting access Message-ID: <19981126095153.A22424@emsphone.com> In-Reply-To: <Pine.BSF.4.05.9811262242580.25520-100000@odyssey.apana.org.au>; from "Dean Hollister" on Thu Nov 26 22:45:04 GMT 1998 References: <Pine.BSF.4.05.9811262242580.25520-100000@odyssey.apana.org.au>
next in thread | previous in thread | raw e-mail | index | archive | help
In the last episode (Nov 26), Dean Hollister said: > > What's the command I have to send to the server to limit access to > certain class-c's only? With quakeworld, its: > > filterban 0 > addip 203.11.114 > > Is it the same for standard Quake? Quake doesn't have in-server filters. You can easily add them with ipfw, though. ipfw add allow udp from 203.11.114.0/24 to ${MYIP} 26000 ipfw add deny udp from any to ${MYIP} 26000 would only allow access from that one class C. -Dan Nelson dnelson@emsphone.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19981126095153.A22424>