0% found this document useful (0 votes)
51 views5 pages

Ere Redes de Computadores - Turma: Coi06

The document summarizes the results of analyzing network packet traces from a web browser making HTTP requests. It finds that the browser communicates using HTTP 1.1, accepts Portuguese and English languages, and obtains content from servers at several IP addresses. The requests include headers like Authorization and If-Modified-Since, and servers respond with status codes like 200, 304, and 401. Content is transferred across multiple TCP segments in a serial rather than parallel fashion.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
51 views5 pages

Ere Redes de Computadores - Turma: Coi06

The document summarizes the results of analyzing network packet traces from a web browser making HTTP requests. It finds that the browser communicates using HTTP 1.1, accepts Portuguese and English languages, and obtains content from servers at several IP addresses. The requests include headers like Authorization and If-Modified-Since, and servers respond with status codes like 200, 304, and 401. Content is transferred across multiple TCP segments in a serial rather than parallel fashion.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 5

ERE REDES DE COMPUTADORES - Turma: COI06

1. Is your browser running HTTP version 1.0 or 1.1? What version of HTTP is the server running?

Versão do HTTP do meu navegador : 1.1

Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.14 mod_perl/2.0.11 Perl/v5.16.3\r\n

2. What languages (if any) does your browser indicate that it can accept to the server?
Accept-Language: pt-PT,pt;q=0.9,en-US;q=0.8,en;q=0.7\r\n

3. What is the IP address of your computer? Of the gaia.cs.umass.edu server?

Meu endereço: 192.168.0.9

Servidor gaia.cs.umass.edu: 128.119.245.12

4. What is the status code returned from the server to your browser?

200 OK: solicitação bem-sucedida

5. When was the HTML file that you are retrieving last modified at the server?

Last-Modified: Thu, 18 Feb 2021 06:59:01 GMT\r\n

6. How many bytes of content are being returned to your browser?

Content Length 128 bytes

7. By inspecting the raw data in the packet content window, do you see any headers within the data that are not
displayed in the packet-listing window? If so, name one.

Não consegui encontrar.


8. Inspect the contents of the first HTTP GET request from your browser to the server. Do you see an “IF-MODIFIED-
SINCE” line in the HTTP GET.

Não
9. Inspect the contents of the server response. Did the server explicitly return the contents of the file? How can you
tell?

Sim. Porque podemos ver a linha de resposta Line-based text data: text/html (10 lines)

10. Now inspect the contents of the second HTTP GET request from your browser to the server. Do you see an “IF-
MODIFIED-SINCE:” line in the HTTP GET? If so, what information follows the “IF-MODIFIED-SINCE:” header?

Sim. As informações são: If-Modified-Since: Thu, 18 Feb 2021 06:59:01 GMT\r\n que é a ultima data de modificação do
arquivo

11. What is the HTTP status code and phrase returned from the server in response to this second HTTP GET? Did the
server explicitly return the contents of the file? Explain.

HTTP/1.1 304 Not Modified\r\n

O servidor não retornou o conteúdo porque o navegador carregou do cache

12. How many HTTP GET request messages did your browser send? Which packet number in the trace contains the GET
message for the Bill or Rights?

Somente uma mensagem de solicitação HTTP GET para o servidor 128.119.245.12 no pacote número 12

13. Which packet number in the trace contains the status code and phrase associated with the response to the HTTP
GET request?

O pacote que contém o código de status e a frase que o servidor enviou em resposta à mensagem GET era o pacote
número 19

14. What is the status code and phrase in the response?

HTTP/1.1 200 OK\r\n

15. How many data-containing TCP segments were needed to carry the single HTTP response and the text of the Bill of
Rights?

Os dados foram enviados em 4 segmentos TCP para o navegador


[4 Reassembled TCP Segments (4861 bytes): #12(1460), #13(1460), #14(1460), #15(481)]
16. How many HTTP GET request messages did your browser send? To which Internet addresses were these GET
requests sent?

Meu navegador enviou 3 solicitações de mensagem HTTP GET

128.119.245.12

172.217.29.14

178.79.137.164

17. Can you tell whether your browser downloaded the two images serially, or whether they were downloaded from
the two web sites in parallel? Explain.

O navegador baixou as duas imagens em série. A primeira imagem foi solicitada e enviada antes da segunda imagem ser
solicitada pelo navegador. Se estivessem sendo executados em paralelo, os dois arquivos teriam sido solicitados e, em
seguida, teriam retornado no mesmo período. Nesse caso, a segunda imagem só foi solicitada após o retorno da
primeira.
18. What is the server’s response (status code and phrase) in response to the initial HTTP GET message from your
browser?

HTTP/1.1 401 Unauthorized\r\n “401 Não autorizado”

19. When your browser’s sends the HTTP GET message for the second time, what new field is included in the HTTP GET
message?

Authorization: Basic d2lyZXNoYXJrLXN0dWRlbnRzOm5ldHdvcms=\r\n

You might also like