anyone try all opened port when we open from browser it got blank page, i have try to some server, and yes i got blank page to, but some chinese server port not opened., its say unable connect. why?
example : http://serverip:29702 (blank page)
![]()
anyone try all opened port when we open from browser it got blank page, i have try to some server, and yes i got blank page to, but some chinese server port not opened., its say unable connect. why?
example : http://serverip:29702 (blank page)
![]()
check to see the position in the firewall it could be after something that stops port access.
ufw insert NUM allow from any to any port 29702 proto tcp
thats ubuntu one im not sure what system ur using, maybe since its using apache restart tht service?
hello , go to http://192.168.1.1 (router)
and go to network tabs
--->NAT TABS
and put your port and yout server ip
and reboot your router
tell me if it worked
Demonniiak
PS: sorry for my bad english, im french
Put the local ip (127.0.0.1) for every .conf files of the server.
Except for some configuration for gdeliveryd.conf and for glinkd.conf wich you should put 0.0.0.0
29000:0.0.0.0 mean your server will listen on all network interfaces for clients incoming connection.
Other important address of others services must be 127.0.0.1 !!!
Sample for GLINKD:
Sample for GDELIVERYD:Code:[GLinkServer1] type = tcp port = 29000 address = 0.0.0.0 so_sndbuf = 12288 so_rcvbuf = 12288 ibuffermax = 16384 obuffermax = 65536 tcp_nodelay = 0 listen_backlog = 10 accumulate = 131072 max_users = 3000 halflogin_users = 6000 sender_interval = 200000 accumu_packets = 32768 mtrace = /tmp/m_trace.link compress = 0 close_discard = 1 urgency_support = 1 version = 10402 ...
OTHERS .CONF FILES:Code:... [GDeliveryServer] zoneid=1 aid=1 freeaid=1 zondname = zone1 max_player_num = 1000 type = tcp port = 29100 address = 0.0.0.0 so_sndbuf = 65536 so_rcvbuf = 65536 ibuffermax = 1048576 obuffermax = 1048576 tcp_nodelay = 0 listen_backlog = 10 accumulate = 1048576 mtrace = /tmp/m_trace.link table_name = filters name_charset = ASCII table_charset = ASCII pvp=1 battlefield=1 sellpoint=1 freecreatime=1 ... [GProviderServer] id = 0 type = tcp port = 29300 address = 0.0.0.0 so_sndbuf = 65536 so_rcvbuf = 65536 ibuffermax = 1048576 obuffermax = 1048576 ;so_broadcast = 1 tcp_nodelay = 0 accumulate = 268435456 ...
Code:address = 127.0.0.1
Last edited by Romulan; 20-08-10 at 04:20 PM.