0

I am trying to send a print command to a printer via telnet.

Normally I would send it to telnet://printer125:9100

but I am not able to access the printer directly. server admin indicated that I need to go though the print server. \server1.domain.com\printer125

what is the correct syntax to reach printer printer125 on server1.domain.com

is it something like this?

telnet://server1.domain.com:9100/printer125

4
  • 1
    does your admin know that you are trying to use telnet to print? looks like they gave you a windows file and print sharing path, not somthing you can use via telnet. Commented Jul 13, 2023 at 19:59
  • Im no expert but I dont think you can "get where you are going" with a simple telnet command if you need to use Windows file sharing protocol. You may need to install samba and print via that. I am sure that if the admins advice is correct (ie access to the printer is only through smb as implied) tcp port 445, not 9100 needs to be involved - but I expect there is a lot more to the protocol then just dumping the file on port 445.
    – davidgo
    Commented Jul 13, 2023 at 20:28
  • 1
    You need to install a local driver and map a port to that network printer. If you are trying to print something, the windows GDI needs to translate it into whatever printer language needed before sending the file. What do you mean by "trying to send a print command"? You mean print a file or change a default print font or duplex setting? The latter is embedded in your print job. Perhaps I am not understanding. I have written over an hundred print drivers and there isn't enough information here to help you. Commented Jul 14, 2023 at 3:28
  • Yes. i found docs that indicates we should be able to use smb://. Waiting on local resource to confirm it printed out.
    – e-Fungus
    Commented Jul 19, 2023 at 12:58

0

You must log in to answer this question.

Browse other questions tagged .