opened port?

Results 1 to 7 of 7
  1. #1
    Don't Ask About Tideborn vixio_dv is offline
    MemberRank
    Feb 2010 Join Date
    UKLocation
    774Posts

    opened port?

    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)




  2. #2
    [B]aSH nofxpunkerbrian is offline
    MemberRank
    Apr 2009 Join Date
    1,151Posts

    Re: opened port?

    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?

  3. #3
    Don't Ask About Tideborn vixio_dv is offline
    MemberRank
    Feb 2010 Join Date
    UKLocation
    774Posts

    Re: opened port?

    Quote Originally Posted by nofxpunkerbrian View Post
    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?
    all cause firewall? my server using ubuntu
    what effect when all port open? like gacd, logservice, map and others?
    and how to block all port except 29000?

  4. #4
    Apprentice demonniiak is offline
    MemberRank
    Apr 2010 Join Date
    13Posts

    Re: opened port?

    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

  5. #5
    Nerd-IO Romulan is offline
    MemberRank
    Feb 2009 Join Date
    BelgiumLocation
    3,333Posts

    Re: opened port?

    Quote Originally Posted by vixio_dv View Post
    all cause firewall? my server using ubuntu
    what effect when all port open? like gacd, logservice, map and others?
    and how to block all port except 29000?
    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 !!!

  6. #6
    Don't Ask About Tideborn vixio_dv is offline
    MemberRank
    Feb 2010 Join Date
    UKLocation
    774Posts

    Re: opened port?

    Quote Originally Posted by Romulan View Post
    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 !!!
    like this?

    Code:
    type			=	tcp
    port			=	29702
    address			=	127.0.0.1
    so_sndbuf		=	16384
    so_rcvbuf		=	16384
    ibuffermax      =   1638400
    obuffermax      =   1638400
    accumulate      =   1638400

  7. #7
    Nerd-IO Romulan is offline
    MemberRank
    Feb 2009 Join Date
    BelgiumLocation
    3,333Posts

    Re: opened port?

    Sample for GLINKD:
    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
    
    ...
    Sample for GDELIVERYD:
    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
    
    ...
    OTHERS .CONF FILES:
    Code:
    address			=	127.0.0.1
    Last edited by Romulan; 20-08-10 at 04:20 PM.



Advertisement