Jump to content
  • 0

Help [GameServer Problem]


Question

Posted

Hi,today when I looked in game server i saw

 

Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.2

 

This makes me a big lag,what can I do to stop? pls help me

Recommended Posts

  • 0
Posted

Hi,today when I looked in game server i saw

 

Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.27.38] disconnected abnormally.
Client [iP: 188.24.2

 

This makes me a big lag,what can I do to stop? pls help me

this means someone is attacking/ddosing your server with a program, to fix it block this ip if you have linux or add java protections against this programs..

  • 0
Posted

can u help me with java code?

i dont know exactly what this attacker is, i think is l2j attacker.. search in forum, somewhere is posted

  • 0
Posted

Where can I get IPv4Filter for interlude?

 

here is mine for interlude

 

/* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
* http://www.gnu.org/copyleft/gpl.html
*/

package net.sf.l2j.gameserver.util;

import java.net.InetAddress;
import java.nio.channels.SocketChannel;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map.Entry;

import com.l2jserver.mmocore.network.IAcceptFilter;

/**
* Formatted Forsaiken's IPv4 filter [DrHouse]
* 
* @Reworked by Adryan
*
*/
public class IPv4Filter implements IAcceptFilter, Runnable
{
private HashMap<Integer, Flood> _ipFloodMap;
private static final long SLEEP_TIME = 5000;

public IPv4Filter()
{
	_ipFloodMap = new HashMap<Integer, Flood>();
	Thread t = new Thread(this);
	t.setDaemon(true);
	t.start();
}
/**
 * 
 * @param ip
 * @return
 */
private static final int hash(byte[] ip)
{
	return ip[0] & 0xFF | ip[1] << 8 & 0xFF00 | ip[2] << 16 & 0xFF0000 | ip[3] << 24 & 0xFF000000;
}

protected static final class Flood
{
	long lastAccess;
	int trys;

	Flood()
	{
		lastAccess = System.currentTimeMillis();
		trys = 0;
	}
}

public boolean accept(SocketChannel sc)
{
	InetAddress addr = sc.socket().getInetAddress();
	int h = hash(addr.getAddress());

	long current = System.currentTimeMillis();
	Flood f;
	synchronized (_ipFloodMap)
	{
		f = _ipFloodMap.get(h);
	}
	if (f != null)
	{
		if (f.trys == -1)
		{
			f.lastAccess = current;
			return false;
		}

		if (f.lastAccess + 1000 > current)
		{
			f.lastAccess = current;

			if (f.trys >= 3)
			{
				f.trys = -1;
				return false;
			}

			f.trys++;
		}
		else
		{
			f.lastAccess = current;
		}
	}
	else
	{
		synchronized (_ipFloodMap)
		{
			_ipFloodMap.put(h, new Flood());
		}
	}

	return true;
}

public void run()
{
	while (true)
	{
		long reference = System.currentTimeMillis() - (1000 * 300);
		ArrayList<Integer> toRemove = new ArrayList<Integer>(50);

		synchronized (_ipFloodMap)
		{
			for (Entry<Integer, Flood> e : _ipFloodMap.entrySet())
			{
				Flood f = e.getValue();
				if (f.lastAccess < reference)
					toRemove.add(e.getKey());
			}
		}

		synchronized (_ipFloodMap)
		{
			for (Integer i : toRemove)
			{
				_ipFloodMap.remove(i);
			}
		}

		try
		{
			Thread.sleep(SLEEP_TIME);
		}
		catch (InterruptedException e)
		{

		}
	}
}

}

  • 0
Posted

There are different protections,for l2jserver?

Please post the codes..or link something...

maybe 1 more for l2j attacker but with this ipv4filter you are safe from this... btw you are not safe from all ddos programs.. you will never be... you can restrict most of them with firewall rooter or other java programs... depends what the ddos program is

  • 0
Posted

ok, i have router and firewall protection,but I can not give me it down, but lag is small.. as in many players have lag its s***s :|

 

my conexion for internet its guaranteed to not decrease

  • 0
Posted

ok, i have router and firewall protection,but I can not give me it down, but lag is small.. as in many players have lag its s***s :|

no no you didnt understand, i am talking about firewall router... not about firewall + router... everyone have these

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • https://l2avokado.com/ Hello everyone,   After some time of development, we've decided to open L2Avokado to the public in its current development stage. We're looking for players who enjoy Interlude and would like to help shape the project before its official release.   This isn't a "launch" announcement. Instead, we're inviting the community to log in, explore the server, test the systems we've built, and provide honest feedback. Whether it's bug reports, balance suggestions, progression ideas, or quality-of-life improvements, we'd love to hear them.   Our goal has always been to create an Interlude server that feels familiar while offering a fresh progression experience. We've intentionally avoided custom weapons, armor, and client modifications. Instead, we've focused on redesigning progression through reworked hunting grounds, quests, crafting, and gameplay systems while remaining compatible with a clean Interlude client.   At this stage, the core progression path has been implemented, including the main hunting grounds, quests, custom systems, and events. However, as the project is still under active development, there will inevitably be bugs, balance issues, and areas that require further polishing.   This is exactly why we'd like your help.   We're looking for players who are willing to: Test gameplay and progression. Report bugs and exploits. Suggest balance improvements. Share ideas for new features or quality-of-life changes. Help us build a server that the community genuinely enjoys playing.   The Client and System downloads are already available on our website, so you can jump straight into the game. We're also working on a dedicated launcher that will simplify installation and future updates.   If you're interested in helping develop a unique Interlude project and want your feedback to genuinely influence the direction of the server, we'd love to have you with us.   We look forward to seeing you in-game and hearing your thoughts on Discord. https://l2avokado.com/
    • IAM one of customers of this project. Have anti cheat, have user panel everything is working. Blocking adrenaline trashy plans without any problems.  So just GL for all lin2 project. I get support every time I need it. 
    • La2Tools — Lineage 2 Texture Package Editor La2Tools is a modern tool designed for viewing and editing Lineage 2 client texture packages (.utx / .ugx). It is completely self-contained—no Java installation is required, as everything is already bundled inside. It supports both classic clients (Prelude to Interlude) and modern versions (Kamael+, Essence). Key Features  Package Browser Tabbed Interface: Open and work with multiple packages simultaneously. Dual View Modes: Switch between a tile view with previews and a detailed table view. Organization: Grouping and live filtering by name. UI Themes: Dark and light theme support. Animation Grouping Mode: Condenses frame sequences into a single tile with an animated preview. Split9 Indicators: Textures utilizing Split9 display a blue layout grid directly on the preview (just like in UnrealEd).  Texture Editing UnrealEd-style Property Dialog: Access all categories (Animation, Material, Quality, Split9, Surface, Texture) with editable parameters. Live Preview: Zoom from 25% to 800%, choose backgrounds (checkerboard, black, or white), and view real-time Split9 grid updates. Full-Size Rendering: Previews textures exactly as they appear in-game—rendered via Split9 (9-slice), Stretch, or tiling. Clipboard Actions: Copy, cut, and paste textures between different packages. Batch Adjustments: Copy and paste parameters from one texture to multiple items at once. Animation Creator: Generate animations from selected frames, complete with FPS and looping settings. Management & Compression: Rename with group modification, batch delete, and compress into RGBA8, DXT1, DXT3, or DXT5. "Open In..." Feature: Edit textures or GFX files in any external editor (Photoshop, Paint.NET, GIMP). Once saved, changes are automatically pulled back into the package while preserving all original parameters.  Import & Export Native Formats: Import DDS, TGA, BMP, and GFX directly; PNG, JPG, and GIF are converted automatically. GIF Engine: GIF files are automatically imported as ready-to-use animations (frames + AnimNext chain). Batch Import: Includes custom settings, mipmap generation, Alpha/Masked flags, and Detail Hack. Smart Replace: The "Preserve original texture parameters" option keeps Split9, animations, and clamps intact when overwriting. Mass Export: Export selected items, the current group, or the entire package. Drag & Drop: Drag files into the browser to import, or drag textures out to Windows Explorer to export. 🛠 Package Management Formats Supported: Old (Prelude — Interlude) and New (Kamael+ / Essence). One-Click Conversion: Seamlessly convert package formats between Old ⇄ New. Creation: Build new packages in any supported format from scratch. Encryption: Supports Lineage2Ver121 encryption (toggleable in package settings). Safe Editing: Works on a temporary copy with full undo/redo history (Ctrl+Z / Ctrl+Shift+Z) and a single "Save" button to apply changes. 🖥 System Integration File Associations: Open .utx / .ugx files with a double-click directly from Windows Explorer (registered during installation). Single Instance: Opening a new file adds it as a tab in the already running window. Multilingual UI: Automatically detects system language (supports EN, RU, UK, ES, PT, EL, KO, VI, ZH). Specifications & Requirements Supported Formats Packages: UTX, UGX Textures: RGBA8, DXT1, DXT3, DXT5, G16, P8 Resources: GFX (Scaleform) System Requirements OS: Windows Java: Not required (pre-bundled with the application). Installation & Downloads Run La2Tools-3.0.3_setup.exe — the installer will create shortcuts and register file associations. Alternatively, you can use the portable version.  Download (Installer) |  Download (Portable)
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..