Como configurar o servidor ntalk no OS X?

1

Estou tentando configurar o ntalk no os x yosemite.

Eu corro:

$ sudo launchctl load -w /System/Library/LaunchDaemons/ntalk.plist

Mas a porta 518 ainda está fechada…

$ sudo nmap -sS -p 518 localhost
Password:

Starting Nmap 6.47 ( http://nmap.org ) at 2015-09-07 12:09 PDT
Nmap scan report for localhost (127.0.0.1)
Host is up (0.000099s latency).
PORT    STATE  SERVICE
518/tcp closed ntalk

Nmap done: 1 IP address (1 host up) scanned in 0.05 seconds

Qual é o problema?

    
por Drew 07.09.2015 / 21:13

1 resposta

0

Se você olhar para o /System/Library/LaunchDaemons/ntalk.plist , poderá ver a seguinte entrada:

<dict>
    <key>Listeners</key>
    <dict>
        <key>SockServiceName</key>
        <string>ntalk</string>
        <key>SockType</key>
        <string>dgram</string>
    </dict>
</dict>

O valor de SockType é dgram e, por causa disso, o programa escuta em uma porta UDP e não em TCP .

Se você chamar sudo nmap -sU -p 518 localhost , deverá ver que a porta está aberta.

vanemery.com: usando o ntalkd como um site privado, seguro, Serviço de bate-papo por texto um a um :

ntalkd listens on UDP port 518. Once the actual session is setup, there are two UDP streams and one TCP connection that exist between clients.

    
por 07.09.2015 / 21:37