Première page Précédent Suivant Dernière page Résumé Image
TELNET: Commandes
- Signalisation dans le canal de communication (in band) : grâce à l'octet 0xff (IAC)
- EOF, SUSP, ABORT... SB, SE... WILL, WONT, DO, DONT... IAC : principalement pour les options
- négociation avec confirmation : DO -> WILL
- + 40 options (echo, terminal type, window size...)
- sous options encadrées par SB et SE
- exemple indication du type de terminal utilisé par le client :
- client : <IAC, WILL, 24>
- « je vais utiliser un type de terminal »
- serveur : <IAC, DO, 24>
- serveur : <IAC, SB, 24, 1, IAC, SE>
- « quel type de terminal »
- client : <IAC, SB, 24, 0, 'v', 't', '2', '2', '0', IAC, SE> ...
Notes: