Not really a perl question but rather a networking question....

As previously described your address 192.168.x.x is an RFC 1918 address and as such, is not routable.

Your public IP address assigned to you by your ISP is likley being translated into the RFC1918 address via a broadband gateway performing a function known as Network Address Translation or NAT. The gateway is probably configured for one-to-many NAT in that many private addresses are sharing the same public address.

The net-sum result of this is that you cannot established an unrequested session into any host on your private lan without doing one of two things.

The first would be to either get another IP address from your ISP and map this directly to the private address of your server. Alternatively, if your gateway supports it you could do port mapping if you only need to map a certain port like port 80. This would allow you to use one IP but have all http requests go to the private host as an example.

The other, and IMHO the best alternative would be to use IPSEC to establish a VPN session into your private network.

At any rate, you have some reading to do...good luck


In reply to Re: Sending a Signal to a computer inside an intranet by phydeauxarff
in thread Sending a Signal to a computer inside an intranet by cavalive

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.