What's the difference between the various printer connections?

19,993

Solution 1

http://www.cups.org/articles.php?L193+TFAQ+Q

Both the LPD and JetDirect/AppSocket protocols can be used over the Internet today, however neither of these protocols provides authentication services, access control, and all of the document management and formatting (including printer-specific commands) must be handled by the machine sending the document. If you don't know what kind of printer is on the receiving end you may not be able to successfully print your document!

This was back in 2005 so things might have changed

Solution 2

@waspinator's answer of the question goes a long way already (I upvoted it). But here are some additional details...

The main advantage of IPP over JetDirect/AppSocket are these:

  • AppSocket is a "fire and forget" protocol. IPP(S) can give a very detailed backchannel info about the current state of job processing (which page is currently printed), and more (like query about past, completed or cancelled jobs).

  • AppSocket is a very simple protocol, so everybody could reverse engineer it after HP introduced it (quite long ago) and even though it never was an official standard; it's also quite reliable and robust (with all this empty set of 'features' it supports) -- which is why it was widely used and supported by virtually every network printer out there.

  • IPP is standardized by the ISTO Printer Working Group (PWG), which is a representation of practically every single printer manufacturer around the world. HP themselves even have embraced IPP quite closely, having more than 350 of their newest printer models self-certified to be consistent with the new 'IPP Everywhere' Standard.

  • With IPP(S) you have much better options related to security: authentication/authorization, encryption of transferred data, access control, etc.

  • With IPP you have a specified set of names and values for print job options. Duplex printing is either one of 'sides=two-sided-long-edge' or '...=two-sided-short-edge', whereas before, you could have up to ten or more ways to specify a duplex printout (because every vendor was free to use his own naming scheme). The same holds true for many other print parameters.

  • IPP(S) allow you query an IPP-enabled printer (and more than 90% of devices sold in the last 10 years can talk IPP -- because AirPrint can only work because of it; and more than half of these can directly consume PDF too) about its specific capabilities: Can it do color? Which paper sizes does it support? Does it do duplex prints? Can it staple, punch, fold? Which IPP versions does it support? Which Page Description Language (PDL -- PostScript, PDF, PCL, JPEG, etc) can I send to it? Etc.pp. ...

  • With the latest evolution of the IPP Standard, aptly called 'IPP Everywhere', finally driverless printing starts to work. CUPS can do it! Whenever it encounters an IPP Everywhere printer, it does not need any driver and/or device specific PPD prepared or pre-installed by the administrator any longer: it knows it can send one of the standard page description formats (either of JPEG, PWG-Raster, URF-Raster or PDF which don't require a proprietary driver to generate), it can query the device about its specific capabilities and it will auto-create a PPD reflecting these capabilities so even non-IPP-enabled applications can still print the traditional way (these 'legacy' apps don't talk IPP yet and are used to look for PPDs -- apps like LibreOffice or Firefox or what-not do).

IPP is the future, and the future is already here. (AppSocket is the past, but it is not yet completely gone. Most IPP printers still talk AppSocket too....)


In the specific case of your printer, though: some vendors/models have buggy IPP implementations, and they may not work well, while AppSocket printing to the same model may work flawlessly. Just test it with IPP, and keep using it if it works fine. If not, revert to AppSocket (or USB).

Solution 3

Since that printer is USB the answer is none of them, as they are all for network printers. When you plug the printer in on USB it should be detected automatically by the printer setup tool.

Share:
19,993

Related videos on Youtube

bain
Author by

bain

Updated on September 18, 2022

Comments

  • bain
    bain almost 2 years

    I'm installing a new printer and I'm given 4 connection options.

    • AppSocket/JetDirect network printer via DNS-SD
    • LPD network printer via DNS-SD
    • IPP network printer via DNS-SD
    • AppSocket/HP JetDirect

    Which one should I choose?

    It's a Samsung CLP-320 if it makes a difference.

    • Admin
      Admin over 11 years
      Who would want unsecure connections? It's like asking someone if they want to drive a safe car.
    • Admin
      Admin over 11 years
      @waspinator: I want unsecured connections, under certain circumstances, for example HTTP. I also prefer some unsecured connections on my LAN, specifically when security requires unacceptable complication or overhead... Assuming the service is only available from inside my LAN, and nothing confidential is transmitted over-the-wire. However when security doesn't impose significant complexity or overhead, then I would prefer the secured connection.
    • Admin
      Admin over 11 years
      @TechZilla: the web is slowly moving from HTTP to HTTPS. I feel regular users shouldn't have to worry about any complications or overhead; it should be secure, and it should just work. I don't remember having to do anything when google or facebook switched to HTTPS. Ubuntu should work on making the system as secure as possible without any user intervention. In the meantime, do you know which one of these is safest to use?
  • waspinator
    waspinator over 11 years
    That's a useless answer. Even if the OP got the model wrong (maybe missed the 'N'), the question is about network connections to printers. They wouldn't even see those options if it was a USB printer.
  • Jammerz858
    Jammerz858 over 11 years
    Not true. They will see these options with a USB printer because the printer settings dialog displays them while detecting printers, rather than displaying a message such as "detecting printers". This is confusing and leads the user to think that they must manually enter printer details as has happened here.
  • waspinator
    waspinator over 11 years
    fine. that doesn't answer the question though. what is the difference between them?
  • Jammerz858
    Jammerz858 over 11 years
    Correct. It answers the question "which one should I choose?"