- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: telnet protocol
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
11-11-2004 11:01 PM
11-11-2004 11:01 PM
telnet protocol
how sould i reply to this to continue the negotiation , in order to authenticate and send commands trought tcp/ip
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2004 11:13 PM
11-11-2004 11:13 PM
Re: telnet protocol
get ssh and make your life easier: http://www.software.hp.com/portal/swdepot/displayProductInfo.do?productNumber=T1471AA
It's FREE!
live free or die
harry d brown jr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2004 12:36 AM
11-12-2004 12:36 AM
Re: telnet protocol
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2004 12:48 AM
11-12-2004 12:48 AM
Re: telnet protocol
live free or die
harry d brown jr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2004 12:52 AM
11-12-2004 12:52 AM
Re: telnet protocol
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2004 01:05 AM
11-12-2004 01:05 AM
Re: telnet protocol
Do you want oracle to telnet out to your voicemail system?
or
Do you want your voicemail system to telnet to your system that is running oracle?
live free or die
harry d brown jr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2004 01:14 AM
11-12-2004 01:14 AM
Re: telnet protocol
The protocol is straightforward if you take a close look at it. I don't know it by head, but the Linux code should serve you well, I guess.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2004 03:25 AM
11-12-2004 03:25 AM
Re: telnet protocol
send_wont(socket,TELOPT_ENV);
recebeopt(socket);
send_wont(socket,TELOPT_TTYPE);
recebeopt(socket);
send_wont(socket,TELOPT_TERMSPEED);
recebeopt(socket);
send_wont(socket, TELOPT_BINARY);
send_will(socket, TELOPT_ECHO);
Sleep(2);
send(socket,"pdinis\r\n",10,0);
Sleep(2);
recebeopt(socket);
send_wont(socket, TELOPT_BINARY);
send_will(socket, TELOPT_ECHO);
Sleep(2);
send(socket,"password\r\n",12,0);
Sleep(2);
recebeopt(socket);
send_wont(socket, TELOPT_BINARY);
send_will(socket, TELOPT_ECHO);
Sleep(40);
send(socket, "cd;pwd;mkdir trotinete\r\n",26,0);
send_wont(socket, TELOPT_BINARY);
i have this i can log to the system but can´t create a directory (testing)
i have this message when i log in
"Last successfull login was .... waiting for disk quota checking"