This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#==================================================== | |
# 基于成功脚本的多网卡SOCKS5一键安装脚本 | |
# System: Ubuntu 22+ (火山云多网卡优化版) | |
# Author: Enhanced Network Detection | |
# Description: 自动检测所有网卡并配置SOCKS5代理 | |
# Version: 1.0 | |
#==================================================== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
#==================================================== | |
# Multi-IP SOCKS5 一键安装脚本 | |
# System: Ubuntu 22+ (专为火山云优化) | |
# Author: Enhanced for Vulcan Cloud | |
# Description: 自动检测多IP并配置SOCKS5代理 | |
# Version: 3.0 | |
#==================================================== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# SOCKS5代理测试脚本 | |
# 测试提供的代理列表的连通性 | |
# 颜色定义 | |
RED='\033[0;31m' | |
GREEN='\033[0;32m' | |
YELLOW='\033[1;33m' | |
CYAN='\033[0;36m' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#============================================================= | |
# 简化版 Multi-IP SOCKS5 安装脚本 | |
# 适用于: Ubuntu 22+ (火山云) | |
# 无需外部下载,使用系统包管理器 | |
#============================================================= | |
# 颜色定义 | |
RED='\033[0;31m' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#============================================================= | |
# One-Click Multi-IP SOCKS5 Installation Script | |
# System: Ubuntu 22+ / Debian 11+ / CentOS 7+ | |
# Author: Enhanced for Vulcan Cloud Multi-IP | |
# Description: Auto-detect and configure multiple SOCKS5 proxies | |
#============================================================= | |
# Colors |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "========== 火山云SOCKS5深度修复脚本 V2 ==========" | |
echo "修复时间: $(date)" | |
echo "" | |
# 1. 彻底清理 | |
echo "1. 彻底清理现有配置..." | |
systemctl stop sockd-test.service sockd-multi-*.service 2>/dev/null | |
systemctl disable sockd-test.service sockd-multi-*.service 2>/dev/null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "========== 火山云网络诊断脚本 ==========" | |
echo "生成时间: $(date)" | |
echo "" | |
echo "1. 当前网络接口配置:" | |
ip addr show | grep -E "^[0-9]+:|inet " | |
echo "" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
#==================================================== | |
# System Request:Centos 7+ or Ubuntu 20.4+ | |
# Author: Coffee Zhang (Enhanced by AI) | |
# Description: Multi-IP Socks5 Installation | |
# Version: 2.0 | |
# email: centosyu@gmail.com | |
# TG: @Coffee_Yu | |
# Enhancement: Support multiple exit IPs automatic detection |