This is not a Support area! Discuss about the Server here. Non-Server related discussion goes in
Off-Topic Discussion.
-
maxstyleboy
- Posts: 183
- Joined: Thu Jul 15, 2010 12:26 am
Post
by maxstyleboy »
LoginServer the works for a few seconds and crash.
What should I do to LoginServer work with Hyperfilter?

-
maxstyleboy
- Posts: 183
- Joined: Thu Jul 15, 2010 12:26 am
Post
by maxstyleboy »
I believe that is the number of requests from a single IP(proxy hyperfilter), but I changed the settings and nothing worked.
no error happens, just can not connect.
-
Konstantinos
- Posts: 501
- Joined: Wed Feb 08, 2012 12:19 pm
Post
by Konstantinos »
i had this problem after few logins none can connect and no error so i change protection and all ok.
-
maxstyleboy
- Posts: 183
- Joined: Thu Jul 15, 2010 12:26 am
Post
by maxstyleboy »
protection which you are using?
-
maxstyleboy
- Posts: 183
- Joined: Thu Jul 15, 2010 12:26 am
Post
by maxstyleboy »
Hyperfilter is better, currently use cisco, and no block great attacks.
-
Konstantinos
- Posts: 501
- Joined: Wed Feb 08, 2012 12:19 pm
Post
by Konstantinos »
y i saw that stable

anyway gl bro.
-
Genoxide
- Posts: 22
- Joined: Sun Jan 31, 2010 3:15 pm
Post
by Genoxide »
I have the same problem what is the solution?
-
UnAfraid
- L2j Veteran

- Posts: 4199
- Joined: Mon Jul 23, 2007 4:25 pm
- Location: Bulgaria
-
Contact:
Post
by UnAfraid »
It isnt crashing but IPv4Filter is blocking connections because all they are comming from a single IP so u gotta disable it..
-
maxstyleboy
- Posts: 183
- Joined: Thu Jul 15, 2010 12:26 am
Post
by maxstyleboy »
Problem Solved.
IPv4Filter.java
Code: Select all
if (f != null) { if (f.trys == -1) { f.lastAccess = current;- return false;+ return true; } if ((f.lastAccess + 1000) > current) { f.lastAccess = current; if (f.trys >= 3) { f.trys = -1;- return false;+ return true; }
-
UnAfraid
- L2j Veteran

- Posts: 4199
- Joined: Mon Jul 23, 2007 4:25 pm
- Location: Bulgaria
-
Contact:
Post
by UnAfraid »
maxstyleboy wrote:Problem Solved.
IPv4Filter.java
Code: Select all
if (f != null) { if (f.trys == -1) { f.lastAccess = current;- return false;+ return true; } if ((f.lastAccess + 1000) > current) { f.lastAccess = current; if (f.trys >= 3) { f.trys = -1;- return false;+ return true; }
That's not what i ment

-
babyjason
- Posts: 575
- Joined: Wed Dec 02, 2009 7:59 pm
Post
by babyjason »
how exactly to turn off ipv4 filtering on windows server 2008 ? plz help
-
UnAfraid
- L2j Veteran

- Posts: 4199
- Joined: Mon Jul 23, 2007 4:25 pm
- Location: Bulgaria
-
Contact:
Post
by UnAfraid »
OS doesn't matters its on the login and game server sources..