Ich versuche, Netcat dazu zu bringen, Port 4444 abzuhören, aber es scheint nicht zu funktionieren. Ich überprüfe mithilfe von nmap, ob der Port geöffnet ist, aber er wird nicht erkannt, und ich kann nicht herausfinden, warum. Ich habe verschiedene Ports ohne Freude ausprobiert.
Hier ist eine Kopie meines Terminals, damit Sie sehen können, was ich tue und was ich versucht habe:
#iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
# nmap localhost -p 4444
Starting Nmap 5.61TEST4 ( http://nmap.org ) at 2012-07-31 16:37 BST
Nmap scan report for localhost (127.0.0.1)
Host is up (0.00019s latency).
Other addresses for localhost (not scanned): 127.0.0.1
PORT STATE SERVICE
4444/tcp closed krb524
Nmap done: 1 IP address (1 host up) scanned in 0.10 seconds
# nc -l 4444 &
[1] 1951
# nmap localhost -p 1-65535
Starting Nmap 5.61TEST4 ( http://nmap.org ) at 2012-07-31 16:42 BST
Nmap scan report for localhost (127.0.0.1)
Host is up (0.0000070s latency).
Other addresses for localhost (not scanned): 127.0.0.1
Not shown: 65532 closed ports
PORT STATE SERVICE
22/tcp open ssh
7337/tcp open unknown
33507/tcp open unknown
Nmap done: 1 IP address (1 host up) scanned in 1.37 seconds
# ps -e | grep nc
12 ? 00:00:00 sync_supers
1156 tty1 00:00:00 ck-launch-sessi
1232 tty1 00:00:00 dbus-launch
1274 ? 00:00:00 klauncher
1951 pts/2 00:00:00 nc
-lp
Syntax stammt aus Hobbits Originalversion, glaube ich. Von BSD abgeleitete Versionen verbieten die Verwendung von-p
with-l
. Viele unterstützen nicht-e
. Überprüfen Sie immer die Manpage oder die-h
Optionsausgabe Ihrer Installation .netcat-traditional
anstelle vonnetcat
odernetcat-openbsd