Another login problem, kinda weird i might say.

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
JMD
Advanced User
Advanced User
Posts: 1440
Joined: Wed Apr 15, 2009 10:07 am

Another login problem, kinda weird i might say.

Post by JMD »

If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision: 4763
L2JDP Revision: 8210

So i got this laptop and decided to use it as my test server enviroment. I installed ubuntu on it, i setted up the server and everything went perfect.

Server is running smoothly (was previously on my windows machine). I can pass the login screen but i get stuck on server selection.

I said its the firewall, i disabled it but the problem persist. It's bugging me cause it should have worked.

Any ideas?
User avatar
goncafa
Posts: 385
Joined: Thu Aug 05, 2010 2:10 pm
Location: Santiago, Chile

Re: Another login problem, kinda weird i might say.

Post by goncafa »

Have you open ports for server on your iptables?
Best Regards

PS: im sorry my bad english.
Image
JMD
Advanced User
Advanced User
Posts: 1440
Joined: Wed Apr 15, 2009 10:07 am

Re: Another login problem, kinda weird i might say.

Post by JMD »

Firewall is off, unless iptables have nothing to do with it.
User avatar
goncafa
Posts: 385
Joined: Thu Aug 05, 2010 2:10 pm
Location: Santiago, Chile

Re: Another login problem, kinda weird i might say.

Post by goncafa »

Even your firewall is of, you need open ports on iptables.
Best Regards

PS: im sorry my bad english.
Image
JMD
Advanced User
Advanced User
Posts: 1440
Joined: Wed Apr 15, 2009 10:07 am

Re: Another login problem, kinda weird i might say.

Post by JMD »

Any idea how to do it on the new ubuntu 11.04? Beacuase it doesnt accept the "dport" on my command, says different protocol, i googled but nothing.
blacksea
Posts: 458
Joined: Fri Oct 05, 2007 1:29 am

Re: Another login problem, kinda weird i might say.

Post by blacksea »

sudo apt-get install ufw
ufw help
should be ufw allow port
JMD
Advanced User
Advanced User
Posts: 1440
Joined: Wed Apr 15, 2009 10:07 am

Re: Another login problem, kinda weird i might say.

Post by JMD »

still nothing.
User avatar
goncafa
Posts: 385
Joined: Thu Aug 05, 2010 2:10 pm
Location: Santiago, Chile

Re: Another login problem, kinda weird i might say.

Post by goncafa »

Add following lines on iptables files.

/etc/sysconfig/iptables

Code: Select all

-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 2106 -j ACCEPT-A RH-Firewall-1-INPUT -m state --state NEW -m udp -p udp --dport 2106 -j ACCEPT-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 7777 -j ACCEPT-A RH-Firewall-1-INPUT -m state --state NEW -m udp -p udp --dport 7777 -j ACCEPT 
then you restart ipdatables:

Code: Select all

service iptables restart
Best Regards

PS: im sorry my bad english.
Image
JMD
Advanced User
Advanced User
Posts: 1440
Joined: Wed Apr 15, 2009 10:07 am

Re: Another login problem, kinda weird i might say.

Post by JMD »

goncafa wrote:Add following lines on iptables files.

/etc/sysconfig/iptables

Code: Select all

-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 2106 -j ACCEPT-A RH-Firewall-1-INPUT -m state --state NEW -m udp -p udp --dport 2106 -j ACCEPT-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 7777 -j ACCEPT-A RH-Firewall-1-INPUT -m state --state NEW -m udp -p udp --dport 7777 -j ACCEPT 
then you restart ipdatables:

Code: Select all

service iptables restart
Thanks that worked.
Post Reply