menu search
brightness_auto
Ask or Answer anything Anonymously! No sign-up is needed!
more_vert
Any response is appreciated. Thank you. 

2 Answers

more_vert
You can use firewall  tools like iptables or UFW to block unauthorized connections or IP addresses on a Linux computer  . Configure rules to deny incoming traffic from specific IP addresses.
thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike
more_vert
To block unauthorized connection or IP address from accessing a LInex computer, you can use a firewall.

The most common firewall tool used in linux distributions is iptables, although some distributions might also user firewalled. Here's a basic guide using iptables:

1. Identify the IP address to block.

2. Setup rules with iptables 

     sudo iptables - A INPUT - s<IP_Address> -j DROP

3. Save the iptables rules.

4. Testing.
thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike
Welcome to Answeree, where you can ask questions and receive answers from other members of the community.
...