STFW for info on the p2p protocols.

The official list of assigned ports (a STARTING point as many apps use
un-assigned ports) is http://www.iana.org/assignments/port-numbers.

The default protocol list ntop handles is in ntop.c around line 540:

void addDefaultProtocols(void) {
  myGlobals.FTPIdx = handleProtocolList("FTP",      "ftp|ftp-data|");
  handleProtocolList("HTTP",     "http|www|https|3128|"); /* 3128 is HTTP
cache */
  handleProtocolList("DNS",      "name|domain|");
  handleProtocolList("Telnet",   "telnet|login|");
  handleProtocolList("NBios-IP", "netbios-ns|netbios-dgm|netbios-ssn|");
  handleProtocolList("Mail",     "pop-2|pop-3|pop3|kpop|smtp|imap|imap2|");
  handleProtocolList("DHCP-BOOTP", "67-68|");
  handleProtocolList("SNMP",     "snmp|snmp-trap|");
  handleProtocolList("NNTP",     "nntp|");
  handleProtocolList("NFS",      "mount|pcnfs|bwnfs|nfsd|nfsd-status|");
  handleProtocolList("X11",      "6000-6010|");
  /* 22 == ssh (just to make sure the port is defined) */
  handleProtocolList("SSH",      "22|");

  /* Peer-to-Peer Protocols */
  myGlobals.GnutellaIdx = handleProtocolList("Gnutella", "6346|6347|6348|");
  myGlobals.KazaaIdx = handleProtocolList("Kazaa",       "1214|");
  myGlobals.WinMXIdx = handleProtocolList("WinMX",       "6699|7730|");
  myGlobals.DirectConnectIdx = handleProtocolList("DirectConnect",    "0|");
/* Dummy port as this is a pure P2P protocol */
  handleProtocolList("eDonkey",    "4661-4665|");

  handleProtocolList("Messenger", "1863|5000|5001|5190-5193|");
}

As you can see, messenger is really a conglomeration of a bunch of IMs.  MS
Messenger uses 1863, AIM used 5190-5193. etc. ...


-----Burton





-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf
Of atit jariwala
Sent: Monday, March 24, 2003 2:59 AM
To: [EMAIL PROTECTED]
Subject: [Ntop-dev] ntop Messenger traffic


Hello,
Ntop will measure ntop Messenger traffic...
can any one tell me which Messenger Traffic it is monitoring............
is it Yahoo messenger , msn messenger or any other......

What Kazza is? is it a file sharing tool
can i get list of other such popular file sharing tool........

regards
==atit

_______________________________________________
Ntop-dev mailing list
[EMAIL PROTECTED]
http://listgateway.unipi.it/mailman/listinfo/ntop-dev

_______________________________________________
Ntop-dev mailing list
[EMAIL PROTECTED]
http://listgateway.unipi.it/mailman/listinfo/ntop-dev

Reply via email to