- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- telnet string for putty shortcut
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2007 10:31 PM
01-18-2007 10:31 PM
If i create a shortcut on desktop of putty.exe to connect to a ssh server. I give in target string of shortcut as "C:\Desktop\putty.exe" -ssh -l
What must be given IF i connect using telnet protocol ?
THANKS
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2007 10:37 PM
01-18-2007 10:37 PM
Re: telnet string for putty shortcut
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2007 10:43 PM
01-18-2007 10:43 PM
Re: telnet string for putty shortcut
Yes, I do not want to give login/password. Please suggest what must be there in .rhosts file on target server?
THANKS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2007 12:24 AM
01-19-2007 12:24 AM
SolutionIf you use rlogin protocol, then you can use .rhosts file on the target server.
The .rhosts file format description is available with "man rhosts" on any HP-UX.
Briefly, each line contains either a hostname and an username or just a hostname.
For example, if the server user "suser" has the following line in his .rhosts file:
workstation.company.example someuser
it means that someone that connects using rlogin protocol from workstation.company.example and is named "someuser" will be logged on as "suser" on the server, _without typing the password_.
Using PuTTY, you can then connect to suser account on the server from workstation.company.example by:
putty -rlogin suser@server
If the .rhosts file contains just the hostname, the username on the source host (workstation) should match the username on the destination host (server).
Since the usernames on Microsoft Windows workstations are not necessarily compatible with Unix-style usernames, it is likely that the server cannot meaningfully check the workstation user's username. The server can only trust what the client says, and the workstation's owner can make his client lie.
In effect, anyone who can hijack workstation.company.example's IP address can use rlogin to connect like the legitimate user: this is why rlogin is not secure.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2007 06:04 AM
01-19-2007 06:04 AM
Re: telnet string for putty shortcut
Volker