- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- accesing printer's attached to DTC16RX port from n...
Operating System - HP-UX
1820044
Members
3165
Online
109608
Solutions
Forums
Categories
Company
Local Language
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Discussions
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- 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
03-27-2001 11:14 PM
03-27-2001 11:14 PM
Is it possible to acess printer (attached to DTC-16RXprinter port) from non-HP-UX systems?
If yes how can I do this?
- should I use rcp command (remonte copy) to send files to be printed directly to DTC port or is it other way. (In others non-HP terminalserver?s e.g. JetStream, Chase IOLan ? I can do this by using following command:
rcp file_to_be_printed TS_IP_address:TS_printer_port
(* TS - terminal server)
- can I send files to be printed directly to DTC unit (printer port) or is it possible only via HP-UX software (ddfa).
Default DTC Network Manager is installed on HP-UX 10.20.
If yes how can I do this?
- should I use rcp command (remonte copy) to send files to be printed directly to DTC port or is it other way. (In others non-HP terminalserver?s e.g. JetStream, Chase IOLan ? I can do this by using following command:
rcp file_to_be_printed TS_IP_address:TS_printer_port
(* TS - terminal server)
- can I send files to be printed directly to DTC unit (printer port) or is it possible only via HP-UX software (ddfa).
Default DTC Network Manager is installed on HP-UX 10.20.
Solved! Go to Solution.
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2001 08:06 AM
03-28-2001 08:06 AM
Solution
Here is a perl script (which should run on any Un*x). Each DTC port has a telnet port# associated to it (see line setting $ip_portno for forumla), and by using the "Telnet" class within perl, I can send data down to that port.
use Net::Telnet ();
$dtcip="192.16.0.80"; # DTC ip address
$board=1;
$portonboard=1;
$ip_portno=(32*$board + $portonboard + 1)*256 + 23
$remote = new Net::Telnet (Timeout => 15, Errmode => 'die');
$remote->open(Host=>$dtcip,Port=>$ip_portno);
$remote->print("TEST LINE TO PRINTER ON DTC PORT");
$remote->close;
use Net::Telnet ();
$dtcip="192.16.0.80"; # DTC ip address
$board=1;
$portonboard=1;
$ip_portno=(32*$board + $portonboard + 1)*256 + 23
$remote = new Net::Telnet (Timeout => 15, Errmode => 'die');
$remote->open(Host=>$dtcip,Port=>$ip_portno);
$remote->print("TEST LINE TO PRINTER ON DTC PORT");
$remote->close;
There be dragons...
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Learn About
News and Events
Support
© Copyright 2025 Hewlett Packard Enterprise Development LP