Changes between Version 12 and Version 13 of UsersGuide/Networking


Ignore:
Timestamp:
2016-02-29T19:42:09Z (8 years ago)
Author:
Jiri Svoboda
Comment:

Nterm change, netecho

Legend:

Unmodified
Added
Removed
Modified
  • UsersGuide/Networking

    v12 v13  
    120120
    121121{{{
    122 nterm <host> <port>
     122nterm <host>:<port>
    123123}}}
    124124
    125125Connects to a socket via TCP and emulates a dumb terminal, similar to e.g. Netcat. This can be used for debugging (e.g. connect to an HTTP or FTP server, connect to netecho) or to connect to remcons in another HelenOS instance.
     126
     127=== Netecho ===
     128
     129UDP testing utility, similar to Netcat's UDP mode. It can either listen for messages on a local port and print them:
     130
     131{{{
     132netecho -l <port>
     133}}}
     134
     135or you can use it to send UDP messages, either from the command line:
     136
     137{{{
     138netecho -d <host>:<port> <message1> [<message2>...]
     139}}}
     140
     141or interactively
     142
     143{{{
     144netecho -d <host>:<port>
     145}}}
    126146
    127147== Network services ==