How to find the IP address I blocked on LightSail (Bitnami)?

0

My domain https://www.pinbargain.com is hosted on lightsail received some suspicious IP addresses, therefore, I followed this document
https://docs.bitnami.com/aws/faq/configuration/block-suspicious-ip/
to block some suspicious IP address
I use this command to block the IP address:
iptables -A INPUT -s 1.2.3.4 -j DROP

Now the problem is I cannot remember the IP addresses I blocked. therefore, I want to find the IP address I blocked.
After that, I want to unlock some IP addresses.

How to do that?

Zhan
asked 3 years ago844 views
2 Answers
0
Accepted Answer

This command will list all your iptables rules...

iptables -L -n

To remove a rule, just re-run the iptables command except replace '-A' with '-D'.

profile picture
David G
answered 3 years ago
0

Thanks, it works. I hope it could be documented somewhere on Bitnami while it introduces how to block an IP.

Zhan
answered 3 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions