How to block an external IP in eztables?

versatile 64-bit multi-user Linux distribution


Moderators: kirk, jamesbond, p310don, JakeSFR, step, Forum moderators

Post Reply
Neo_78
Posts: 407
Joined: Wed Dec 29, 2021 10:45 pm
Has thanked: 232 times
Been thanked: 11 times

How to block an external IP in eztables?

Post by Neo_78 »

[Mod Edit: Move to Fatdog64 main section]

Do you know the correct syntax to block all incoming traffic from a specific, external IP in the eztables configuration?

I cannot find any examples in the official docs:

https://github.com/louwrentius/eztables

Thanks for your feedback! :thumbup:

User avatar
smokey01
Posts: 197
Joined: Sun Jul 12, 2020 10:46 am
Location: Australia
Has thanked: 26 times
Been thanked: 37 times
Contact:

Re: How to block an external IP in eztables?

Post by smokey01 »

Try searching for iptables it may give you a clue.

williams2
Posts: 1069
Joined: Sat Jul 25, 2020 5:45 pm
Been thanked: 306 times

Re: How to block an external IP in eztables?

Post by williams2 »

You could try running this iptables command

iptables -I INPUT -s 192.168.0.100 -j DROP

This says to insert a rule at the top of the INPUT chain
to DROP packets from the source address 192.168.0.100

change the address to the one you want to block
(or a range of addresses)

Run the command after eztables has finished it's setup.

jamesbond
Posts: 721
Joined: Tue Aug 11, 2020 3:02 pm
Location: The Pale Blue Dot
Has thanked: 125 times
Been thanked: 409 times

Re: How to block an external IP in eztables?

Post by jamesbond »

Alternative to @williams2, add the following to eztables.cfg

deny_in 192.168.0.100 any any any

You need to restart eztables when you make changes to the configuration.

Post Reply

Return to “FatDog64”