fancyss
fancyss is a project providing tools to across the GFW on asuswrt/merlin based router.
Top Related Projects
The one and only one gfwlist here
🦄 🎃 👻 V2Ray 路由规则文件加强版,可代替 V2Ray 官方 geoip.dat 和 geosite.dat,适用于 V2Ray、Xray-core、mihomo(Clash-Meta)、hysteria、Trojan-Go 和 leaf。Enhanced edition of V2Ray rules dat files, applicable to V2Ray, Xray-core, mihomo(Clash-Meta), hysteria, Trojan-Go and leaf.
A platform for building proxies to bypass network restrictions.
Bug-fix-only libev port of shadowsocks. Future development moved to shadowsocks-rust
An unidentifiable mechanism that helps you bypass GFW.
A Quantum-Safe Secure Tunnel based on QPP, KCP, FEC, and N:M multiplexing.
Quick Overview
Fancyss is an open-source project that provides a set of scripts and tools for enhancing the functionality of Asuswrt-Merlin firmware on ASUS routers. It focuses on improving network connectivity, especially for users in regions with restricted internet access, by offering features like shadowsocks integration and advanced routing capabilities.
Pros
- Enhances network connectivity and bypasses regional restrictions
- Provides a user-friendly web interface for easy configuration
- Regularly updated to maintain compatibility with the latest Asuswrt-Merlin firmware
- Offers a wide range of customization options for advanced users
Cons
- May require technical knowledge to set up and configure properly
- Potential security risks if not configured correctly
- Limited compatibility with certain router models
- Some features may impact router performance on lower-end devices
Getting Started
To get started with fancyss:
- Ensure your ASUS router is running Asuswrt-Merlin firmware.
- Download the appropriate fancyss package for your router model from the GitHub repository.
- Upload the package to your router via the Asuswrt-Merlin web interface.
- Install the package and reboot your router.
- Access the fancyss configuration page through the router's web interface.
- Configure your desired settings, such as shadowsocks servers and routing rules.
Note: Detailed installation instructions and configuration guides are available in the project's documentation on GitHub.
Competitor Comparisons
The one and only one gfwlist here
Pros of gfwlist
- Widely used and recognized standard for filtering Chinese internet censorship
- Regularly updated by community contributors
- Lightweight and easy to integrate into various tools and applications
Cons of gfwlist
- Limited to URL-based filtering, which may not cover all censorship techniques
- Requires manual updates or additional scripts to stay current
- May include false positives or outdated entries
Code comparison
gfwlist:
||example.com
||example.net
@@||whitelist.example.org
fancyss:
#!/bin/sh
# shadowsocks script for AM380 merlin firmware
# by sadoneli & qcasey
source /koolshare/scripts/base.sh
Summary
gfwlist is a community-maintained list of URLs blocked in China, while fancyss is a comprehensive script for setting up and managing Shadowsocks on specific router firmware. gfwlist focuses on providing a standardized blocklist, whereas fancyss offers a more complete solution for circumventing censorship on supported devices. The choice between them depends on the specific use case and hardware compatibility.
🦄 🎃 👻 V2Ray 路由规则文件加强版,可代替 V2Ray 官方 geoip.dat 和 geosite.dat,适用于 V2Ray、Xray-core、mihomo(Clash-Meta)、hysteria、Trojan-Go 和 leaf。Enhanced edition of V2Ray rules dat files, applicable to V2Ray, Xray-core, mihomo(Clash-Meta), hysteria, Trojan-Go and leaf.
Pros of v2ray-rules-dat
- More frequently updated ruleset for V2Ray
- Provides a wider range of rule categories (e.g., geoip, domain lists)
- Better documentation and usage instructions
Cons of v2ray-rules-dat
- Focused solely on V2Ray, less versatile for other VPN solutions
- May require more manual configuration compared to fancyss
Code Comparison
v2ray-rules-dat:
{
"outbounds": [
{
"protocol": "freedom",
"tag": "direct"
},
{
"protocol": "blackhole",
"tag": "block"
}
]
}
fancyss:
#!/bin/sh
# Check if ss-redir is running
if [ -n "$(pidof ss-redir)" ]; then
echo "ss-redir is already running"
exit 0
fi
The code snippets show different approaches: v2ray-rules-dat focuses on V2Ray configuration, while fancyss includes shell scripts for managing VPN processes on routers.
v2ray-rules-dat is more specialized for V2Ray users, offering comprehensive rulesets and frequent updates. fancyss, on the other hand, provides a broader solution for various VPN protocols on router firmware, but may not offer as detailed rulesets for V2Ray specifically.
A platform for building proxies to bypass network restrictions.
Pros of v2ray-core
- More versatile and supports a wider range of protocols
- Better performance and lower latency in many scenarios
- Actively maintained with frequent updates and improvements
Cons of v2ray-core
- More complex to set up and configure
- Requires more system resources to run effectively
- Less user-friendly for beginners compared to fancyss
Code Comparison
v2ray-core (Go):
type User struct {
Level uint32
Email string
}
type Account struct {
Id string
AlterId uint32
}
fancyss (Shell):
start_ss() {
ss-redir -c /koolshare/ss/ss.json -f /var/run/ss-redir.pid
ss-tunnel -c /koolshare/ss/ss.json -l 23456 -L 8.8.8.8:53 -u
}
v2ray-core is a more powerful and flexible tool for creating secure network tunnels, while fancyss is a simpler solution specifically designed for certain router firmware. v2ray-core offers better performance and protocol support but requires more technical knowledge to set up. fancyss is easier to use but has limited features compared to v2ray-core.
Bug-fix-only libev port of shadowsocks. Future development moved to shadowsocks-rust
Pros of shadowsocks-libev
- More lightweight and efficient implementation
- Better performance on embedded devices and low-end hardware
- Wider platform support, including mobile devices
Cons of shadowsocks-libev
- Less user-friendly for beginners
- Fewer built-in features compared to fancyss
- Requires more manual configuration
Code Comparison
shadowsocks-libev:
static int create_and_bind(const char *host, const char *port,
int mptcp, int ipv6first)
{
struct addrinfo hints;
struct addrinfo *result, *rp, *ipv4v6bindall;
int s, listen_sock;
fancyss:
start_ss() {
echo "Starting shadowsocks..."
ss-redir -c /koolshare/ss/ss.json -f /var/run/ss-redir.pid
ss-tunnel -c /koolshare/ss/ss.json -l 5353 -L 8.8.8.8:53 -u
ss-local -c /koolshare/ss/ss.json -f /var/run/ss-local.pid
}
The code comparison shows that shadowsocks-libev is written in C, focusing on low-level network operations, while fancyss uses shell scripts to manage Shadowsocks processes, indicating a higher-level approach geared towards user-friendly configuration and management on specific router platforms.
An unidentifiable mechanism that helps you bypass GFW.
Pros of trojan
- Simpler and more focused protocol, potentially offering better performance
- Designed to be undetectable, mimicking HTTPS traffic more effectively
- Cross-platform support with official clients for various operating systems
Cons of trojan
- Less feature-rich compared to the comprehensive fancyss toolkit
- May require more manual configuration and setup for advanced use cases
- Limited to trojan protocol, while fancyss supports multiple protocols
Code Comparison
trojan (config.json):
{
"run_type": "client",
"local_addr": "127.0.0.1",
"local_port": 1080,
"remote_addr": "example.com",
"remote_port": 443,
"password": ["password1"]
}
fancyss (ss_config.sh):
ss_basic_server_ip="server_ip"
ss_basic_server_port="server_port"
ss_basic_password="password"
ss_basic_method="aes-256-cfb"
ss_basic_rss_protocol="origin"
The code snippets demonstrate the configuration differences between trojan and fancyss. trojan uses a JSON format for its configuration, while fancyss employs shell variables. trojan's config is more compact and focuses on essential connection parameters, whereas fancyss includes additional options for various protocols and encryption methods.
A Quantum-Safe Secure Tunnel based on QPP, KCP, FEC, and N:M multiplexing.
Pros of kcptun
- Focuses specifically on network acceleration and packet reliability
- Lightweight and efficient implementation in Go
- Supports multiple operating systems and architectures
Cons of kcptun
- More limited in scope compared to fancyss's broader feature set
- Requires separate client and server setup
- May have higher learning curve for non-technical users
Code Comparison
kcptun (server configuration):
kcptun.Listener("0.0.0.0:12948", &KCPConfig{
MTU: 1350,
SndWnd: 1024,
RcvWnd: 1024,
DataShard: 10,
ParityShard: 3,
DSCP: 0,
NoComp: false,
AckNodelay: true,
NoDelay: 0,
Interval: 40,
Resend: 0,
NoCongestion: 0,
SockBuf: 4194304,
StreamBuf: 2097152,
})
fancyss (configuration snippet):
ss_basic_server_ip="server_address"
ss_basic_server_port="8388"
ss_basic_password="password"
ss_basic_method="aes-256-gcm"
ss_basic_rss_protocol="origin"
ss_basic_rss_obfs="plain"
While kcptun focuses on network protocol optimization, fancyss provides a more comprehensive set of features for configuring and managing Shadowsocks on routers. The code examples highlight the different approaches: kcptun's Go-based configuration for network parameters versus fancyss's shell-based configuration for Shadowsocks settings.
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual CopilotREADME
fancyss - ç§å¦ä¸ç½
- Fancyss is a project providing tools to across the GFW on asuswrt/merlin based router with software center.
- æ¤é¡¹ç®æä¾ç¨äºasuswrtãasuswrt-merlin为åºç¡çï¼å¸¦è½¯ä»¶ä¸å¿åºä»¶ï¼â¥384ï¼è·¯ç±å¨çç§å¦ä¸ç½åè½ã
- ðº 广å1ï¼ChatGPT PlusãNetflixãDisney+ãSpotifyãYouTubeçä¼åè´¦å·åç§ï¼95æä¼æ ç : fancyss
- ð 广å2ï¼fancyssåä½topæºåºï¼Nexitally/奶æ | å ¨ä¸è½¬æºåº / ä¼è´¨çº¿è·¯èµæº / æ¯æudp / 解éæµåªä½ï¼ChatGPT
- âï¸ å¹¿å3ï¼fancyssé«éæºåºæ¨èï¼ssLinks | æ§ä»·æ¯å ¨ä¸è½¬æºåº / 80+线路 / æµåªä½è§£éï¼9æä¼æ ç : fancyss
æ件ç¹è²
- å¤å¹³å°æ¯æï¼åéarmv7ï¼åéarm64ï¼èåç§Filogic 830 MT7986A
- å¤å®¢æ·ç«¯æ¯æï¼ShadowsocksãShadowsocksRãV2rayãXrayãTrojanãNaïveProxyãTuicV5ãHysteria2
- shadowsocksæ¯æSIP003æ件ï¼simple-obfsåv2ray-pluginï¼V2rayåXrayæ¯æå¤ç§åè®®é ç½®
- å¤ç§æ¨¡å¼æ¯æï¼gfwlist模å¼ã大éç½ååã游æ模å¼ãå ¨å±æ¨¡å¼ãåå½æ¨¡å¼
- æä¾å¤ç§ç°æçDNSæ¹æ¡ï¼å¹¶ä¸å¯ä»¥èªç±æ¹ä¾¿çè¿è¡DNSæ¹æ¡èªå®ä¹é ç½®
- æ¯æSS/SSR/V2ray/Xray/Trojanèç¹çå¨çº¿è®¢é ï¼æ¯æèç¹çæäºç»´ç ç¨ä»¥å享
- æ é转移ã主å¤åæ¢ãè´è½½åè¡¡ãå®æ¶éå¯ãå®æ¶è®¢é ãè§åæ´æ°ãäºè¿å¶æ´æ°
- æ¯ækcptunãudpspeederãudp2rawï¼å¯ä»¥å®ç°ä»£çå éï¼æ¸¸æå éï¼åºå¯¹ä¸¢å ç
- åæ¶æä¾fullçæ¬åliteçæ¬ï¼hnd_liteçæ¬å®è£ åå ç¨ä¸å°8MBç空é´ï¼éåå°jffsæºå
- armv8æºåæ¯ætcp fast openåss/ssr/trojanå¤æ ¸å¿è¿è¡
æ¯ææºå/åºä»¶
以ä¸ä¸ºfancyss 3.0æ¯æçæºå/åºä»¶ï¼ç¹å»æºåå¯ä»¥åå¾ç¸åºåºä»¶ä¸è½½å°å
ææ°åºä»¶ä¸è½½å°åï¼https://fw.koolcenter.com/
æºå/åºä»¶ä¸è½½ | ç±»å | å¹³å° | CPU | æ¶æ | linuxå æ ¸ | fancyssçæ¬ |
---|---|---|---|---|---|---|
R6300V2 | æ¢ æ¹ | 6.x.4708 | BCM4708 | armv7 | 2.6.36.4 | fancyss_arm |
RT-AC68U | æ¢ æ¹ | 6.x.4708 | BCM4708 | armv7 | 2.6.36.4 | fancyss_arm |
RT-AC88U | æ¢ æ¹ | 7.14.114.x | BCM4709 | armv7 | 2.6.36.4 | fancyss_arm |
RT-AC3100 | æ¢ æ¹ | 7.14.114.x | BCM4709 | armv7 | 2.6.36.4 | fancyss_arm |
RT-AC5300 | æ¢ æ¹ | 7.14.114.x | BCM4709 | armv7 | 2.6.36.4 | fancyss_arm |
RT-AC86U | æ¢ æ¹ | hnd | BCM4906 | armv8 | 4.1.27 | fancyss_hnd_v8 |
RT-AC86U | å®æ¹ | hnd | BCM4906 | armv8 | 4.1.27 | fancyss_hnd_v8 |
GT-AC2900 | æ¢ æ¹ | hnd | BCM4906 | armv8 | 4.1.27 | fancyss_hnd_v8 |
GT-AC2900 | å®æ¹ | hnd | BCM4906 | armv8 | 4.1.27 | fancyss_hnd_v8 |
GT-AC5300 | å®æ¹ | hnd | BCM4908 | armv8 | 4.1.27 | fancyss_hnd_v8 |
RT-AX88U | æ¢ æ¹ | axhnd | BCM4908 | armv8 | 4.1.51 | fancyss_hnd_v8 |
RT-AX88U | å®æ¹ | axhnd | BCM4908 | armv8 | 4.1.51 | fancyss_hnd_v8 |
RAX80 | æ¢ æ¹ | axhnd | BCM4908 | armv8 | 4.1.51 | fancyss_hnd_v8 |
GT-AX11000 | å®æ¹ | axhnd | BCM4908 | armv8 | 4.1.51 | fancyss_hnd_v8 |
GT-AX11000 | æ¢ æ¹ | axhnd | BCM4908 | armv8 | 4.1.51 | fancyss_hnd_v8 |
RT-AX92U | å®æ¹ | axhnd | BCM4906 | armv8 | 4.1.51 | fancyss_hnd_v8 |
TUF-AX3000 | å®æ¹ | axhnd.675x | BCM6750 | armv7 | 4.1.52 | fancyss_hnd |
TUF-AX5400 | æ¢ æ¹ | axhnd.675x | BCM6750 | armv7 | 4.1.52 | fancyss_hnd |
TUF-AX5400 | å®æ¹ | axhnd.675x | BCM6750 | armv7 | 4.1.52 | fancyss_hnd |
RT-AX58U | æ¢ æ¹ | axhnd.675x | BCM6750 | armv7 | 4.1.52 | fancyss_hnd |
RAX50 | æ¢ æ¹ | axhnd.675x | BCM6750 | armv7 | 4.1.52 | fancyss_hnd |
RT-AX82U | å®æ¹ | axhnd.675x | BCM6750 | armv7 | 4.1.52 | fancyss_hnd |
RT-AX82U | æ¢ æ¹ | axhnd.675x | BCM6750 | armv7 | 4.1.52 | fancyss_hnd |
ZenWiFi_XT8 | å®æ¹ | axhnd.675x | BCM6755 | armv7 | 4.1.52 | fancyss_hnd |
ZenWiFi_XT8 | æ¢ æ¹ | axhnd.675x | BCM6755 | armv7 | 4.1.52 | fancyss_hnd |
ZenWiFi_XD4 | å®æ¹ | axhnd.675x | BCM6755 | armv7 | 4.1.52 | fancyss_hnd |
RT-AX56U_V2 | å®æ¹ | axhnd.675x | BCM6755 | armv7 | 4.1.52 | fancyss_hnd |
RT-AX1800 | æ¢ æ¹ | axhnd.675x | BCM6755 | armv7 | 4.1.52 | fancyss_hnd |
RT-AX56U | æ¢ æ¹ | axhnd.675x | BCM6755 | armv7 | 4.1.52 | fancyss_hnd |
RAX70 | æ¢ æ¹ | axhnd.675x | BCM6755 | armv7 | 4.1.52 | fancyss_hnd |
RT-AX68U | å®æ¹ | 5.02L.07p2axhnd | BCM4906 | armv8 | 4.1.52 | fancyss_hnd_v8 |
RT-AX68U | æ¢ æ¹ | 5.02L.07p2axhnd | BCM4906 | armv8 | 4.1.52 | fancyss_hnd_v8 |
RT-AX86U | å®æ¹ | 5.02L.07p2axhnd | BCM4908 | armv8 | 4.1.52 | fancyss_hnd_v8 |
RT-AX86U | æ¢ æ¹ | 5.02L.07p2axhnd | BCM4908 | armv8 | 4.1.52 | fancyss_hnd_v8 |
GT-AXE11000 | æ¢ æ¹ | 5.02L.07p2axhnd | BCM4908 | armv8 | 4.1.52 | fancyss_hnd_v8 |
GT-AX6000 | å®æ¹ | 5.04axhnd.675x | BCM4912 | armv8 | 4.19.183 | fancyss_hnd_v8 |
GT-AX6000 | æ¢ æ¹ | 5.04axhnd.675x | BCM4912 | armv8 | 4.19.183 | fancyss_hnd_v8 |
ZenWiFi_Pro_XT12 | å®æ¹ | 5.04axhnd.675x | BCM4912 | armv8 | 4.19.183 | fancyss_hnd_v8 |
ZenWiFi_Pro_XT12 | æ¢ æ¹ | 5.04axhnd.675x | BCM4912 | armv8 | 4.19.183 | fancyss_hnd_v8 |
TUF-AX3000_V2 | å®æ¹ | 5.04axhnd.675x | BCM6756 | armv7 | 4.19.183 | fancyss_hnd |
RT-AX86U PRO | å®æ¹ | 5.04axhnd.675x | BCM4912 | armv8 | 4.19.183 | fancyss_hnd_v8 |
RT-AX86U PRO | æ¢ æ¹ | 5.04axhnd.675x | BCM4912 | armv8 | 4.19.183 | fancyss_hnd_v8 |
GT-AX11000 PRO | å®æ¹ | 5.04axhnd.675x | BCM4912 | armv8 | 4.19.183 | fancyss_hnd_v8 |
GT-AX11000 PRO | æ¢ æ¹ | 5.04axhnd.675x | BCM4912 | armv8 | 4.19.183 | fancyss_hnd_v8 |
RT-AX89X | å®æ¹ | qca-ipq806x | ipq8074/a | armv71 | 4.4.60 | fancyss_qca |
TX-AX6000 | å®æ¹ | mtk-MT798X | MT7986A | armv8 | 5.4.182 | fancyss_mtk |
TUF-AX4200Q | å®æ¹ | mtk-MT798X | MT7986A | armv8 | 5.4.182 | fancyss_mtk |
RT-BE88U | å®æ¹ | 5.04behnd.4916 | BCM4916 | armv8 | 4.19.275 | fancyss_hnd_v8 |
GT-BE96 | å®æ¹ | 5.04behnd.4916 | BCM4916 | armv8 | 4.19.275 | fancyss_hnd_v8 |
çæ¬éæ©
fancyss 3.0æ¯æhndãhnd_v8ãqcaãarmãmtk äºä¸ªå¹³å°ï¼æ¯ä¸ªå¹³å°åæfullçæ¬åliteçæ¬
fullçæ¬ä¸ºå ¨åè½çæ¬ï¼æ¯æSSã SSRãV2rayã XrayãTrojanãNaïveProxyãTuicV5ãHysteria2 å «ç§å®¢æ·ç«¯ï¼å®è£ å ä½ç§¯è¾å¤§
liteçæ¬ä¸ºç²¾ç®çæ¬ï¼æ¯æSSã SSRã V2rayã Xrayã Trojan äºç§å®¢æ·ç«¯ï¼å®è£ å å°å·§ï¼ä»¥ä¸ä¸ºliteçæ¬ç²¾ç®å 容ï¼
- liteçæ¬ç§»é¤äºNaïveProxyæ¯æåå ¶ç¸å ³äºè¿å¶æ件ï¼naiveãipt2socks
- liteçæ¬ç§»é¤äºshadowsocksçv2ray-pluginæ件åè½åå ¶å¯¹åºçäºè¿å¶æ件ï¼v2ray-plugin
- liteçæ¬ç§»é¤äºUDPå éåè½åå ¶äºè¿å¶æ件ï¼speederv1ãspeederv2ãudp2raw
- liteçæ¬ç§»é¤äºKCPå éåè½åå ¶äºè¿å¶æ件ï¼kcptun
- liteçæ¬ç§»é¤äºè´è½½åè¡¡æ¯æåå ¶é¡µé¢åäºè¿å¶æ件ï¼haproxy
- liteçæ¬ç§»é¤äºç´è¿è§£æçDNSæ¹æ¡åå ¶äºè¿å¶ï¼chinadnsãchinadnsãhttps_dns_proxyy
- liteçæ¬ç§»é¤äºhavegedï¼å 为ç°å¨è¾æ°çåºä»¶ç³»ç»èªå¸¦äºçµå¢è½¯ä»¶
- liteçæ¬ç§»é¤äºshadowsocks-rustæ¿æ¢shadowsocks-libevåè½ï¼é»è®¤ç±shadowsocks-libevè¿è¡ssåè®®
- liteçæ¬ç§»é¤äºsocks5页é¢åå ¶èæ¬åå ¶aclè§åæ件
å¦ææ¯ä¸æè ¾ä»¥ä¸è¢«ç²¾ç®åè½çç¨æ·ï¼å®å ¨å¯ä»¥ä½¿ç¨ä½ç§¯æ´å°çliteçæ¬
RT-AX56U_V2ãRT-AX57 è¿ç§jffsååºæå°(15MB)çæºåï¼ç´æ¥ä½¿ç¨liteçæ¬å³å¯
è¦åæ¢ä¸ºliteçæ¬ï¼ç´æ¥å®è£ liteçæ¬ç离线å®è£ å å³å¯ï¼ä»¥åå¨çº¿æ´æ°ä¹ä¼ç»´æ为liteçæ¬
è¦åæ¢ä¸ºfullçæ¬ï¼ç´æ¥å®è£ fullçæ¬ç离线å®è£ å å³å¯ï¼ä»¥åå¨çº¿æ´æ°ä¹ä¼ç»´æ为fullçæ¬
RT-AX86UãGT-AX6000çarmv8æºåï¼è§ä¸è¡¨ï¼ï¼ä»3.0.6å¼å§å»ºè®®å®è£ fancyss_hnd_v8çæ¬ï¼å½ç¶fancyss_hndåæ ·å ¼å®¹
æ件ä¸è½½
æ件ä¸è½½æ两ç§æ¹å¼ï¼
- å¨
packages
ç®å½ä¸ï¼ç¹å»tar.gzåç¼æ件ï¼ä¸è½½å½åææ°çæ¬ç离线å®è£ å - å¨fancyss_history_package项ç®ä¸ï¼å å«**åå²çæ¬åææ°çæ¬**ç离线å®è£ å
æ件离线å ä¸è½½å¯¼èªï¼
å¹³å° | ææ°fullçæ¬ä¸è½½ | ææ°liteçæ¬ä¸è½½ | åå²çæ¬ä¸è½½ï¼å å«ææ°çï¼ |
---|---|---|---|
hnd | fancyss_hnd_full | fancyss_hnd_lite | fancyss_hnd |
hnd_v8 | fancyss_hnd_v8_full | fancyss_hnd_v8_lite | fancyss_hnd_v8 |
qca | fancyss_qca_full | fancyss_qca_lite | fancyss_qca |
arm | fancyss_arm_full | fancyss_arm_lite | fancyss_arm |
mtk | fancyss_mtk_full | fancyss_mtk_lite | fancyss_mtk |
æ件å®è£
-
离线å®è£ ï¼ä¸è½½å¹¶æ ¡éªå¥½ç¦»çº¿å®è£ å åï¼å¨è½¯ä»¶ä¸å¿å 使ç¨ç¦»çº¿å®è£ /æå¨å®è£ åè½ï¼éæ©å®è£ å åä¸ä¼ 并å®è£ å³å¯ã
-
å½ä»¤å®è£ ï¼(以fancyss_hnd_lite.tar.gz为ä¾ï¼å ä¸è½½å¥½å®è£ å ï¼å¹¶å°å ¶ä¸ä¼ å°è·¯ç±å¨ç/tmpç®å½)
mv /tmp/fancyss_hnd_lite.tar.gz /tmp/shadowsocks.tar.gz tar -zxvf /tmp/shadowsocks.tar.gz sh /tmp/shadowsocks/install.sh
å ³äºç®è¤
ç®åæ件ç®è¤æ¯æ以ä¸çæ¬ï¼
asuswrtï¼ç»å ¸asuswrtç®è¤
rogï¼åç¡çº¢è²rogç®è¤
tufï¼åç¡æ©è²tufç®è¤
txï¼åç¡å¤©ééè²ç®è¤
注æäºé¡¹
- 强ç建议使ç¨chromeæè chrouiumå æ ¸çæµè§å¨ï¼ä»¥ä¿è¯æä½³å ¼å®¹æ§ï¼
- 强ç建议å¨
ææ°çæ¬çåºä»¶
åææ°çæ¬è½¯ä»¶ä¸å¿
ä¸ä½¿ç¨fancyss_hndï¼ - æ件ä¼èªå¨è·éå½ååºä»¶çç®è¤ç±»åï¼æ¯æassuwrtãrogãtufä¸ç§ç®è¤ã
- ä¸äºæºåçèåçï¼åªè¦å·äºå®æ¹/æ¢ ææ¹çåºä»¶çï¼åè½å®è£ æ¬æ件ï¼
ç®å½è¯´æ
- fancyssï¼æ件代ç 主ç®å½ï¼ç±build.shæå æä¸åè·¯ç±å¨ç离线å®è£ å
- binariesï¼ä¸äºå¨çº¿æ´æ°çäºè¿å¶ç¨åºï¼å¦v2rayãxray
- packagesï¼ä¸åå¹³å°ç离线å®è£ å çææ°çæ¬ï¼ç¨äºæ件çå¨çº¿æ´æ°
- rulesï¼æ件çè§åæ件ï¼å¦gfwlist.confãchnroute.txtãcdn.txt
æå æ件
æå è¿ç¨å°±æ¯å°fancyssç®å½ä¸ç¸å ³äºè¿å¶å代ç æ件éè¿èæ¬çæä¸åå¹³å°ï¼ä¸åçæ¬ç离线å®è£ å ã
为ä¿è¯å¨ä¸åè·¯ç±å¨/åºä»¶çæ¬ä¸é½è½è¿è¡ï¼é¡¹ç®æä¾çææäºè¿å¶é½æ¯é¢ç¼è¯å¥½çï¼ä¸å°½éæä¾å ¨éæç¼è¯çæ¬ã
-
å éæ¬é¡¹ç®ï¼ä½¿ç¨linuxç³»ç»ï¼æ¯å¦Ubuntu 20.04
git clone https://github.com/hq450/fancyss.git
-
åæ¢å°3.0åæ¯
cd fancyss git checkout 3.0
-
ä¿®æ¹ä»£ç ï¼æ ¹æ®èªå·±éè¦ä¿®æ¹ä»£ç 主ç®å½fancyssç®å½ä¸çç¸å ³æ件ï¼å¦
./fancyss/ss/ssconfig.sh
-
æå æ件ï¼è¿è¡æå å½ä»¤åä¼èªå¨åæ¥rulesä¸ææ°çè§ååbinariesä¸ææ°çäºè¿å¶
å¦éè¦å¼åï¼è¯·ä½¿ç¨
sh build.sh debug
å½ä»¤ï¼å°ä¼é¢å¤æå 带debug
åæ ·çå®è£ å ï¼å®è£ å å ç½é¡µæ件çä¿çäºæ³¨éä¿¡æ¯sh build.sh
-
æå 好ç离线å®è£ å ä½äº
./packages/
ç®å½ï¼å å«ä»¥ä¸5个平å°ç离线å®è£ æ件ï¼æ¯ä¸ªå¹³å°å为fullçæ¬åliteçæ¬fancyss_arm_full.tar.gz fancyss_arm_lite.tar.gz fancyss_hnd_full.tar.gz fancyss_hnd_lite.tar.gz fancyss_hnd_v8_full.tar.gz fancyss_hnd_v8_lite.tar.gz fancyss_qca_full.tar.gz fancyss_qca_lite.tar.gz fancyss_mtk_full.tar.gz fancyss_mtk_lite.tar.gz
ç¸å ³é¾æ¥
-
fancyss 3.0æ´æ°æ¥å¿ï¼https://github.com/hq450/fancyss/blob/3.0/Changelog.txt
-
å®æ¹/æ¢ æ¹åºä»¶ä¸è½½ãç½æ¹ç½ç«ãï¼ææ°åºä»¶ï¼ï¼https://www.koolcenter.com
-
å®æ¹/æ¢ æ¹åºä»¶ä¸è½½ãåºä»¶éåãï¼æ¬¡æ°åºä»¶ï¼ï¼https://fw.koolcenter.com
Star History
Footnotes
-
RT-AX89Xéç¨çSoC为ipq8074/ipq8074Aï¼æ¯æ64ä½ç³»ç»ï¼ä½æ¯å ¶åºä»¶æ¯32ä½ç³»ç»ã ↩
Top Related Projects
The one and only one gfwlist here
🦄 🎃 👻 V2Ray 路由规则文件加强版,可代替 V2Ray 官方 geoip.dat 和 geosite.dat,适用于 V2Ray、Xray-core、mihomo(Clash-Meta)、hysteria、Trojan-Go 和 leaf。Enhanced edition of V2Ray rules dat files, applicable to V2Ray, Xray-core, mihomo(Clash-Meta), hysteria, Trojan-Go and leaf.
A platform for building proxies to bypass network restrictions.
Bug-fix-only libev port of shadowsocks. Future development moved to shadowsocks-rust
An unidentifiable mechanism that helps you bypass GFW.
A Quantum-Safe Secure Tunnel based on QPP, KCP, FEC, and N:M multiplexing.
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual Copilot