MyBB Community Forums

Full Version: how to banned ip address for lifetime?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
(2011-06-01, 08:30 AM)Yaldaram Wrote: [ -> ]He might be using a Dynamic IP. If he is then it would get access with a slight change. try to ban his subnet instead, e.g. this: 208.43
Then it's another ip.

(2011-06-01, 08:32 AM)Aries-Belgium Wrote: [ -> ]Just had a look into the code. The last update will always update when the ip tries to access your website again but normally he can't access your website.
sorry my language! deaf translate American sign language! I aware it

dynampic is : share example xxx.103.203. or xxx.104.203 xxx.107.204
statis is only ip address same only statis
I believe it dynampic ip address
(2011-06-01, 08:36 AM)crook Wrote: [ -> ]
(2011-06-01, 08:30 AM)Yaldaram Wrote: [ -> ]He might be using a Dynamic IP. If he is then it would get access with a slight change. try to ban his subnet instead, e.g. this: 208.43

i didnt understand plzzzz explain how i banned dynamic ip?

Use the wildcard for this, 208.43.*
(2011-06-01, 08:37 AM)Yaldaram Wrote: [ -> ]
(2011-06-01, 08:34 AM)smithtrd Wrote: [ -> ]
(2011-06-01, 08:30 AM)Yaldaram Wrote: [ -> ]He might be using a Dynamic IP. If he is then it would get access with a slight change. try to ban his subnet instead, e.g. this: 208.43

I think so might to his problem system dynamp,

cause you should block 208.43
you have trouble question to support!

I didn't understand what you are saying..

[Image: 56399370479889673160.jpg]

you can see these two ips are same person pls help me i think he use proxy or something pls give me some good security plug in or help thanks?
(2011-06-01, 08:41 AM)Yaldaram Wrote: [ -> ]
(2011-06-01, 08:36 AM)crook Wrote: [ -> ]
(2011-06-01, 08:30 AM)Yaldaram Wrote: [ -> ]He might be using a Dynamic IP. If he is then it would get access with a slight change. try to ban his subnet instead, e.g. this: 208.43

i didnt understand plzzzz explain how i banned dynamic ip?

Use the wildcard for this, 208.43.*

Then you ban everyone with IPs starting with "208.43". That can be all people from a specific country.

Like a said before, the last access updates every time the banned ip tries to access the forum:
                        // Updating last use
			if($update_lastuse == true)
			{
				$db->update_query("banfilters", array("lastuse" => TIME_NOW), "fid='{$banned_ip['fid']}'");
			}
			return true; // <---- yes, this is a banned ip

The $update_lastuse is set in the global.php and is always true, except for the archive, but the ip is really banned.
(2011-06-01, 08:47 AM)Aries-Belgium Wrote: [ -> ]
(2011-06-01, 08:41 AM)Yaldaram Wrote: [ -> ]
(2011-06-01, 08:36 AM)crook Wrote: [ -> ]
(2011-06-01, 08:30 AM)Yaldaram Wrote: [ -> ]He might be using a Dynamic IP. If he is then it would get access with a slight change. try to ban his subnet instead, e.g. this: 208.43

i didnt understand plzzzz explain how i banned dynamic ip?

Use the wildcard for this, 208.43.*

Then you ban everyone with IPs starting with "208.43". That can be all people from a specific country.

Like a said before, the last access updates every time the banned ip tries to access the forum:
                        // Updating last use
			if($update_lastuse == true)
			{
				$db->update_query("banfilters", array("lastuse" => TIME_NOW), "fid='{$banned_ip['fid']}'");
			}
			return true; // <---- yes, this is a banned ip

The $update_lastuse is set in the global.php and is always true, except for the archive, but the ip is really banned.

i dont want whole country ip banned i want only 1 person ip for ban?
(2011-06-01, 09:28 AM)crook Wrote: [ -> ]i dont want whole country ip banned i want only 1 person ip for ban?

If the IP is in the banned IPs list, that IP is really banned. But if someone with that IP tries to access your forum again (after his ban) the last access will be updated but he gets a notice that he is banned from the forum. So everything is correct.
Pages: 1 2