Displaying 4 results from an estimated 4 matches for "mountpointb".
Did you mean:
mountpoint
2020 Mar 26
4
Blocking IP addresses on a per mountpoint level
Thanks.
Indeed - but is it it possible to block IP addresses on a per mountpoint
level? For example, my user with /mountpointA.ogg does not mind being
hammered by connections from 93.184.216.34 [example.com] but my user with
/mountpointB.ogg wants to block that IP address.
Using iptables I've blocked connections, at a server level, from example.com
for my User B but my User A doesn't mind their connection being probed once
per minute 24/7/365 by a badly-configured player from that IP address.
Thank you
Chip Scooter
On T...
2020 Mar 26
2
Blocking IP addresses on a per mountpoint level
Hi
Several questions below:
a) is it possible to block IP addresses on a per mountpoint level e.g. my
user with /mountpointA.ogg does not mind being hammered by connections from
93.184.216.34 [example.com] but my user with /mountpointB.ogg wants to
block that IP address.
b) is it possible to geoblock ranges of IP addresses and whole countries on
a per mountpoint basis?
c) what options do people use for geoblocking? I'm on a VPS so ipset is
currently not an option.
Many thanks in advance
Chip Scooter
-------------- next pa...
2020 Mar 26
0
Blocking IP addresses on a per mountpoint level
...:49, Chip wrote:
> Thanks.
>
> Indeed - but is it it possible to block IP addresses on a per
> mountpoint level? For example, my user with /mountpointA.ogg does not
> mind being hammered by connections from 93.184.216.34 [example.com
> <http://example.com>] but my user with /mountpointB.ogg wants to block
> that IP address.
>
> Using iptables I've blocked connections, at a server level, from
> example.com <http://example.com> for my User B but my User A doesn't
> mind their connection being probed once per minute 24/7/365 by a
> badly-configured pla...
2020 Mar 26
0
Blocking IP addresses on a per mountpoint level
...:49, Chip wrote:
> Thanks.
>
> Indeed - but is it it possible to block IP addresses on a per
> mountpoint level? For example, my user with /mountpointA.ogg does not
> mind being hammered by connections from 93.184.216.34 [example.com
> <http://example.com>] but my user with /mountpointB.ogg wants to block
> that IP address.
If the mountpoints are at different ports you can specify that in
iptables as well:
iptables -A INPUT -s 93.185.216.34 --dport xxx -j DROP
That will only block connections from that IP address to the given
destionation port.
Regards,
- Jeroen
--
B...