From: "HELP!" on
now I have been able to telnet to the server IP but it defaulting to port 23
instead of the port I specified ( telnet ip port). How do u correct this
problem

On Wed, May 27, 2009 at 2:40 PM, Daniel Brown <danbrown(a)php.net> wrote:

> On Wed, May 27, 2009 at 09:08, Stuart <stuttle(a)gmail.com> wrote:
> >
> > There's like 37 different things it could be, none of which have
> > anything to do with PHP. You may find someone on this list willing to
> > help you out, but your better bet would be to find a list more suited
> > to the problem.
>
> I will help.
>
> Step 1: RTFM [1]
> Step 2: STFW [2]
> Step 3: Follow the advice Stuart already gave you and speak with a
> network tech.
> Step 4: Try restarting Apache (if you can), in case the DNS was
> changed recently.
> Step 5: Re-query the list with more information, if needed, and
> don't top-post.
> Step 6: If still unresolved, give up. [3]
>
> ^1: http://php.net/stream-socket-client
> ^2:
> http://google.com/search?q=php_network_getaddresses:+getaddrinfo+failed:+No+such+host+is+known
> ^3: http://asia.cnet.com/i/r/2005/gb/mar/funkey_b1.jpg
>
> --
> </Daniel P. Brown>
> daniel.brown(a)parasane.net || danbrown(a)php.net
> http://www.parasane.net/ || http://www.pilotpig.net/
> 50% Off All Shared Hosting Plans at PilotPig: Use Coupon DOW10000
>



--
www.bemycandy.com
From: Nathan Nobbe on
On Thu, May 28, 2009 at 2:31 AM, HELP! <izoduwa(a)gmail.com> wrote:

> now I have been able to telnet to the server IP but it defaulting to port
> 23
> instead of the port I specified ( telnet ip port). How do u correct this
> problem


rtfm telnet

translates to

man telnet

which says

telnet host port

so put the port after the hostname ;)

-nathan
From: "HELP!" on
I have done that.

o host port
or
telnet host port

On Thu, May 28, 2009 at 9:39 AM, Nathan Nobbe <quickshiftin(a)gmail.com>wrote:

> On Thu, May 28, 2009 at 2:31 AM, HELP! <izoduwa(a)gmail.com> wrote:
>
>> now I have been able to telnet to the server IP but it defaulting to port
>> 23
>> instead of the port I specified ( telnet ip port). How do u correct this
>> problem
>
>
> rtfm telnet
>
> translates to
>
> man telnet
>
> which says
>
> telnet host port
>
> so put the port after the hostname ;)
>
> -nathan
>
>


--
www.bemycandy.com
From: Nathan Nobbe on
On Thu, May 28, 2009 at 2:40 AM, HELP! <izoduwa(a)gmail.com> wrote:

> I have done that.
>
> o host port
> or
> telnet host port
>

thats pretty odd.. a quick test on my box, looks like it works fine,

phdelnnobbe:~ nnobbe$ telnet host 22
Trying xx.xx.xx.xx...
Connected to host.
Escape character is '^]'.
SSH-2.0-OpenSSH_4.5

again, you may want to consult the docs on your system to hunt down the
issue..

-nathan