How to connect to a remote server???

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • narenshines
    New Member
    • Jan 2008
    • 5

    How to connect to a remote server???

    Can anyone tell me how to connect a remote server in perl...




    Thanks in advance
  • numberwhun
    Recognized Expert Moderator Specialist
    • May 2007
    • 3467

    #2
    Originally posted by narenshines
    Can anyone tell me how to connect a remote server in perl...




    Thanks in advance
    That depends. How do you want to connect to it? Telnet? SSH? Your question leaves a lot of open gaps. Why not try Googling what you want, get some ideas and write some code. Then, if you get stuck, post the code here and we will help you.

    Regards,

    Jeff

    Comment

    • narenshines
      New Member
      • Jan 2008
      • 5

      #3
      I want to use Telnet..how can i do it??

      Comment

      • numberwhun
        Recognized Expert Moderator Specialist
        • May 2007
        • 3467

        #4
        Originally posted by narenshines
        I want to use Telnet..how can i do it??
        Whenever you want to do something, it is always a good idea to search CPAN for a module that does what you want. If you searched for Telnet, you would find the Net::Telnet module. Check it out.

        Regards,

        Jeff

        Comment

        Working...