🔍 快速查找Linux命令

🔍
💡 提示:输入即搜,点击卡片查看详情,点击示例可复制。快捷键:Ctrl+K 搜索 切换命令
7 个命令 ,分类:网络工具
ping 🌐 网络工具

测试网络连接

ping [选项] 主机
ping google.comping -c 5 192.168.1.1ping -i 0.5 localhost
curl 🌐 网络工具

HTTP请求工具

curl [选项] URL
curl https://api.example.comcurl -X POST -d '{"key":"value"}' urlcurl -O https://example.com/file.zip
wget 🌐 网络工具

下载文件

wget [选项] URL
wget https://example.com/file.zipwget -c https://example.com/large.isowget -r -l2 https://example.com/
netstat 🌐 网络工具

网络状态统计

netstat [选项]
netstat -tulnnetstat -anpnetstat -r
ss 🌐 网络工具

套接字统计

ss [选项]
ss -tulnss -sss -tp
ifconfig 🌐 网络工具

配置网络接口

ifconfig [接口] [选项]
ifconfigifconfig eth0ifconfig eth0 192.168.1.100
ip 🌐 网络工具

IP配置工具

ip [选项] 对象 命令
ip addr showip route showip link set eth0 up