☁️
Cloud Native Network
CtrlK
  • README
  • 云时代网络
  • SDN
  • 容器网络概述
  • K8s 网络
    • 服务发现
    • Service
    • Ingress
    • kube-proxy
      • user space
      • iptables
      • ipvs
    • CNI
      • CNI Plugins Example
      • macvlan
      • multus
      • whereabouts
  • Feature Gate
    • Dual Stack
  • Service Mesh
    • 服务网格简介
  • Linux 网络
    • Linux 网络概述
    • iptables
    • Linux 虚拟网络设备
      • Veth
      • Linux bridge
      • Linux VLAN
    • 网络相关命令
      • 网桥
      • curl
      • ip
      • iptables
      • netcat
      • netstat
      • nslookup
      • ss
      • tcpdump
      • telnet
      • traceroute
  • 计算机网络
    • 物理层
      • 物理层概述
    • 数据链路层
      • 数据链路层设备
      • VLAN
    • 网络层
      • 网络层概述
      • IP
      • ICMP
      • IPv6
      • NDP
    • 传输层
      • 传输层概述
      • UDP
      • TCP
      • TLS
    • 应用层
      • HTTP & SPDY & QUIC
Powered by GitBook
On this page

Was this helpful?

  1. Linux 网络
  2. 网络相关命令

netcat

  • nc [options] host port

  • udp: nc -u host port

  • Port Scanning: nc -z -v 10.10.8.8 20-80. The -z option will tell nc to only scan for open ports, without sending any data to them and the -v option to provide more verbose information.

  • nc -z -v 10.211.55.2 8070-8080 2>&1 |grep succeeded

  • UDP Port Scanning: nc -z -v -u 10.10.8.8 20-80

PreviousiptablesNextnetstat

Last updated 3 years ago

Was this helpful?