Скачать презентацию Chapter 2 The Application Layer Goals of Скачать презентацию Chapter 2 The Application Layer Goals of

607b046c0d069423e7fa43d49dbd3db9.ppt

  • Количество слайдов: 148

Chapter 2 The Application Layer Chapter 2 The Application Layer

Goals of this Chapter • To understand common application protocols work – – – Goals of this Chapter • To understand common application protocols work – – – Web (http) Email (smtp) FTP DNS P 2 P DHT (distributed hash table) • To understand how the design alternatives for application layer networking protocols – A network application runs on many hosts, it is a distributed application – This chapter discusses several designs of distributed applications

Road Map • • Application networking basics Web Email FTP DNS P 2 P Road Map • • Application networking basics Web Email FTP DNS P 2 P DHP

Road Map • • Application networking basics Web Email FTP DNS P 2 P Road Map • • Application networking basics Web Email FTP DNS P 2 P DHT

Creating a network app write programs that – run on (different) end systems – Creating a network app write programs that – run on (different) end systems – communicate over network – e. g. , web server software communicates with browser software No need to write software for network-core devices – Network-core devices do not run user applications – applications on end systems allows for rapid app development, propagation application transport network data link physical

An app-layer networking protocol defines • Types of messages exchanged, – e. g. , An app-layer networking protocol defines • Types of messages exchanged, – e. g. , request, response • Message syntax: – what fields in messages & how fields are delineated • Message semantics – meaning of information in fields • Rules for when and how processes send & respond to messages Public-domain protocols: • defined in RFCs • allows for interoperability • e. g. , HTTP, SMTP Proprietary protocols: • e. g. , Skype

Which application gets a newly arriving packet? IP: 74. 125. 115. 99 Operating System Which application gets a newly arriving packet? IP: 74. 125. 115. 99 Operating System Applications Web server SSH server Transport Network Link Layer Physical Layer Dest IP: 74. 125. 115. 99 SSH client Web browser Skype IM

Transport layer multiplexing: TCP I would like to communicate with IP: 128. 174. 13. Transport layer multiplexing: TCP I would like to communicate with IP: 128. 174. 13. 63 74. 125. 115. 99 Operating port 80 Web browser app Operating System TCP port 23421 Network Link layer I would like to accept communication on port 80 IP: 74. 125. 115. 99 Dest IP: 74. 125. 115. 99 Source IP: 128. 174. 13. 63 Dest port: 80 Source port: 23421 socket TCP port 80 Network Web server app Link layer • An application is identified by the hosts IP addresses, transport protocol, and ports • A TCP connection is identified by the pair of IPs, the pair of ports, and the transport protocol

Transport layer multiplexing: TCP I would like to communicate IP: 128. 174. 13. 63 Transport layer multiplexing: TCP I would like to communicate IP: 128. 174. 13. 63 with 74. 125. 115. 99 port 80 Operating System Web socket TCP port browser 23421 app Network Link layer IP: 74. 125. 115. 99 Operating System socket Dest IP: 128. 174. 13. 63 TCP port 80 Source IP: 74. 125. 115. 99 Dest port: 23421 Network Source port: 80 Web server app Link layer • An application is identified by the hosts IP addresses, transport protocol, and ports • A TCP connection is identified by the pair of IPs, the pair of ports, and the transport protocol

Transport layer multiplexing: TCP IP: 128. 174. 13. 63 IP: 74. 125. 115. 99 Transport layer multiplexing: TCP IP: 128. 174. 13. 63 IP: 74. 125. 115. 99 Operating System Web socket TCP port browser 23421 app Network Link layer Operating System Dest IP: 74. 125. 115. 99 Source IP: 128. 174. 13. 63 Dest port: 80 Source port: 23421 Web TCP port 80 server socket app socket Network Link layer • An application is identified by the hosts IP addresses, transport protocol, and ports • A TCP connection is identified by the pair of IPs, the pair of ports, and the transport protocol

Transport layer multiplexing: TCP I would like. IP: 128. 174. 13. 63 to send Transport layer multiplexing: TCP I would like. IP: 128. 174. 13. 63 to send data: XXSFGFEWRV Operating System Web socket TCP port browser 23421 app Network Link layer IP: 74. 125. 115. 99 Operating System Dest IP: 74. 125. 115. 99 Source IP: 128. 174. 13. 63 Protocol: TCP Dest port: 80 Source port: 23421 Data: XXSFGFEWRV Web TCP port 80 server socket app Network socket Link layer Dest IP: 74. 125. 115. 99 Source IP: 128. 174. 13. 63 Protocol: TCP Dest port: 80 Source port: 23421 Data: XXSFGFEWRV • An application is identified by the hosts IP address, transport protocols, and port • A TCP connection is identified by the pair of IPs, the pair of ports, and the transport protocol

Transport layer multiplexing: UDP I would like to send/receive IP: 128. 174. 13. 63 Transport layer multiplexing: UDP I would like to send/receive IP: 128. 174. 13. 63 data over UDP port 23421 Operating System IM client socket UDP port 23421 app I would like to receive any data IP: 74. 125. 115. 99 Operating System on UDP port 1401 socket UDP port 1401 Network Link layer IM server app Link layer • An application is identified by the hosts IP address, transport protocols, and port

Transport layer multiplexing: UDP Send data to 74. 125. 115. 99 IP: 128. 174. Transport layer multiplexing: UDP Send data to 74. 125. 115. 99 IP: 128. 174. 13. 63 port 1401 Data: xxadre Operating IP: 74. 125. 115. 99 Operating System IM client socket UDP port 23421 app Network Link layer Dest IP: 74. 125. 115. 99 Source IP: 128. 174. 13. 63 Protocol: UDP Dest port: 1401 Source port: 23421 Data: xxadre socket UDP port 1401 Network Data: xxadre IM Server app Link layer • An application is identified by the hosts IP address, transport protocols, and port

Transport layer multiplexing TCP UDP • • Applications accept new connections based on the Transport layer multiplexing TCP UDP • • Applications accept new connections based on the destination port – An client app that would like to communicate a server app must know • • • the IP of the host that is running the server app and the port on which the server app is listening When a connection is created, a socket is made. – Data is sent and received over this socket – This socket is identified by two pairs of IP-port, and the transport layer protocol, i. e. , the tuple (IP, port, transport layer) • The application is identified by the port on which the application is listening. The application can use the source IP and port to further multiplex

Project 1 – Send a Message via TCP and UDP • Make client program Project 1 – Send a Message via TCP and UDP • Make client program to send message to server and then wait for message from server • Make server program to wait for message from client and then respond with a message • UDP • – Client • • • Set up socket Send message Wait for reply If no reply comes, give up If reply comes, print it – Server • Set up socket • Wait for message • When message arrives – Print message – Send reply TCP – Client • • • Set up socket Send message Wait for reply If no reply comes, give up If reply comes, print it – Server • Set up socket • Wait for connection • When connect arrives, get socket for connection • Wait for message over connection socket • When message arrives – Print message

Steps in Visual Studio • • Open visual studio File -> new ->project • Steps in Visual Studio • • Open visual studio File -> new ->project • – The output window is in the lower middle frame – Might need to adjust the frames to see the output window – There will be many warnings, but, hopefully, no errors – the bottom of the output gives the directory where the program is located – Win 32 console application • Select name and directory – Leave defaults • Console app • Uncheck empty project • Checked precompiled header – Paste code from web page into source code Build->build solution • • • Open two command windows Change to the directory where the program is located Run the program in each command windows – Testudp 1 testudp 0 • Start the server first (the one with 1 as an argument

What transport service does an app need? Data reliability • some apps (e. g. What transport service does an app need? Data reliability • some apps (e. g. , audio) can tolerate some loss • other apps (e. g. , file transfer, telnet) require 100% reliable data transfer Timing • some apps (e. g. , Internet telephony, interactive games) require low delay to be “effective” Throughput • some apps (e. g. , multimedia) require minimum amount of throughput to be “useful” (i. e. , in order for the user to gain utility) • other apps (“elastic apps”) make use of whatever throughput they get Security • Encryption, data integrity, …

Transport service requirements of common apps Application Data loss Throughput Time Sensitive file transfer Transport service requirements of common apps Application Data loss Throughput Time Sensitive file transfer e-mail Web documents real-time audio/video no loss-tolerant no no not really yes, 100’s msec stored audio/video interactive games instant messaging loss-tolerant no loss elastic some what elastic audio: 5 kbps-1 Mbps video: 10 kbps-5 Mbps same as above few kbps up elastic yes, few secs yes, 100’s msec yes and no

Internet transport protocols services TCP service: UDP service: • connection-oriented: setup required between client Internet transport protocols services TCP service: UDP service: • connection-oriented: setup required between client and server processes • reliable transport between sending and receiving process • does not provide: timing, minimum throughput guarantees, or even when packets are transmitted • flow control: sender won’t overwhelm receiver • congestion control: throttle sender when network overloaded • No connection set-up needed • unreliable data transfer between sending and receiving process • Packets can be sent at any rate/time desired (but this might be cause considerable congestion) • does not provide: flow control, congestion control, timing, throughput guarantee, or security

Internet apps: application, transport protocols Application e-mail remote terminal access Web file transfer streaming Internet apps: application, transport protocols Application e-mail remote terminal access Web file transfer streaming multimedia Internet telephony Application layer protocol Underlying transport protocol SMTP [RFC 2821] Telnet [RFC 854] HTTP [RFC 2616] FTP [RFC 959] HTTP (eg Youtube), RTP [RFC 1889] SIP, RTP, proprietary (e. g. , Skype) TCP TCP TCP UDP typically UDP

Road Map • • Application basics Web Email FTP DNS P 2 P DHT Road Map • • Application basics Web Email FTP DNS P 2 P DHT

Web and HTTP • Web page consists of objects • Object can be HTML Web and HTTP • Web page consists of objects • Object can be HTML file, JPEG image, Java applet, audio file, … • Web page consists of base HTML-file which includes several referenced objects • The browser first requests the base file • The base file specifies text and URLs of objects • The browser requests these objects, where ever they are (not always on the same server) • HTTP is used to request the base file and all the other files • Note, that HTTP can be used for other applications besides web • Each object is addressable by a URL • Example URL: www. someschool. edu/some. Dept/pic. gif host name path name

HTTP overview HTTP: hypertext transfer protocol • Web’s application layer protocol • client/server model HTTP overview HTTP: hypertext transfer protocol • Web’s application layer protocol • client/server model – client: browser that requests, receives, “displays” Web objects – server: Web server sends objects in response to requests HT TP req ues PC running HT t TP res Explorer pon se st ue eq r se Server TP on p running HT res P T Apache Web HT server Mac running Navigator

HTTP overview (continued) Uses TCP: HTTP is “stateless” • client initiates TCP connection (creates HTTP overview (continued) Uses TCP: HTTP is “stateless” • client initiates TCP connection (creates socket) to server, port 80 • server accepts TCP connection from client • HTTP messages (applicationlayer protocol messages) exchanged between browser (HTTP client) and Web server (HTTP server) • TCP connection closed • server maintains no information about past client requests aside Protocols that maintain “state” are complex! • past history (state) must be maintained • if server/client crashes, their views of “state” may be inconsistent, must be reconciled

HTTP connections Nonpersistent HTTP • At most one object is sent over a TCP HTTP connections Nonpersistent HTTP • At most one object is sent over a TCP connection. Persistent HTTP • Multiple objects can be sent over single TCP connection between client and server.

Nonpersistent HTTP Suppose user enters URL www. some. School. edu/some. Department/home. index 1 a. Nonpersistent HTTP Suppose user enters URL www. some. School. edu/some. Department/home. index 1 a. HTTP client initiates TCP connection to (contains text, references to 10 jpeg images) HTTP server (process) at www. some. School. edu on port 80 1 b. HTTP server at host 2. HTTP client sends HTTP request message (containing URL) into TCP connection socket. Message indicates that client wants object some. Department/home. index www. some. School. edu waiting for TCP connection at port 80. “accepts” connection, notifying client 3. HTTP server receives request message, forms response message containing requested object, and sends message into its socket 5. HTTP client receives response message containing html file, displays html. Parsing html file, finds 10 referenced jpeg objects time 6. Steps 1 -5 repeated for each of 10 jpeg objects 4. HTTP server closes TCP connection.

Non-Persistent HTTP: Response time Definition of RTT: time for a small packet to travel Non-Persistent HTTP: Response time Definition of RTT: time for a small packet to travel from client to server and back. Response time: • one RTT to initiate TCP connection • one RTT for HTTP request and first few bytes of HTTP response to return • file transmission time total = 2 RTT + data transmit time 10 objects require 20 RTT+10 data transmit times initiate TCP connection RTT request file time to transmit file RTT file received time

Persistent HTTP Suppose user enters URL www. some. School. edu/some. Department/home. index 1 a. Persistent HTTP Suppose user enters URL www. some. School. edu/some. Department/home. index 1 a. HTTP client initiates TCP connection to (contains text, references to 10 jpeg images) HTTP server (process) at www. some. School. edu on port 80 1 b. HTTP server at host 2. HTTP client sends HTTP request message (containing URL) into TCP connection socket. Message indicates that client wants object some. Department/home. index 5. HTTP client receives response message containing html file, displays html. Parsing html file, finds 10 referenced jpeg objects, requests these 10 references time www. some. School. edu waiting for TCP connection at port 80. “accepts” connection, notifying client 3. HTTP server receives request message, forms response message containing requested object, and sends message into its socket 4. HTTP server sends each of the 10 objects.

(Non) Persistent HTTP: Response time Non-persistent Persistent initiate TCP connection RTT request file RTT (Non) Persistent HTTP: Response time Non-persistent Persistent initiate TCP connection RTT request file RTT base received initiate TCP connection request file time to transmit file RTT Object 1 received base received Request files time to transmit file RTT request file RTT Object 1 received time to transmit file 10 objects require 20 RTT+10 data transmit times Object 2 received time to transmit file 10 objects require 3 RTT+10 data transmit times

(non) Persistent HTTP Non-persistent • Advantages of persistent HTTP are only valid if the (non) Persistent HTTP Non-persistent • Advantages of persistent HTTP are only valid if the objects are the same server. – Usually some objects are on the server, but many are not • Instead of using a single persistent HTTP connection, a browser could use many nonpersistent connections in parallel – This is a bit unfair. • As far as I know, persistent HTTP is usually not supported by the server or browser initiate TCP connection RTT request file RTT base received time to transmit file Initiate 5 TCP connection RTT request 5 files RTT Object 1 received Object 2 received Object 3 received Object 4 received Object 5 received time to transmit file

HTTP request message • two types of HTTP messages: request, response • HTTP request HTTP request message • two types of HTTP messages: request, response • HTTP request message: – ASCII (human-readable format) request line (GET, POST, HEAD commands) GET /somedir/page. html HTTP/1. 1 Host: www. someschool. edu User-agent: Mozilla/4. 0 header Connection: close lines Accept-language: fr Carriage return, line feed indicates end of message (extra carriage return, line feed)

HTTP request message: general format HTTP request message: general format

HTTP response message status line (protocol status code status phrase) header lines data, e. HTTP response message status line (protocol status code status phrase) header lines data, e. g. , requested HTML file HTTP/1. 1 200 OK Connection close Date: Thu, 06 Aug 1998 12: 00: 15 GMT Server: Apache/1. 3. 0 (Unix) Last-Modified: Mon, 22 Jun 1998 …. . . Content-Length: 6821 Content-Type: text/html data data. . .

HTTP response status codes In first line in server->client response message. A few sample HTTP response status codes In first line in server->client response message. A few sample codes: 200 OK – request succeeded, requested object later in this message 301 Moved Permanently – requested object moved, new location specified later in this message (Location: ) 400 Bad Request – request message not understood by server 404 Not Found – requested document not found on this server 505 HTTP Version Not Supported

Trying out HTTP (client side) for yourself 1. Telnet to your favorite Web server: Trying out HTTP (client side) for yourself 1. Telnet to your favorite Web server: telnet www. eecis. udel. edu 80 Opens TCP connection to port 80 (default HTTP server port) at www. eecis. udel. edu. Anything typed in sent to port 80 at www. eecis. udel. edu 2. Type in a GET HTTP request: GET / HTTP/1. 1 Host: www. eecis. udel. edu By typing this in (hit carriage return twice), you send this minimal (but complete) GET request to HTTP server 3. Look at response message sent by HTTP server!

Wireshark (ethereal) • • • Wireshark captures all packets that pass through the hosts Wireshark (ethereal) • • • Wireshark captures all packets that pass through the hosts interface To run Wireshark , libpcap (linux) or winpcap (windows) must be installed. It comes with wireshark package Then, run wireshark Select Capture Find the active interface – E. g. , not generic dialup, nor vnp, nor packet scheduler, but wireless …. With IP address – Then select prepare – Let’s watch TCP packets on port 80 • Next to capture filter, enter TCP port 80 – – • • • Select update in realtime and autoscroll Might need to enable or disable “capture in promiscuous mode” Press start Press close Load www. eecis. udel. edu page in browser Press stop in Wireshark Find http request to 128. 4. 40. 10. – Right click and select follow TCP stream

User-server state: cookies Many major Web sites use cookies Four components: Example: • Susan User-server state: cookies Many major Web sites use cookies Four components: Example: • Susan always access 1) cookie header line of HTTP Internet always from PC response message 2) cookie header line in HTTP • visits specific e-commerce request message site for first time 3) cookie file kept on user’s • when initial HTTP host, managed by user’s requests arrives at site, browser site creates: 4) back-end database at Web site – unique ID – entry in backend database for ID

Cookies: keeping “state” (cont. ) client ebay 8734 cookie file ebay 8734 amazon 1678 Cookies: keeping “state” (cont. ) client ebay 8734 cookie file ebay 8734 amazon 1678 server usual http request msg usual http response Set-cookie: 1678 usual http request msg cookie: 1678 one week later: usual http response msg Amazon server creates ID 1678 for user create entry cookiespecific action access ebay 8734 amazon 1678 usual http request msg cookie: 1678 usual http response msg cookiespectific action backend database

Cookies (continued) aside What cookies can bring: • authorization • shopping carts • recommendations Cookies (continued) aside What cookies can bring: • authorization • shopping carts • recommendations • user session state (Web e-mail) Cookies and privacy: r cookies permit sites to learn a lot about you r you may supply name and email to sites How to keep “state”: r protocol endpoints: maintain state at sender/receiver over multiple transactions r cookies: http messages carry state

 • Web Serving Systems LAMP Stack – very popular – Linux (OS) – • Web Serving Systems LAMP Stack – very popular – Linux (OS) – Apache (web sever) • Receives http request and generates http response • The generation of response can involve many steps • Other servers are also popular: – nginx – open source, reverse proxy, load balancer, popularity: apache, microsoft, nginx, google – lighttpd – open source, small and fast. Good for high load. E. g. , youtube, meeboo. Can handle 1000 hits per sec – My. SQL or Maria. DB (my. SQL is oracle. Maria. DB is a branch of my. SQL, but not under oracle’s control) • • Open source database Very popular Postgre. SQL is also very popular New, no. SQL (not only SQL), databases are also playing a role – – Casandra mongo. DB – Php • Php scripts make the html that is delivered by the web server to the client • Other application – – – Perl Python Java (with a tomcat server) • Facebook converts php to C and save 30% in speed (which means 30% in servers, which is a huge amount of money)

Simple LAMP Topology Simple LAMP Topology

Faster Topology Squid Apache+PHP+APC memcached My. SQL Web cache: holds recently requested pages and Faster Topology Squid Apache+PHP+APC memcached My. SQL Web cache: holds recently requested pages and generate response if the desired page is in cache. Otherwise, the request is forward to the web server APC is a cache for compiled php code Cache for sql queries. A giant hash table. Give it a string (key) and if the response is in cache, it gets it. Otherwise, the request is sent to database and the result is also saved the response in cache The key can be anything. The programmer decides.

My. SQL Replication My. SQL master slave • All writes are to the master My. SQL Replication My. SQL master slave • All writes are to the master • Reads are from the master or the slaves • There is a slight delay from when the master is updated and the update is reflected by all slaves Where’d my edit go? ? ?

Data Sharding My. SQL group s 1 English-language Wikipedia My. SQL group s 2 Data Sharding My. SQL group s 1 English-language Wikipedia My. SQL group s 2 Next 19 biggest wikis My. SQL group s 3 Next 764 wikis

Load Balancer • 1/3 of HTTP request to each server • Might keep request Load Balancer • 1/3 of HTTP request to each server • Might keep request with the same cookie to the same server (sticky sessions) • Might decrypt SSL Apache Also load balances tomcat tomcat Load balancers also check if machines are healthy and will stop sending requests if they seem unhealthy

Content distribution networks Even with a very fast server architecture, RTT is still large Content distribution networks Even with a very fast server architecture, RTT is still large to some users CDNs • allow you to put parts of your web page (e. g. , logo, javascripts, audio, video, multicast live video) on servers that are close to the client • Act as web proxy. See next slides • If the content is always unique and changing (facebook), then the design of the CDN is more complicated Locations of Amazon’s “cloud. Front” servers

CDN example: AWS Cloud. Front • cloud. Front machines are scattered around the world CDN example: AWS Cloud. Front • cloud. Front machines are scattered around the world and are close to most people – Close in terms of RTT • Documents and media can be cached in a cloud – If the document is not in the Cloud. Front machine, the request is forwarded to the permanent storage/original server and given to the user and saved in cache • E. g. , – – – • A request to mydomain. cloudfront. com should go to the nearest cloudfront server farm. – • Create a distribution for the image in cloudfront, and get a new url, e. g. , http: //mydomain. cloudfront. net If image is at http: //mydomain. com/images/pic 1. jpg Your web pages should refer to http: //mydomain. cloudfront. net/images/pic 1. jpg not to http: //mydomain. com/images/pic 1. jpg How? If the cache document changes, then different cloudfront machines will have different versions. Eventually they will be updated, usually within a few minutes, depending on the timeout value set

Web caches (proxy server) Goal: reduce network utilization by satisfying client request without involving Web caches (proxy server) Goal: reduce network utilization by satisfying client request without involving original server • user sets browser: Web accesses via cache • browser sends all HTTP requests to cache – object in cache: cache returns object – else cache requests object from origin server, then returns object to client origin server HT client. HTTP TP req ues Proxy server t res pon se t es qu e se Pr on T p HT res P TT H client st que re se TP pon HT es Pr T HT origin server

More about Web caching • cache acts as both client and server • typically More about Web caching • cache acts as both client and server • typically cache is installed by ISP (university, company, residential ISP, e. g. , satellite-based ISP) or as part of a CDN Why Web caching? • reduce response time for client request • reduce traffic on an institution’s access link. • Internet dense with caches: enables “poor” content providers to effectively deliver content (similar objective as P 2 P file sharing)

Caching example origin servers Assumptions • average object size = 100, 000 bits • Caching example origin servers Assumptions • average object size = 100, 000 bits • avg. request rate from institution’s browsers to origin servers = 15/sec • delay from institutional router to any origin server and back to router = 2 sec Consequences • • • utilization on LAN = 15% utilization on access link = 100% total delay = Internet delay + access delay + LAN delay = 2 sec + minutes + milliseconds public Internet 1. 5 Mbps access link institutional network 10 Mbps LAN institutional cache

Caching example (cont) origin servers possible solution • increase bandwidth of access link to, Caching example (cont) origin servers possible solution • increase bandwidth of access link to, say, 10 Mbps public Internet consequence • • • utilization on LAN = 15% utilization on access link = 15% Total delay = Internet delay + access delay + LAN delay = 2 sec + msecs • often a costly upgrade 10 Mbps access link institutional network 10 Mbps LAN institutional cache

Caching example (cont) possible solution: install cache origin servers • suppose hit rate is Caching example (cont) possible solution: install cache origin servers • suppose hit rate is 0. 4 consequence • 40% requests will be satisfied almost immediately • 60% requests satisfied by origin server • utilization of access link reduced to 60%, resulting in negligible delays (say 10 msec) • total avg delay = Internet delay + access delay + LAN delay =. 6*(2. 01) secs +. 4*milliseconds < 1. 4 secs public Internet 1. 5 Mbps access link institutional network 10 Mbps LAN institutional cache

Conditional GET • Goal: don’t send object if cache has up-to-date cached version HTTP Conditional GET • Goal: don’t send object if cache has up-to-date cached version HTTP request msg If-modified-since: • cache: specify date of cached copy in HTTP request If-modified-since: • server: response contains no object if cached copy is up-todate: HTTP/1. 0 304 Not Modified HTTP response server object not modified HTTP/1. 0 304 Not Modified HTTP request msg If-modified-since: HTTP response HTTP/1. 0 200 OK object modified

Road Map • • Application basics Web FTP Email DNS P 2 P DHT Road Map • • Application basics Web FTP Email DNS P 2 P DHT

FTP: the file transfer protocol user at host FTP user client interface local file FTP: the file transfer protocol user at host FTP user client interface local file system file transfer FTP server remote file system • transfer file to/from remote host • client/server model – client: side that initiates transfer (either to/from remote) – server: remote host • ftp: RFC 959 • ftp server: listens on port 21

FTP is weird: separate control and data connections • • FTP client contacts FTP FTP is weird: separate control and data connections • • FTP client contacts FTP server at port 21, TCP is transport protocol client authorized over control connection – This is done in “clear text” (i. e. , unencrypted) – So if some one if sniffing packets, your password might be learned. – Sniffing packets is difficult on ethernet, encrypted wifi, and DSL, but is possible on cable modems, and unencrypted wifi • • client browses remote directory by sending commands over control connection. Data is transferred over different connections. Two approaches TCP control connection port 21 FTP client TCP data connection port 20 FTP server – Active – Passive • Active – The client opens a TCP socket with on some port (port number >1024) – The client sends the server the port – The server connects to the client’s port where the servers source port is 20 • Active mode is a problem for firewalls – If my desktop is not a server, it should not receive any requests for connections. – But FTP servers will make such a requests

FTP Passive mode • • When a file is to be transferred, the server FTP Passive mode • • When a file is to be transferred, the server opens a port (number>1024 and TCP control connection not 20) port 21 The server sends this port number information over the command connection TCP data connection FTP high port The client connects to the servers over client server this port. Drawback of passive – Some enterprises (companies) like to control which applications are used • E. g. , web browsing is ok, but skype is not – One way to do this is to block out going connections based on the port. – However, this will cause FTP to fail, unless the device that blocks connections is smart

Road Map • • Application basics Web FTP Email DNS P 2 P DHT Road Map • • Application basics Web FTP Email DNS P 2 P DHT

Email Protocol Design • Basic assumption: weak user agents and strong mail servers – Email Protocol Design • Basic assumption: weak user agents and strong mail servers – – – • The user wants to send the mail and leave The user wants to get the mail The user may come and go whenever (e. g. , roaming laptop) It should be possible to send mail between users even if neither user is online at the same time. We conclude that there must be a middle man/mail server. Servers are not that strong: The protocol must be as robust as possible to servers being offline – No single server – why • • – • Users Mail servers Each user has a mail box in its mail server – • • We conclude that there should be many mail servers Two types of hosts – – • Single point of failure The server would have to be too big (congestion) Users retrieve mail from their mail server at their convenience Users give mail to their mail servers to deliver the mail Mail servers communicate with – – The users that have mail boxes in the server Other mail servers user agent mail server user agent

Email Protocol Design • Two types of hosts – – • Each user has Email Protocol Design • Two types of hosts – – • Each user has a mail box in its mail server – • • Users Mail servers Users retrieve mail from their mail server at there convenience Users give mail to their mail servers to deliver the mail Mail servers communicate with – – The users that have mail boxes in the server Other mail servers User composes mail and sends it to its mail server (or a mail server that will send mail for it) user agent mail server Mail server finds the destination mail server and attempts to send the mail server Destination user requests emails from mailbox Destination server gives mails to user agent

Email Protocol Design • Two types of hosts – – • Each user has Email Protocol Design • Two types of hosts – – • Each user has a mail box in its mail server – • • Users Mail servers Users retrieve mail from their mail server at there convenience Users give mail to their mail servers to deliver the mail Mail servers communicate with – – The users that have mail boxes in the server Other mail servers User composes mail and sends it to its mail server (or a mail server that will send mail for it) user agent Mail server finds the destination mail server and attempts to send the mail Destination server gives mails to user mail server SMTP Destination user requests emails from mailbox SMTP POP 3 IMAP … user agent

Electronic Mail: Details Three major components: • • • user agents mail servers simple Electronic Mail: Details Three major components: • • • user agents mail servers simple mail transfer protocol: SMTP outgoing message queue user mailbox user agent mail server User Agent • a. k. a. “mail reader” • composing, editing, reading mail SMTP messages • e. g. , Eudora, Outlook, elm, Mozilla Thunderbird mail • Put outgoing on server (with SMTP) server • Get incoming messages from server user agent SMTP user agent mail server user agent

Electronic Mail: mail servers Mail Servers • • • mailbox contains incoming messages for Electronic Mail: mail servers Mail Servers • • • mailbox contains incoming messages for user message queue of outgoing (to be sent) mail messages SMTP protocol between mail servers to send email messages – client: sending mail server – “server”: receiving mail server • Reliable: several attempts and provide notification if delivery fails user agent mail server SMTP mail server user agent SMTP user agent mail server user agent

Electronic Mail: SMTP [RFC 2821] • uses TCP to reliably transfer email message from Electronic Mail: SMTP [RFC 2821] • uses TCP to reliably transfer email message from client to server, port 25 • direct transfer: sending server to receiving server • Emails are pushed to servers (but users pull messages from servers) • three phases of transfer – handshaking (greeting) – transfer of messages – closure • command/response interaction – commands: ASCII text – response: status code and phrase • messages must be in 7 -bit ASCII – Makes it difficult to send attachments

Scenario: Alice sends message to Bob 4) SMTP client sends Alice’s message over the Scenario: Alice sends message to Bob 4) SMTP client sends Alice’s message over the TCP connection 5) Bob’s mail server places the message in Bob’s mailbox 6) Bob invokes his user agent to read message 1) Alice uses UA to compose message and “to” bob@someschool. edu 2) Alice’s UA sends message to her mail server; message placed in message queue 3) Client side of SMTP opens TCP connection with Bob’s mail server 1 user agent 2 mail server 3 mail server 4 5 6 user agent

Sample SMTP interaction Client connects to server S: C: S: C: C: C: S: Sample SMTP interaction Client connects to server S: C: S: C: C: C: S: 220 hamburger. edu HELO crepes. fr 250 Hello crepes. fr, pleased to meet you MAIL FROM: 250 alice@crepes. fr. . . Sender ok RCPT TO: 250 bob@hamburger. edu. . . Recipient ok DATA 354 Enter mail, end with ". " on a line by itself Do you like ketchup? How about pickles? . 250 Message accepted for delivery QUIT 221 hamburger. edu closing connection

Try SMTP interaction for yourself: • telnet mail. eecis. udel. edu 25 • see Try SMTP interaction for yourself: • telnet mail. eecis. udel. edu 25 • see 220 reply from server • enter HELO, MAIL FROM, RCPT TO, DATA, QUIT commands above lets you send email without using email client (reader)

SMTP: final words • SMTP uses persistent connections • SMTP requires message (header & SMTP: final words • SMTP uses persistent connections • SMTP requires message (header & body) to be in 7 -bit ASCII • SMTP server uses CRLF to determine end of message Comparison with HTTP: • HTTP: pull • SMTP: push • both have ASCII command/response interaction, status codes • HTTP: each object encapsulated in its own response msg • SMTP: multiple objects sent in multipart msg

Mail access • POP 3 and IMAP are two protocols for access mail on Mail access • POP 3 and IMAP are two protocols for access mail on a mail server • Web-based mail works differently, the web mail server and the mail server can be integrated, so that there is no user agent.

Mail access protocols user agent SMTP sender’s mail server access protocol receiver’s mail server Mail access protocols user agent SMTP sender’s mail server access protocol receiver’s mail server • SMTP: delivery/storage to receiver’s server • Mail access protocol: retrieval from server – POP: Post Office Protocol [RFC 1939] • authorization (agent <-->server) and download – IMAP: Internet Mail Access Protocol [RFC 1730] • more features (more complex) • manipulation of stored msgs on server – HTTP: gmail, Hotmail, Yahoo! Mail, etc. user agent

Road Map • • Application basics Web FTP Email DNS P 2 P DHT Road Map • • Application basics Web FTP Email DNS P 2 P DHT

DNS – domain name system • Change names, like www. yahoo. com into IP DNS – domain name system • Change names, like www. yahoo. com into IP address. • Services provided by DNS – Name to address translation – Host aliasing • A host relay 1. west-coast. yahoo. com could have two aliases, yahoo. com and www. yahoo. com. • In this case, the canonical hostname is relay 1. west-coast. yahoo. com. • DNS can provide canonical host names – Mail server aliasing • When a mail server wants to send a mail to Me@udel. edu, it does not send it to www. udel. edu, but to mail. udel. edu. Or maybe udmail. udel. edu. DNS can translate udel. edu to mail. udel. edu – (Cheap) Load distribution • • Cnn. com has several servers. DNS will respond with all address, but it will reorder the addresses every time. If the client uses the first address listed, then each client will use different servers. – Check out Namespace design in http: //blogs. technet. com/b/exchange/archive/2014/04/21/thepreferred-architecture. aspx » The idea is that MS Exchange can be set up to use multiple servers, so a single email is held on multiple servers. Then the question is, how to decide which server to use, i. e. . , load balancing. What does this document say? • Content distribution networks (CDN) are better ways of load balancing

DNS - structure • Centralized DNS? – Pros – somewhat easy to maintain (there DNS - structure • Centralized DNS? – Pros – somewhat easy to maintain (there is only one system). But it must always be online – Cons • • • Single point of failure (the system crashes -> no web) Congestion Server would be far from some hosts (delay) Database would be too big The register bohacek-pc 1. pc. udel. edu would require interacting with the big server • Instead, a distributed hierarchical database is used.

Domain Hierarchy edu UDel eecis upenn art bohacek_pc 10 com yahoo gov cisco whitehouse Domain Hierarchy edu UDel eecis upenn art bohacek_pc 10 com yahoo gov cisco whitehouse mil nasa navy org net uk arpa acm in

Administrative Zones in the Domain Hierarchy root edu UD upenn gov whitehouse com mil Administrative Zones in the Domain Hierarchy root edu UD upenn gov whitehouse com mil nasa navy arpa yahoo org net uk cisco acm eecis art bohacek_pc 10 It is possible that. edu and. gov are administered together Note that UD administers art but not eecis Some times a single service provider will administer the domains for a large number of. coms in

Root servers • Each layer in the hierarchy knows about the domain names below Root servers • Each layer in the hierarchy knows about the domain names below it • The highest level is the root. – There are 13 root “servers” – Each of these servers is actually several servers, and some of the machines that comprise a server are distributed geographically. a Verisign, Dulles, VA c Cogent, Herndon, VA (also LA) d U Maryland College Park, MD g US Do. D Vienna, VA h ARL Aberdeen, MD j Verisign, ( 21 locations) e NASA Mt View, CA f Internet Software C. Palo Alto, k RIPE London (also 16 other locations) i Autonomica, Stockholm (plus 28 other locations) m WIDE Tokyo (also Seoul, Paris, SF) CA (and 36 other locations) b USC-ISI Marina del Rey, CA l ICANN Los Angeles, CA 13 root name servers worldwide

Overview • Top-level domain (TLD) servers – There around 200 top-level domains – These Overview • Top-level domain (TLD) servers – There around 200 top-level domains – These include com, edu, mil, info, in, uk, cn, – Currently, • network solutions maintains the TLD servers for com • Educause maintains the TLD servers for edu – The root servers know the addresses and names of all top level servers • Organizations have a hierarchy of DNS servers

DNS queries • • • Suppose a host needs the IP address of bohacek-pc DNS queries • • • Suppose a host needs the IP address of bohacek-pc 1. eecis. udel. edu If this IP address is not in cache, the host asks its local DNS server. If the DNS server does not have it in cache, it checks if is had the IP address of the DNS server of eecis. udel. edu in cache If not, it checks if IP address of the dns server of udel. edu in cache If not, it check if it has the IP address of the top-level domain server of edu in cache It not, it asks the root server for the IP address of the edu TLD server – The DNS server always has the IP address of the root servers • • The local DNS server asks the edu TLD server for address of bohackpc 1. eecis. udel. edu. The TLD server does not know that IP address, but instead gives the IP address of the dns server for UD The local DNS server asks the UD dns server for the address of bohackpc 1. eecis. udel. edu. The UD dns server does not know the address, but instead returns the address of the eecis dns server. The local DNS server asks the eecis dns server for the address of bohacekpc 1. eecis. udel. edu Eecis dns server replies with the address. This address is returned to the host that orginally asked the question.

DNS Queries Root server (IP address are always known) Browser wants to show www. DNS Queries Root server (IP address are always known) Browser wants to show www. eecis. udel. edu Browser needs the IP address of www. eecis. udel. edu What is the IP address of www. eecis. udel. edu? Host asks local DNS server for IP address of www. eecis. udel. edu It is 128. 4. 1. 2 • • • Root server does not know. Instead, it responds with dns server that might, specifically, the TLD server for. edu What is the ip address of www. eecis. udel. edu? TLD server for. edu TLD server does not know. Instead replies with the What is the ip address of IP address of the name and www. eecis. udel. edu? DNS server UD What is the. UDaddress of does not ip dns server know. Instead it replies with Local DNS server checks if itwww. eecis. udel. edu? and IP address of has the IP the name address of www. eecis. udel. edu in cache. the eecis dns server. If not, it checks if is had the IP address of the DNS server of eecis. udel. edu in cache If not, it checks if IP address of the dns It is 128. 4. 1. 2 server of udel. edu in cache If not, it check if it has the IP address of the top-level domain server of edu in cache. if not, …. .

DNS Queries Root server (IP addresses are always known) What is the IP address DNS Queries Root server (IP addresses are always known) What is the IP address of www. eecis. udel. edu? Browser needs the IP Browser wants to address of show www. eecis. udel. edu Host asks local DNS server for IP address of www. eecis. udel. edu Root server does not know. Instead, it responds with name and address of a server that might, specifically, the What is the IP address of TLD server for. edu for www. eecis. udel. edu? . edu TLD server does not know. of What is the ip address Instead replies with the www. eecis. udel. edu? It is 128. 4. 1. 2 name and IP address of the UDel DNS server does not What is the IP address of know. 1. Local DNS server checks if it has the IP Instead it replies with address of www. eecis. udel. edu in cache. www. eecis. udel. edu? the name and IP address of 2. If not, it checks if is had the IP address of the eecis dns server. the DNS server of eecis. udel. edu in cache It is 128. 4. 1. 2 3. If not, it checks if it has the IP address of the DNS server of udel. edu in cache 4. If not, it checks if it has the IP address of the top-level domain server of edu in cache 5. . if not, …. . UD DNS server eecis DNS server

DNS Queries Browser needs the IP Browser wants to address of show www. eecis. DNS Queries Browser needs the IP Browser wants to address of show www. eecis. udel. edu Host asks local DNS server for IP address of www. eecis. udel. edu It is 128. 4. 1. 2 1. Local DNS server checks if it has the IP address of www. eecis. udel. edu in cache. 2. If yes, then return it

DNS Queries Browser needs the IP Browser wants to address of show www. eecis. DNS Queries Browser needs the IP Browser wants to address of show www. eecis. udel. edu Host asks local DNS server for IP address of www. eecis. udel. edu It is 128. 4. 1. 2 1. Local DNS server checks if it has the IP address of www. eecis. udel. edu in cache. 2. If not, it checks if is had the IP address of the DNS server of eecis. udel. edu in cache 3. If yes, query it… What is the IP address of www. eecis. udel. edu? It is 128. 4. 1. 2 eecis DNS server

DNS Queries Browser needs the IP Browser wants to address of show www. eecis. DNS Queries Browser needs the IP Browser wants to address of show www. eecis. udel. edu Host asks local DNS server for IP address of www. eecis. udel. edu It is 128. 4. 1. 2 1. Local DNS server checks if it has the IP address of www. eecis. udel. edu in cache. 2. If not, it checks if is had the IP address of the DNS server of eecis. udel. edu in cache 3. If not, it checks if it has the IP address of the DNS server of udel. edu in cache 4. If not, it checks if it has the IP address of the top-level domain server of edu in cache 5. . if so, then query it… What is the IP address of www. eecis. udel. edu? TLD server does not know. of What is the ip address Instead replies with the www. eecis. udel. edu? name and IP address of the UD DNS server does not What is the replies with know. Instead it IP address of www. eecis. udel. edu? the name and IP address of the eecis dns server. TLD server for. edu UD DNS server It is 128. 4. 1. 2 eecis DNS server

International domains (cc. TLD) • www. videos. cnn. com. cn • A root server International domains (cc. TLD) • www. videos. cnn. com. cn • A root server will provide the name and address of the. cn dns server. – However, this dns server could be able to answer com. cn or cnn. com. cn • It is possible that. cn (china) has its own TLD and. com. cn is a subdomain • However, usually, com. cn is the TLD – But it does not have to be this way • We usually call cnn. com. cn the second level domain, even though it is strictly a third level domain • For performance (i. e. , reducing the number of DNS servers with which the local DNS must communicate), it is best if the dns server for. cn can answer cnn. com. cn • International top-level domains can be identified by two letters, e. g. , . cn, and also in language-native script such as arabic or chinese characters

Attack on DNS • Hackers have tried to bring down DNS by performing a Attack on DNS • Hackers have tried to bring down DNS by performing a Do. S on the root servers – Do. S – denial of service. Sends more packets or requests for service than the server can accommodate. Resulting in poor service for normal users. • This failed because – There are many very strong root servers and have firewalls/filters • The attacks used ICMP ping packets • DNS requests would have been more effective – It is rare that a root server is needed • Usually only the TLD server is needed • Or only a domain server.

DNS Message Details • DNS Record – (Name, Value, Type, Class, TTL) – If DNS Message Details • DNS Record – (Name, Value, Type, Class, TTL) – If Type = A • Name is the host name • Value is the IP address of the host – If Type = NS • Name is a domain name • Value is the name of the DNS server for the domain • E. g. , (udel. edu, dns. udel. edu, NS, …, …) – Type = MX • Name is the domain name • Value is the name of the mail server for the domain • E. g. , (udel. edu, mail. udel. edu, MX, …, …) – Type = CName • Name is a host name • Value is the canonical name of the host • E. g. , (www. yahoo. com, relay-east. yahoo. com, CName, …, …) – TTL is the time to live, so DNS caches can be timed out – Class is no longer used, it is set as IN

DNS query • (Name, Type, Class) • (UDel. edu, MX, IN) – Please provide DNS query • (Name, Type, Class) • (UDel. edu, MX, IN) – Please provide the name of the UD’s mail server • (mail. UDel. edu, A, IN) – Please provide the IP address for mail. udel. edu

DNS message format DNS protocol : query and reply messages, both with same message DNS message format DNS protocol : query and reply messages, both with same message format msg header • identification: 16 bit # for query, reply to query uses same # • flags: – query or reply – recursion desired – recursion available – reply is authoritative

DNS message format Name, type fields for a query RRs in response to query DNS message format Name, type fields for a query RRs in response to query records for authoritative servers additional “helpful” info that may be used

DNS Queries Root server (IP addresses are always known) 1 0 0 0 (www. DNS Queries Root server (IP addresses are always known) 1 0 0 0 (www. eecis. udel. edu, A, IN) 0 0 Browser needs the IP Browser wants to address of show www. eecis. udel. edu 0 4 0 1 (edu, edu-server. A. net, NS, IN) 0 (edu-server. A. net, 124. 5. 1. 1, A, IN) 0 1 0 0 0 (edu, edu-server. B. net, NS, IN) (www. eecis. udel. edu, A, IN) TLD (edu-server. B. net, 124. 5. 1. 2, A, IN) server for. edu (www. eecis. udel. edu, A, IN) 0 0 1 0 0 (www. eecis. udel. edu, A, IN) 4 0 (udel. edu, dns 2. udel. edu, NS, IN) (udel. edu, dns 2. udel. edu, 128. 178. 2. 2, A, IN) UD DNS server 0 1 (udel. edu, dns 1. udel. edu, NS, IN) 1. Local DNS server checks if it has the IP 0 0 (dns 1. udel. edu, 128. 173. 2. 1, A, IN) address of www. eecis. udel. edu in cache. 4 0 (www. eecis. udel. edu, A, IN) 2. If not, it checks if is had the IP address of the DNS server of eecis. udel. edu in cache (eecis. udel. edu, dns 1. eecis. udel. edu, NS, IN) (dns 1. eecis. udel. edu, 128. 4. 1. 10, A, IN) 3. If not, it checks if it has the IP address of (eecis. udel. edu, dns 2. udel. edu, NS, IN) the DNS server of udel. edu in cache (dns 2. udel. edu, 128. 4. 1. 11, A, IN) 4. If not, it checks if it has the IP address of 1 0 the top-level domain server of edu in cache eecis DNS server 0 0 5. . if not, …. . (www. eecis. udel. edu, 128. 4. 1. 1, A, IN)

DNS Header and Flags • The DNS header has a query ID – The DNS Header and Flags • The DNS header has a query ID – The query has this ID and the server copies this ID into the response • Flag indicating query or answer • Flag indicating whether the server is the authoritative server for the answer (as oppose to a cached answer) • A recursive desired flag indicating that the host/server would like the server to perform the recursive DNS lookup • A recursive available flag indicating whether the server is available to to the recursive lookup

Exploring DNS with dig • • • Dig is installed on stimpy and perhaps Exploring DNS with dig • • • Dig is installed on stimpy and perhaps other eecis linux machines A windows version of dig is also available E. g. , – >> dig udel. edu – Returns information about the dns entry for udel • E. g. , – >>dig @dns. eecis. udel. edu – Returns information about the dns entry for udel that is stored in dns. eecis. udel. edu • E. g. , – >> dig edu – Returns a list of TLD edu servers • E. g. , – >> dig – Returns list of root servers • E. g. , – >> dig udel. edu MX – Returns the mail server for udel. edu

DNS • Which transport protocol should DNS use? • Why? DNS • Which transport protocol should DNS use? • Why?

Captive Portal Problem • • • Use Udel Wifi with a new machine. Instead Captive Portal Problem • • • Use Udel Wifi with a new machine. Instead of google. com, I get some UD web page that requires log in I log in, and it says that I should reboot. I don’t reboot, but when I go to google. com, I still get UD login page. However, if I go to some other page (e. . g, NYTimes. com, it works fine) • What is going on? Why would reboot fix it? What else would fix the problem • Answer: when a new machine connects to UD wifi, all dns request return the IP of UD login page. After logged in, DNS works correctly. However, my machine’s DNS cache will still point to UD login page, until I reboot. • DNS cache – Local DNS server cache – DNS cache on machine (this machine) • Ipconfig /displaydns

DNS Attack Local DNS server client Bo. A DNS server Request IP of www. DNS Attack Local DNS server client Bo. A DNS server Request IP of www. Bo. A. com 1. 1 Request IP of www. Bo. A. com attacker IP of www. Bo. A. com 1. 1 TCP+HTTP connection to 1. 1 HTTP: : data: “welcome to Bo. A, please enter your acct# and password • Client request IP address of Bo. A from local DNS server • Local DNS server request address from Bo. A DNS server • Before Bo. A’s server can respond, the attacker sends a response • The DNS server sends this response to the client, • The client then accesses the incorrect web page, which appears exactly the same as Bo. A’s web page Note, this attack has nothing to do with the security of your machine.

DNS Attack: really? Local DNS server client Bo. A DNS server Request IP of DNS Attack: really? Local DNS server client Bo. A DNS server Request IP of www. Bo. A. com 1. 1 Request IP of www. Bo. A. com attacker IP of www. Bo. A. com 1. 1 TCP+HTTP connection to 1. 1 HTTP: : data: “welcome to Bo. A, please enter your acct# and password • How does the attacker know the exact time to send the fake DNS reply? • It does not, instead the attacker continuously sends replies • But what information is contained in the DNS response that the attacker must guess correctly? • Source IP address of Bo. A DNS server • There are not that many • The local DNS’s server’s source port • The destination port is always 53, but sometimes the source port is also 53, or changes in a predictable way, e. g. , increments • The DNS query Id • This is typically incremented The attacker, which is a DNS server as well, makes DNS request that cause the DNS server to request to itself. In this way, the attacker can determine various numbers

DNS Attack: really? Local DNS server client Bo. A DNS server Request IP of DNS Attack: really? Local DNS server client Bo. A DNS server Request IP of www. Bo. A. com 1. 1 Request IP of www. Bo. A. com attacker IP of www. Bo. A. com 1. 1 TCP+HTTP connection to 1. 1 HTTP: : data: “welcome to Bo. A, please enter your acct# and password • How does the attacker know the exact time to send the fake DNS reply? • It does not, instead the attacker continuously sends replies • But what information is contained in the DNS response that the attacker must guess correctly? • Source IP address of Bo. A DNS server • There are not that many • The local DNS’s server’s source port • The destination port is always 53, but sometimes the source port is also 53, or changes in a predictable way, e. g. , increments • The DNS query Id • This is typically incremented By adding randomness to the source port and query Id, the DNS attack becomes very difficult. Still, it only needs to succeed once to gain information. Perhaps it will take months or years, but it might work

DNS poisoning • A DNS response might include additional responses, e. g. , for DNS poisoning • A DNS response might include additional responses, e. g. , for Bo. A, but with the incorrect IP. • This additional response is cached • E. g. , send email stating that pictures of naked people can be found at www. evil. com • But dns. evil. com includes additional records • Solution: ignore this type of additional records • DNSSec solves the known security problems with DNS

Good DNS “attack” • Open. DNS keeps track of bad web sites and will Good DNS “attack” • Open. DNS keeps track of bad web sites and will return a different IP address when the web address for these bad web sites is requested

Road Map • • Application basics Web FTP Email DNS P 2 P DHT Road Map • • Application basics Web FTP Email DNS P 2 P DHT

Peer-to-peer file sharing • About P 2 P – 30% or more of the Peer-to-peer file sharing • About P 2 P – 30% or more of the bytes transferred on the Internet are from P 2 P users – Skype is a very successful P 2 P Vo. IP app • Written in 3 -4 months • Topics covered – Scalability – P 2 P querying – Bit. Torrent

Pure P 2 P architecture • Review: What is the difference between peer-to-peer and Pure P 2 P architecture • Review: What is the difference between peer-to-peer and client/server? – Each hosts acts as both a server and a client. • • • no always-on server arbitrary end systems directly communicate peers are intermittently connected and may change IP addresses Pure P 2 P has significant drawbacks. P 2 P-like systems with some central servers are more common. But in all cases, the file transfer is between peers, not from servers. peer-peer

File Distribution: Server-Client vs P 2 P Question : How much time to distribute File Distribution: Server-Client vs P 2 P Question : How much time to distribute file from one server to N peers? us: server upload bandwidth Server us File, size F d. N u 1 d 1 u 2 ui: peer i upload bandwidth d 2 Network (with abundant bandwidth) di: peer i download bandwidth

File distribution time: server-client • Time for the server to send a copy to File distribution time: server-client • Time for the server to send a copy to a single client – F/us • Time for the server send N copies: – NF/us time • client i takes F/di time to download Server F us d. N u 1 d 1 u 2 d 2 Network (with abundant bandwidth) Time to distribute F to N clients using = dcs = max { NF/us, F/min(di) } i client/server approach increases linearly in N (for large N)

File distribution time: P 2 P Server • server must send one copy: – File distribution time: P 2 P Server • server must send one copy: – F/us time F us • client i download time – F/di • Total data to be downloaded – NF d. N u 1 d 1 u 2 d 2 Network (with abundant bandwidth) • fastest possible transfer rate: us + Sui d. P 2 P = max { F/us, F/min(di) , NF/(us + i S ui ) } Can you make a schedule for the download the take this amount?

P 2 P schedule • Important: we model data flow as a continuous stream P 2 P schedule • Important: we model data flow as a continuous stream of data, not packets or even bytes • Assume each host has the same upload data rate, uc • Server delivers a chunk of size F/N to each host – The server sends chunks to each of the N host simultaneously – Duration = F/us • As data arrives from the server, each host delivers the chunk to all N-1 hosts – Client’s total upload rate is uc – So each client gets data at rate uc/(N-1) – Duration to send its chunk (of size F/N) to all of the other hosts • = (F/N) / (uc/(N-1)) = F/ uc N/(N-1) • Duration = max(F/u , F/u N/(N-1)) Server us us/N client uc/(N-1)

 • Scheme – – • Server send chunk of size zi to host • Scheme – – • Server send chunk of size zi to host i Host i send this chunk to all other N-1 hosts • The download to the host runs simultaneous with the upload to the other hosts Objective: each host completes its upload at the same time – This a difficult since each host has a different upload data rate • Let T be the time for each host to send the chunk to all N-1 other hosts. And assume that T is shorter than the time it takes for the server to deliver the file to all hosts (the server is the bottleneck) • Then T = (N-1) z i / ui • Solve for zi we get, zi = ui T/(N-1) • F = Sum zi • F = sum ui T/(N-1) = T/(N-1) sum ui • T/(N-1) = F/sum(u i) • zi =F ui /sum(ui) • Duration from server = F/ u s • Check our assumption, is F/ u s > T ? – Is F/ us > F (N-1)/sum(ui) – Is us < sum(ui)/(N-1) – Is N us – us < sum(ui) – Is N us < us + sum(ui) – Our assumption is true if us < (us + sum(ui))/N, or us < sum(ui))/(N-1)

 • • Suppose that us > sum(ui))/(N-1), then the server could send more • • Suppose that us > sum(ui))/(N-1), then the server could send more data than the previous scheme Scheme – The server gives host i chunk of size zi. – Host i sends this chunk to all other hosts – Server also sends chunk of size zs to all hosts • Objective, find zi and zs so that each host and the server finish at the same time • • Let T be the duration of download. T = (N-1) zi / ui – Or zi = T/(N-1) ui • T = (F-zs)/ us + N zs / us – Or zs = (T-F/ us)/(N-1)* us • • • Must have F = sum(zi) + zs Which implies, F = sum(T/(N-1) ui) + (T-F/ us)/(N-1) us Which implies F = T/(N-1)(us + sum(ui)) -F/(N-1) NF = T (us + sum(ui)) T = NF/ (us + sum(ui)) Check that zs >=0 – – Is (T-F/ us)/(N-1)* us >0 Is (T-F/ us)>0 Is NF/ (us + sum(ui)) > F/ us Is (us + sum(ui)) /N < us, yes

File distribution time: P 2 P Server • server must send one copy: – File distribution time: P 2 P Server • server must send one copy: – F/us time F us • client i download time – F/di • Total data to be downloaded – NF d. N u 1 d 1 u 2 d 2 Network (with abundant bandwidth) • fastest possible transfer rate: us + Sui d. P 2 P = max { F/us, F/min(di) , NF/(us + i S ui ) } Can you make a schedule for the download the take this amount?

Server-client vs. P 2 P: example Client upload rate = u, F/u = 1 Server-client vs. P 2 P: example Client upload rate = u, F/u = 1 hour, us = 10 u, dmin ≥ us Conclusion: P 2 P systems are scalable. But the load is distributed to all users, so P 2 P users have more load than clients in the client-server model.

Project 2 Project 2

Peer-to-peer querying • • While the file is transferred from the peer, how to Peer-to-peer querying • • While the file is transferred from the peer, how to find the file Options – Centralize directory • Napster • Single point of failure • Congestion – • • Server would be the performance bottleneck Target for the RIAA Always up (as oppose to user machine that goes up and down) Easy to find Easy protocol – Query flooding • • Gnutella Hosts find other host and forms a network of neighbors (overlay network) Search for a file (covered on the next slide) How to set up the network – bootstrap? – Have a central list of peers – Have distributed lists of peers – Search out a peer by scanning (Project 2) • Flood the network to answer query

Flooding Search searcher O Flooding Search searcher O

Flooding Search searcher O Searcher: Send a message to all neighbors that searcher is Flooding Search searcher O Searcher: Send a message to all neighbors that searcher is looking for file xyz

Flooding Search Receive the search message and respond if they have the file, otherwise, Flooding Search Receive the search message and respond if they have the file, otherwise, … searcher O

Flooding Search searcher O Every host that received message: Send a message to all Flooding Search searcher O Every host that received message: Send a message to all neighbors that searcher is looking for file xyz

Flooding Search Receive the search message and respond if they have the file, otherwise, Flooding Search Receive the search message and respond if they have the file, otherwise, … searcher O

Flooding Search searcher O Every host that received message: Send a message to all Flooding Search searcher O Every host that received message: Send a message to all neighbors that searcher is looking for file xyz

Flooding Search searcher O Every host that received message: Send a message to all Flooding Search searcher O Every host that received message: Send a message to all its neighbors that searcher is looking for file xyz

Flooding Search Received message for the first time Received message again, do not retransmit Flooding Search Received message for the first time Received message again, do not retransmit message searcher O Every host that received message: Every host that received the message for the first time: Send a message to all neighbors that searcher is looking for file xyz

Querying Flooding State Diagram Originator of search User Request for File Generate Id Send Querying Flooding State Diagram Originator of search User Request for File Generate Id Send request message (with message Id) wait

Querying Flooding State Diagram Listening peer wait Request arrives Get message Id Have seen Querying Flooding State Diagram Listening peer wait Request arrives Get message Id Have seen request before Check for file in directory Send request to all neighbors File is in local dir Send response to peer that requested file

Querying Flood Nodes that don’t have the file Nodes that do have the file Querying Flood Nodes that don’t have the file Nodes that do have the file Don’t flood the entire network when searching.

Expanding Ring Search destination searcher O Originator: 0. set K=1 1. Generate ID and Expanding Ring Search destination searcher O Originator: 0. set K=1 1. Generate ID and message with TTL=K 2. Wait TO seconds 1. If answer arrives, then exit 3. K=K+1, go to 1 Peer: 1. Wait for message 2. If message Id is old, go to 1 3. Check is query can be answer, 1. If so, send answer to originator and go to 1 4. Message TTL— 5. If TTL>0, send message to all neighbors, go to 1

Expanding Ring Search destination Time To Live TTL=1 searcher O Originator: 0. set K=1 Expanding Ring Search destination Time To Live TTL=1 searcher O Originator: 0. set K=1 1. Generate ID and message with TTL=K 2. Wait TO seconds 1. If answer arrives, then exit 3. K=K+1, go to 1 Peer: 1. Wait for message 2. If message Id is old, go to 1 3. Check is query can be answer, 1. If so, send answer to originator and go to 1 4. Message TTL— 5. If TTL>0, send message to all neighbors, go to 1

Expanding Ring Search destination TTL=2 searcher O Originator: 0. set K=1 1. Generate ID Expanding Ring Search destination TTL=2 searcher O Originator: 0. set K=1 1. Generate ID and message with TTL=K 2. Wait TO seconds 1. If answer arrives, then exit 3. K=K+1, go to 1 Peer: 1. Wait for message 2. If message Id is old, go to 1 3. Check is query can be answer, 1. If so, send answer to originator and go to 1 4. Message TTL— 5. If TTL>0, send message to all neighbors, go to 1

Expanding Ring Search destination TTL=2 searcher O Originator: 0. set K=1 1. Generate ID Expanding Ring Search destination TTL=2 searcher O Originator: 0. set K=1 1. Generate ID and message with TTL=K 2. Wait TO seconds 1. If answer arrives, then exit 3. K=K+1, go to 1 Peer: 1. Wait for message 2. If message Id is old, go to 1 3. Check is query can be answer, 1. If so, send answer to originator and go to 1 4. Message TTL— 5. If TTL>0, send message to all neighbors, go to 1

Expanding Ring Search destination TTL=2 searcher O Originator: 0. set K=1 1. Generate ID Expanding Ring Search destination TTL=2 searcher O Originator: 0. set K=1 1. Generate ID and message with TTL=K 2. Wait TO seconds 1. If answer arrives, then exit 3. K=K+1, go to 1 Peer: 1. Wait for message 2. If message Id is old, go to 1 3. Check is query can be answer, 1. If so, send answer to originator and go to 1 4. Message TTL— 5. If TTL>0, send message to all neighbors, go to 1

Expanding Ring Search destination TTL=3 searcher O Originator: 0. set K=1 1. Generate ID Expanding Ring Search destination TTL=3 searcher O Originator: 0. set K=1 1. Generate ID and message with TTL=K 2. Wait TO seconds 1. If answer arrives, then exit 3. K=K+1, go to 1 Peer: 1. Wait for message 2. If message Id is old, go to 1 3. Check is query can be answer, 1. If so, send answer to originator and go to 1 4. Message TTL— 5. If TTL>0, send message to all neighbors, go to 1

Expanding Ring Search destination TTL=3 searcher O Originator: 0. set K=1 1. Generate ID Expanding Ring Search destination TTL=3 searcher O Originator: 0. set K=1 1. Generate ID and message with TTL=K 2. Wait TO seconds 1. If answer arrives, then exit 3. K=K+1, go to 1 Peer: 1. Wait for message 2. If message Id is old, go to 1 3. Check is query can be answer, 1. If so, send answer to originator and go to 1 4. Message TTL— 5. If TTL>0, send message to all neighbors, go to 1

Expanding Ring Search destination TTL=3 searcher O Originator: 0. set K=1 1. Generate ID Expanding Ring Search destination TTL=3 searcher O Originator: 0. set K=1 1. Generate ID and message with TTL=K 2. Wait TO seconds 1. If answer arrives, then exit 3. K=K+1, go to 1 Peer: 1. Wait for message 2. If message Id is old, go to 1 3. Check is query can be answer, 1. If so, send answer to originator and go to 1 4. Message TTL— 5. If TTL>0, send message to all neighbors, go to 1

Expanding Ring Search destination TTL=3 searcher O Originator: 0. set K=1 1. Generate ID Expanding Ring Search destination TTL=3 searcher O Originator: 0. set K=1 1. Generate ID and message with TTL=K 2. Wait TO seconds 1. If answer arrives, then exit 3. K=K+1, go to 1 Peer: 1. Wait for message 2. If message Id is old, go to 1 3. Check is query can be answer, 1. If so, send answer to originator and go to 1 4. Message TTL— 5. If TTL>0, send message to all neighbors, go to 1

Expanding Ring Search destination TTL=4 searcher O Originator: 0. set K=1 1. Generate ID Expanding Ring Search destination TTL=4 searcher O Originator: 0. set K=1 1. Generate ID and message with TTL=K 2. Wait TO seconds 1. If answer arrives, then exit 3. K=K+1, go to 1 Peer: 1. Wait for message 2. If message Id is old, go to 1 3. Check is query can be answer, 1. If so, send answer to originator and go to 1 4. Message TTL— 5. If TTL>0, send message to all neighbors, go to 1

Expanding Ring Search destination TTL=4 searcher O Originator: 0. set K=1 1. Generate ID Expanding Ring Search destination TTL=4 searcher O Originator: 0. set K=1 1. Generate ID and message with TTL=K 2. Wait TO seconds 1. If answer arrives, then exit 3. K=K+1, go to 1 Peer: 1. Wait for message 2. If message Id is old, go to 1 3. Check is query can be answer, 1. If so, send answer to originator and go to 1 4. Message TTL— 5. If TTL>0, send message to all neighbors, go to 1

Expanding Ring Search destination TTL=4 searcher O Originator: 0. set K=1 1. Generate ID Expanding Ring Search destination TTL=4 searcher O Originator: 0. set K=1 1. Generate ID and message with TTL=K 2. Wait TO seconds 1. If answer arrives, then exit 3. K=K+1, go to 1 Peer: 1. Wait for message 2. If message Id is old, go to 1 3. Check is query can be answer, 1. If so, send answer to originator and go to 1 4. Message TTL— 5. If TTL>0, send message to all neighbors, go to 1

Expanding Ring Search destination TTL=4 searcher O Originator: 0. set K=1 1. Generate ID Expanding Ring Search destination TTL=4 searcher O Originator: 0. set K=1 1. Generate ID and message with TTL=K 2. Wait TO seconds 1. If answer arrives, then exit 3. K=K+1, go to 1 Peer: 1. Wait for message 2. If message Id is old, go to 1 3. Check is query can be answer, 1. If so, send answer to originator and go to 1 4. Message TTL— 5. If TTL>0, send message to all neighbors, go to 1

Expanding Ring Search destination TTL=4 searcher O Originator: 0. set K=1 1. Generate ID Expanding Ring Search destination TTL=4 searcher O Originator: 0. set K=1 1. Generate ID and message with TTL=K 2. Wait TO seconds 1. If answer arrives, then exit 3. K=K+1, go to 1 Peer: 1. Wait for message 2. If message Id is old, go to 1 3. Check is query can be answer, 1. If so, send answer to originator and go to 1 4. Message TTL— 5. If TTL>0, send message to all neighbors, go to 1

Expanding Ring Search destination TTL=4 searcher O Originator: 0. set K=1 1. Generate ID Expanding Ring Search destination TTL=4 searcher O Originator: 0. set K=1 1. Generate ID and message with TTL=K 2. Wait K*TO seconds 1. If answer arrives, then exit 3. If K>max_K, exit 4. K=K+1, go to 1 Peer: 1. Wait for message 2. If message Id is old, go to 1 3. Check is query can be answer, 1. If so, send answer to originator and go to 1 4. Message TTL— 5. If TTL>0, send message to all neighbors, go to 1

(hierarchical peer-to-peer network) • • Ka. Za. A Not all peers are equal – (hierarchical peer-to-peer network) • • Ka. Za. A Not all peers are equal – super peers (? ) – • • • Super peers (group leaders) have higher bit-rate connections, are more stable, etc. Peers connect to group leaders The group leaders keep a list of files shared by all their children. group leaders connect to a small number of other group leaders A child host will ask its group leader for a file, if the group leader does not know where it is, it will flood the network of group leaders. The response from other group leaders follows a reverse path to the asking group leader (so other leader can cache the response) A file is identified with a ID (e. g. , MD 5) that can take a string (e. g. , file) and come to a unique ID. A small change in the file causes a large change in the ID. It is not possible to construct two files that have the same ID. The ID is a finger print. Since files are ID-ed, multiple copies of the same file can be found and these copies can be downloaded from multiple hosts in parallel.

Bit. Torrent • Centralized P 2 P – A centralized server, or tracker, tracks Bit. Torrent • Centralized P 2 P – A centralized server, or tracker, tracks the clients involved in the P 2 P transfer – This is similar to Napster – Companies that host these site get sued and are attacked by DDo. S • Components of Bit. Torrent System – – Torrent Files Trackers Seeders Peers • Trackerless is also possible

Torrent File • Required to download • Can be found on web sites or Torrent File • Required to download • Can be found on web sites or sent by email • Contains information about the file and the tracker – Announce: the URL of the tracker – Creation date – Info • • Length of file Name of file Length of each piece (except for the last) Pieces – the 20 B SHA-1 value of each piece • If the download contains multiple files, then a single torrent file will contain information about all files.

Tracker • Make a HTTP Get request to the tracker specifying the SHA-1 hash Tracker • Make a HTTP Get request to the tracker specifying the SHA-1 hash of the file to be downloaded – The request also includes the number of bytes downloaded and the number uploaded – If the client does not upload enough, the tracker might not provide a reply • The reply contains – The time when the tracker information should be refreshed (usually 30 minutes) – A list of the peers that have the file • IP address and port (usually 6881) • Peer ID

File distribution with Bit. Torrent tracker: tracks peers participating in torrent obtain list of File distribution with Bit. Torrent tracker: tracks peers participating in torrent obtain list of peers trading chunks peer

Bit. Torrent (1) • file divided into 256 KB chunks. • peer joining torrent: Bit. Torrent (1) • file divided into 256 KB chunks. • peer joining torrent: – has no chunks, but will accumulate them over time – registers with tracker to get list of peers, connects to subset of peers (“neighbors”) • while downloading, peer uploads chunks to other peers. • peers may come and go • once peer has entire file, it may (selfishly) leave or (altruistically) remain

Bit. Torrent (2) Sending Chunks: tit-for-tat • Alice sends chunks to four Pulling Chunks Bit. Torrent (2) Sending Chunks: tit-for-tat • Alice sends chunks to four Pulling Chunks neighbors currently sending her • at any given time, different chunks at the highest rate peers have different subsets of – re-evaluate top 4 every 10 file chunks secs • periodically, a peer (Alice) • every 30 secs: randomly select asks each neighbor for list of another peer, starts sending chunks that they have. chunks • Alice sends requests for her – newly chosen peer may join missing chunks top 4 – rarest first – “optimistically unchoke” – So rarest chunks are spread, and chunks are uniformly common

Bit. Torrent: Tit-for-tat (1) Alice “optimistically unchokes” Bob (2) Alice becomes one of Bob’s Bit. Torrent: Tit-for-tat (1) Alice “optimistically unchokes” Bob (2) Alice becomes one of Bob’s top-four providers; Bob reciprocates (3) Bob becomes one of Alice’s top-four providers With higher upload rate, can find better trading partners & get file faster!

Bit. Torrent Pros/Cons • Centralized server • Slow to get the transfer started – Bit. Torrent Pros/Cons • Centralized server • Slow to get the transfer started – Web transfers start much faster and will achieve a sustained rate • Peers must upload – Some peers might not be in position to upload (e. g. , mobile phone) • Chunks can be corrupted – HBO distributed fake chunks – Since the SHA-1 hash does not match what is given in the Torrent File, the chunk is dropped after it is downloaded • This wastes bandwidth and can increase download time

Road Map • • Application basics Web FTP Email DNS P 2 P DHT Road Map • • Application basics Web FTP Email DNS P 2 P DHT