netzwerktools

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen Revision Vorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
netzwerktools [13/06/2025 - 10:48] thommie_netzwissen.denetzwerktools [17/06/2025 - 17:04] (aktuell) – [Netcat] thommie_netzwissen.de
Zeile 1: Zeile 1:
-====== Debian ======+====== Netzwerktools ====== 
 + 
 +===== Netzwerkkonfig Debian =====
  
 [[https://wiki.debian.org/NetworkConfiguration|https://wiki.debian.org/NetworkConfiguration]] [[https://wiki.debian.org/NetworkConfiguration|https://wiki.debian.org/NetworkConfiguration]]
  
-====== NMAP ======+[[https://www.digitalocean.com/community/tutorials/how-to-list-and-delete-iptables-firewall-rules-de|https://www.digitalocean.com/community/tutorials/how-to-list-and-delete-iptables-firewall-rules-de]] 
 + 
 +==== NMAP ====
  
 udp Scan für openvpn udp Scan für openvpn
Zeile 11: Zeile 15:
  
 </code> </code>
 +
 +==== Netcat ====
 +
 +tcp
 +
 +<code>
 +netcat [options] host port
 +
 +</code>
 +
 +udp
 +
 +<code>
 +netcat -u host port
 +
 +</code>
 +
 +Port Scanning (statt nmap)
 +
 +<code>
 +netcat -z -v domain.com1-1000
 +
 +</code>
 +
 +Netcat listening
 +
 +<code>
 +create an UDP server using nc on port 11090
 +nc -ul -p 11090
 +
 +check whether an UDP server is listening on 11190
 +nc -vz -u <hostname> 11090
 +
 +send a packet to the UDP server
 +echo -n "hello" | nc -4u -w1  <hostname> 1118
 +
 +</code>
 +
  
 ====== SS - another utility to investigate sockets ====== ====== SS - another utility to investigate sockets ======
  • netzwerktools.1749811728.txt.gz
  • Zuletzt geändert: 13/06/2025 - 10:48
  • von thommie_netzwissen.de