Module 11 The Client Server Relationship flashcards

5.0(1)
studied byStudied by 1 person
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/27

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

28 Terms

1
New cards

Server

Host running a software application that provides information/services to other hosts connected to the internet. Ex. web server

2
New cards

Three common types of server software

Email, web, file

3
New cards

Email

runs ____ server software. Clients use mail client software, such as Microsoft Outlook, to access ___ on the server.

4
New cards

Web

runs ___server software. Clients use browser software, such as Windows Internet Explorer, to access ___ pages on the server.

5
New cards

File

stores corporate and user ___ in a central location. The client devices access these ___ with client software such as the Windows File Explorer.

6
New cards

Client/server systems

Client sends a request to a srever, server carrys out a function like sending a requested document. Ex. combination of web browser/web server.

7
New cards

Server farm

where other servers are in part of the same network

8
New cards

Data center

facility used to house computer systems and associated components, can occupy on room or entire building, expensive to build/maintain, only large organizations use privately built ones, smaller organizations reduce the cost by leasing

9
New cards

Uniform Resource Name (URN)

identifies only the namespace of the resource (web page, document, image, etc.) without reference to the protocol.

10
New cards

Uniform resource locator

defines the network location of a specific resource on the network. HTTP or HTTPS

11
New cards

Protocol/scheme

HTTPS or other protocols such as FTP, SFTP, mailto, and NNTP

12
New cards

Hostname

www.example.com

13
New cards

Path and file name

/author/book.html

14
New cards

Fragment

#page 155

15
New cards

Application Layer protocol

HTTP governs the way that a web server and a web client interacts, it defines the format of the requests and responses exchanged between the client and the server, relies on other protocols to govern how the messages are transported between client/server.

16
New cards

Transport Layer Protocol

Transmission Control Protocol ensures that IP packets are sent reliably and any missing packets are resent, provides proper ordering of packets received out of order

17
New cards

Internetwork Layer Protocol

Most common protocol is Internet Protocol, responsible for taking the formatted segments from TCP, assigning the logical addressing and encapsulating theme into packets for routing to the destination host

18
New cards

Network Access Layer

Specific protocol depends on the type of media and transmission methods used in the physical network. Ex, ethernet

19
New cards

Transmission Control Protocol (TCP)

ensures reliable delivery, breaks up a message into small pieces called segments and passed to the IP process for packet assembly, the segments would be resent if lost. responsible for reassembling the message segments and passing them to the application, used by FTP and HTTP,

20
New cards

UDP

“best effort” delivery system, preferable with applications like streaming audio and voIP, retransmissions are undesireable, used by DNS to resolve a name.

21
New cards

Port

Numeric identifier within each segment that is used to keep track of specific conversations between a client and server, managed by the Internet Corporation for Assigned Names and Numbers, can be broken into three categories

22
New cards

Well-known ports

Destination ports that are associated with common network applications. range of 1 to 1023

23
New cards

Registered ports

Ports 1024-49151 can be used. Used by organizations to register specific applications such as IM applications

24
New cards

Private ports

Ports 49152-65535. often used as source ports and can be used by any application

25
New cards

Source port

Dynamically generated by the sending device to identify a conversation between two devices, common for a device to send multiple HTTP service requests to a web server at the same time, each conversation is traced based on the ports

26
New cards

Destination port

Client places a number in the segment to tell the destination server what service is being requests, a server can offer more than one service simultaneously

27
New cards

Socket

Combination of the source IP address, source port number, or the destination IP address, destination port number, used to identify the server and service being requested by the client enable processes

28
New cards

netstat

Used to list the protocols in use, the local address and port numbers, the foreign address and port numbers, and connection state. Can be used to verify connections