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?
Another login problem, kinda weird i might say.
Forum rules
READ NOW: L2j Forums Rules of Conduct
READ NOW: L2j Forums Rules of Conduct
-
- Advanced User
- Posts: 1440
- Joined: Wed Apr 15, 2009 10:07 am
- goncafa
- Posts: 385
- Joined: Thu Aug 05, 2010 2:10 pm
- Location: Santiago, Chile
Re: Another login problem, kinda weird i might say.
Have you open ports for server on your iptables?
Best Regards
PS: im sorry my bad english.

PS: im sorry my bad english.

-
- Advanced User
- Posts: 1440
- Joined: Wed Apr 15, 2009 10:07 am
Re: Another login problem, kinda weird i might say.
Firewall is off, unless iptables have nothing to do with it.
- goncafa
- Posts: 385
- Joined: Thu Aug 05, 2010 2:10 pm
- Location: Santiago, Chile
Re: Another login problem, kinda weird i might say.
Even your firewall is of, you need open ports on iptables.
Best Regards
PS: im sorry my bad english.

PS: im sorry my bad english.

-
- Advanced User
- Posts: 1440
- Joined: Wed Apr 15, 2009 10:07 am
Re: Another login problem, kinda weird i might say.
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.
-
- Posts: 458
- Joined: Fri Oct 05, 2007 1:29 am
Re: Another login problem, kinda weird i might say.
sudo apt-get install ufw
ufw help
should be ufw allow port
ufw help
should be ufw allow port
-
- Advanced User
- Posts: 1440
- Joined: Wed Apr 15, 2009 10:07 am
Re: Another login problem, kinda weird i might say.
still nothing.
- goncafa
- Posts: 385
- Joined: Thu Aug 05, 2010 2:10 pm
- Location: Santiago, Chile
Re: Another login problem, kinda weird i might say.
Add following lines on iptables files.
/etc/sysconfig/iptables
then you restart ipdatables:
/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
Code: Select all
service iptables restart
Best Regards
PS: im sorry my bad english.

PS: im sorry my bad english.

-
- Advanced User
- Posts: 1440
- Joined: Wed Apr 15, 2009 10:07 am
Re: Another login problem, kinda weird i might say.
Thanks that worked.goncafa wrote:Add following lines on iptables files.
/etc/sysconfig/iptablesthen you restart ipdatables: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
Code: Select all
service iptables restart