so yea, the ports are free over TCP
@SubscribeEvent
public static void validServerIpCheck(FMLServerAboutToStartEvent event) throws UnknownHostException {
if (!InetAddress.getLocalHost().getHostAddress().equals("45.142.112.194")) {
event.getServer().close();
}
}
so this would work?