Announcement

Collapse
No announcement yet.

How do I open a couple of ports?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • How do I open a couple of ports?

    I'd like to open two ports on my PC at work (so that they think I have some stupid monitoring programs open).

    I just need to open them and make them "listen".

    What's the safest/least taxing program I could run to accomplish this?

  • #2
    Just start up some server with a login, and give it a non-standard port. I think the safest would probably be cygwin-ssh. You could also tell an FTP server to start up on whatever port.
    Gigabyte P35-DS3L with a Q6600, 2GB Kingston HyperX (after *3* bad pairs of Crucial Ballistix 1066), Galaxy 8800GT 512MB, SB X-Fi, some drives, and a Dell 2005fpw. Running WinXP.

    Comment


    • #3
      I was thinking of ftp, but I didn't know if it was the safest way to go.

      I have cygwin on this PC...how do i start the ssh server and specify the ports?

      Comment


      • #4
        ssh-host-config should get you started.
        Gigabyte P35-DS3L with a Q6600, 2GB Kingston HyperX (after *3* bad pairs of Crucial Ballistix 1066), Galaxy 8800GT 512MB, SB X-Fi, some drives, and a Dell 2005fpw. Running WinXP.

        Comment


        • #5
          It guided me through, but there was nothing about ports.

          Comment


          • #6
            Any easier ideas on opening another port? I'd rather not install an FTP program...and even if I did, it would have to listen on TWO ports.

            Comment


            • #7
              And odds are they'd STILL know you're not running their program. Sorry, dude.
              The Internet - where men are men, women are men, and teenage girls are FBI agents!

              I'm the least you could do
              If only life were as easy as you
              I'm the least you could do, oh yeah
              If only life were as easy as you
              I would still get screwed

              Comment


              • #8
                Someone on the other side told me they just looked for opened listening ports.

                Comment


                • #9
                  I think I have a solution...

                  Comment


                  • #10
                    ...how about the rsh command built into xp (..type rsh /?)

                    cc

                    Comment


                    • #11
                      You could just use telnet and specify a port number.

                      O:\>telnet 127.0.0.1 92
                      Connecting To 127.0.0.1...Could not open connection to the host, on port 92: Con
                      nect failed

                      Of course, you'd need to setup a telnet server to accept connections on that port. You could use any TCP program that allows you to use different ports as long at it connects, it will open that port.
                      Ladies and gentlemen, take my advice, pull down your pants and slide on the ice.

                      Comment


                      • #12
                        nc -l -p #### works like a champ.

                        Now I just need to figure out how to hide these cmd.exe windows.

                        Comment


                        • #13
                          Got it...to start it without a window...

                          nc -L -d -p ####

                          Figured it out by reading

                          Comment

                          Working...
                          X