@
route -n
列出路由表
traceroute
实现原理:发udp包,TTL从1开始,每次发包TTL加1,直到N或目标主机,发包后根据收到的icmp超时报文计算时间差,当收到cimp端口不可达报文时,即到达目标主机。
https://zhuanlan.zhihu.com/p/36811672
RFC792 https://tools.ietf.org/html/rfc792
https://learningnetwork.cisco.com/thread/87662
nslookup
域名查询 nslookup url / ip
netstat
Print network connections, routing tables, interface statistics, masquerade connections, and multicast memberships
扫描工具
nmap
端口扫描工具,参考https://blog.csdn.net/qq_33386311/article/details/89453546
netcat或nc
交互通信 net -l port2,A打开某端口提供server,netcat ip_A port2 B作为client与A通信
端口扫描 netcat -v ip port
传文件 netcat -l port ==>== file A作为server,接收文件 netcat -n server_ip port ==<== file B作为client 发送 文件
参考:https://blog.csdn.net/analogous_love/article/details/53037477
tcpdump
截获和分析数据包的工具,支持针对网络层、协议、主机、网络或端口的过滤,并提供and、or、not等逻辑语句来帮助你去掉无用的信息。
如 tcpdump host ip/URL
用例参考
telnet
远程登录,基于TCP协议