Joe's guide to testing network connections:
  1. Figure out which port you're trying to connect to.
  2. Make sure the port's open (netstat in unix, I have no idea in windows)
  3. Connect to the port from the target machine on loopback
  4. Connect to the port, from the target machine, on the external ip
  5. Connect to the port from a remote machine, using the target machine's IP address
  6. Connect to the port from a remote machine, using the FQDN.
  7. Attempt to use whatever automated scripts, local to the target machine
  8. Attempt to use whatever automated script from the remote machine.

Based on how far you get before failing, you can get some idea what might be wrong --

  1. (nothing should fail at this point)
  2. The daemon's not running, or whatever needs to be listening
  3. ditto, or it's not listening on loopback (not all do)
  4. It's not listening on the external IP
  5. it's firewalled off, or tcp wrapped, etc.
  6. DNS isn't set up correctly on the remote machine, or the FQDN isn't in DNS
  7. The script may be flawed, or misconfigured.
  8. Ditto, but on a different machine.

Some protocols are trickier to pin down, especially if they result in the remote server connecting back to client (eg, FTP in active mode). I have no idea how TieRegistry works, so it may not have these sorts of issues.


In reply to Re: Remote access to windows machine by jhourcle
in thread Remote access to windows machine by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.