ok
2025-02-11 16:14:18 +01:00
2025-02-23 18:50:21 +01:00
ok
2025-02-25 10:09:09 +01:00
2019-01-28 11:44:23 +01:00
ok
2025-02-11 16:14:18 +01:00

Squelette du TP

Partie 1 : protocole TFTP

Exercice 1 : Observation

Côté client

tftp localhost 6969
tftp> get test.html
put test.html
quit
Transfer timed out.

Côté serveur

nc -u -l -p 6969
test.htmlnetasciitest.htmlnetasciitest.htmlnetasciitest.htmlnetasciitest.htmlnetasciitest.htmlnetasciitest.htmlnetasciitest.htmlnetasciitest.htmlnetasciitest.htmlnetascii

Exercice 2 : Décodage des requêtes.

Exercice 3 : Acquitter

Exercice 4

Partie 2 : Chat UDP MULTICAST

Utilisation

Pour utiliser ce tp vous devez :

  1. le forker via le lien fork ci-dessus.
  2. Votre repository doit être privé. Vous devez le partager avec votre encadrant de TP.
  3. vous obtiendrez un nouveau lien : par exemple git@gitlab.istic.univ-rennes1.fr:monpseudo/....
  4. Dans le workspace d'eclipse faites git clone git@gitlab.istic.univ-rennes1.fr:monpseudo/... avec l'url précédente.
  5. Ouvrez le workspace dans eclipse.
  6. Utilisez Import> "Existing Maven Projects".
  7. Selectionnez le projet et validez.

Vous devriez avoir une version du projet dans votre propre compte gitlab.

Vous pouvez le partager avec votre binome et l'encadrant de TP.

Rapport

Votre rapport doit être écrit ici en markdown.

Vous trouverez la syntaxe de markdown ici : https://docs.gitlab.com/ee/user/markdown.html

Placez vos images dans le répertoire images si nécessaire.

Faire des diagrammes

En particulier vous pouvez utiliser mermaid :

sequenceDiagram
    participant Alice
    participant Bob
    Alice->John: Hello John, how are you?
    loop Healthcheck
        John->John: Fight against hypochondria
    end
    Note right of John: Rational thoughts <br/>prevail...
    John-->Alice: Great!
    John->Bob: How about you?
    Bob-->John: Jolly good!

Insérer du code

Insérer du code :

public interface ClientHandler {
    public void handle();
}

et des résultats :

[yo@capybara dkgr]$ nc google.fr 80
PWET /
HTTP/1.0 400 Bad Request
Content-Type: text/html; charset=UTF-8
Referrer-Policy: no-referrer
Content-Length: 1555
Date: Mon, 21 Jan 2019 12:18:02 GMT

<!DOCTYPE html>
<html lang=en>
  <meta charset=utf-8>
Description
TP UDP
Readme 52 KiB
Languages
Java 100%