Connect a network printer to CUPS and identify the standard protocol and port.
Which pairing is appropriate?
CUPS commonly uses IPP over TCP port 631 for local and remote printing.
Detailed explanation
SMTP / TCP 25Incorrect. SMTP is for mail.
Incorrect. SMTP is for mail.
DNS / UDP 53Incorrect. DNS resolves names.
Incorrect. DNS resolves names.
IPP / TCP 631Correct. IPP uses TCP 631.
Correct. IPP uses TCP 631.
SSH / TCP 22Incorrect. SSH is for remote shell access.
Incorrect. SSH is for remote shell access.
Try it yourself
An example you can run in a temporary verification environment.
printf '%s
' 'ipp 631/tcp'Expected result
ipp 631/tcpKey points
- IPP is printing protocol
- TCP 631
- Local and remote queues
Notes
- Environment: protocol対応表の表示のみ
- Command output formatting can vary slightly by distribution or tool version.
- Run the example in a temporary directory or process when possible.
Foundation review
Read the scope first
Check whether the command acts on the current shell, a new process, an existing process, or a file.
Verify the observable result
Use the supplied command and compare the output with the expected result.