WEB / SSH Flashcards
If you are not afraid to loose a byte (ex. a frame in a video) what protocol do you use? And what protocol do you use if you CAN’T loose a byte?
DCP (not important if you loose a byte).
TCP (when you don’t want to loose a byte).
What is SSH?
Secure Shell. Can connect two computers/servers directly.
What is RSH?
Remote Shell. Connects a shell running in remote computer.
What is Telnet?
TELetype NETwork. Stimulates being in front of remote computer.
What are the differences between HTTP :// and : ?
:// are hierarchical
: are flat
All the HTTP methods (verbs) can be…
Safe, Idempotent or Cacheable.
What HTTP methods (verds) are Safe?
GET and HEAD.
What HTTP methods (verds) are Idempotent?
PUT
What HTTP methods (verds) are Catchable?
POST
What does Cacheable means?
Cached is controlled by client. A cacheable response is an HTTP response that can be cached, that is stored to be retrieved and used later, saving a new request to the server.
What does Idempotent means?
An HTTP method is idempotent if an identical request can be made once or several times in a row with the same effect while leaving the server in the same state.