惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

N
News | PayPal Newsroom
Security Archives - TechRepublic
Security Archives - TechRepublic
Hacker News: Ask HN
Hacker News: Ask HN
H
Hacker News: Front Page
Apple Machine Learning Research
Apple Machine Learning Research
TaoSecurity Blog
TaoSecurity Blog
Help Net Security
Help Net Security
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
人人都是产品经理
人人都是产品经理
博客园 - 三生石上(FineUI控件)
Security Latest
Security Latest
Cloudbric
Cloudbric
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
www.infosecurity-magazine.com
www.infosecurity-magazine.com
Know Your Adversary
Know Your Adversary
A
Arctic Wolf
L
LangChain Blog
Application and Cybersecurity Blog
Application and Cybersecurity Blog
The GitHub Blog
The GitHub Blog
P
Proofpoint News Feed
W
WeLiveSecurity
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
M
MIT News - Artificial intelligence
Google DeepMind News
Google DeepMind News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
小众软件
小众软件
NISL@THU
NISL@THU
云风的 BLOG
云风的 BLOG
P
Privacy & Cybersecurity Law Blog
S
Security @ Cisco Blogs
博客园 - 【当耐特】
I
InfoQ
Vercel News
Vercel News
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
P
Proofpoint News Feed
O
OpenAI News
Google DeepMind News
Google DeepMind News
N
News and Events Feed by Topic
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
K
Kaspersky official blog
T
Threat Research - Cisco Blogs
量子位
宝玉的分享
宝玉的分享

噜啦 - 网络

网络管理和配置文件 - 噜啦 ifconfig 网络管理 - 噜啦
网络故障排除命令 - 噜啦
博主: 噜啦 · 2020-02-14 · via 噜啦 - 网络

网络故障排除命令

  • 发布时间:
  • 1565 次浏览
  • 1522字数
  • 分类: Linux笔记本
  1. 首页
  2. 正文  
  • ping
  • traceroute
  • mtr
  • nslookup
  • telnet
  • tcpdump
  • netstat
  • ss

ifconfig 网卡信息

ifconfig <网卡名称>

traceroute 路由追踪

traceroute -w 1 coding.lula.fun

w: 超时时间

mtr 路由追踪

mtr <ip或者域名>

nslookup 查询IP

nslookup <域名> [dns服务器地址]


telnet 测试端口

telnet <domain> <port>

tcpdump 抓包

tcpdump -i any -n port 80
tcpdump -i any -n host 127.0.0.1
tcpdump -i any -n port 80 and host 127.0.0.1
tcpdump -i any -n port 80 and host 127.0.0.1 -w /tmp/afile

netstat/ss 查看端口占用

netstat -ntpl
ss -ntpl

赞赏作者

如果觉得我的文章对你有用,请随意赞赏

网络故障排除命令

 •