init tool
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
Copyright (c) 2013-2020 GitHub Inc.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,621 @@
|
||||
# 2019-03-10 18:17:37
|
||||
#---------------------------------------------------#
|
||||
## 配置文件需要放置在 $HOME/.config/clash/config.yaml
|
||||
##
|
||||
## 如果您不知道如何操作,请参阅 SS-Rule-Snippet 的 Wiki: https://github.com/Hackl0us/SS-Rule-Snippet/wiki/clash(X)
|
||||
#---------------------------------------------------#
|
||||
|
||||
# HTTP 代理端口
|
||||
port: 4780
|
||||
|
||||
# SOCKS5 代理端口
|
||||
socks-port: 4781
|
||||
|
||||
# Linux 和 macOS 的 redir 代理端口 (如需使用此功能,请取消注释)
|
||||
# redir-port: 7892
|
||||
|
||||
# 允许局域网的连接(可用来共享代理)
|
||||
allow-lan: true
|
||||
|
||||
# 规则模式:Rule(规则) / Global(全局代理)/ Direct(全局直连)
|
||||
mode: Rule
|
||||
|
||||
# 设置日志输出级别 (默认级别:silent,即不输出任何内容,以避免因日志内容过大而导致程序内存溢出)。
|
||||
# 5 个级别:silent / info / warning / error / debug。级别越高日志输出量越大,越倾向于调试,若需要请自行开启。
|
||||
log-level: silent
|
||||
|
||||
# clash 的 RESTful API
|
||||
external-controller: 127.0.0.1:4788
|
||||
|
||||
# 您可以将静态网页资源(如 clash-dashboard)放置在一个目录中,clash 将会服务于 `${API}/ui`
|
||||
# 参数应填写配置目录的相对路径或绝对路径。
|
||||
# external-ui: folder
|
||||
|
||||
# RESTful API 的口令 (可选)
|
||||
secret: ""
|
||||
|
||||
dns:
|
||||
enable: true
|
||||
ipv6: false
|
||||
# listen: 0.0.0.0:53
|
||||
# enhanced-mode: redir-host
|
||||
nameserver:
|
||||
- 1.2.4.8
|
||||
- 114.114.114.114
|
||||
- 223.5.5.5
|
||||
- tls://dns.rubyfish.cn:853
|
||||
|
||||
fallback: # 与 nameserver 内的服务器列表同时发起请求,当规则符合 GEOIP 在 CN 以外时,fallback 列表内的域名服务器生效。
|
||||
- tls://dns.rubyfish.cn:853
|
||||
- tls://dns.google
|
||||
|
||||
# clash DNS 请求逻辑:
|
||||
# (1) 当访问一个域名时, nameserver 与 fallback 列表内的所有服务器并发请求,得到域名对应的 IP 地址。
|
||||
# (2) clash 将选取 nameserver 列表内,解析最快的结果。
|
||||
# (3) 若解析结果中,IP 地址属于 国外,那么 clash 将选择 fallback 列表内,解析最快的结果。
|
||||
#
|
||||
# 因此,我在 nameserver 和 fallback 内都放置了无污染、解析速度较快的国内 DNS 服务器,以达到最快的解析速度。
|
||||
# 但是 fallback 列表内服务器会用在解析境外网站,为了结果绝对无污染,我仅保留了支持 DoT/DoH 的两个服务器。
|
||||
#
|
||||
# 注意:
|
||||
# (1) 如果您为了确保 DNS 解析结果无污染,请仅保留列表内以 tls:// 开头的 DNS 服务器,但是通常对于国内没有太大必要。
|
||||
# (2) 如果您不在乎可能解析到污染的结果,更加追求速度。请将 nameserver 列表的服务器插入至 fallback 列表内,并移除重复项。
|
||||
|
||||
Proxy:
|
||||
|
||||
# shadowsocks
|
||||
# 所支持的加密方式与 go-shadowsocks2 保持一致
|
||||
# 支持加密方式: AEAD_AES_128_GCM AEAD_AES_192_GCM AEAD_AES_256_GCM AEAD_CHACHA20_POLY1305 AES-128-CTR AES-192-CTR AES-256-CTR AES-128-CFB AES-192-CFB AES-256-CFB CHACHA20-IETF XCHACHA20
|
||||
# clash 额外支持 chacha20 rc4-md5 xchacha20-ietf-poly1305 加密方式
|
||||
|
||||
- name: "线路加载失败,请点击左侧刷新按钮"
|
||||
type: ss
|
||||
server: server
|
||||
port: 443
|
||||
cipher: AEAD_CHACHA20_POLY1305
|
||||
password: "password"
|
||||
plugin: obfs
|
||||
plugin-opts:
|
||||
mode: tls # 混淆模式,可以选择 http 或 tls
|
||||
host: bing.com # 混淆域名,需要和服务器配置保持一致
|
||||
|
||||
# - name: "ss2"
|
||||
# type: ss
|
||||
# server: server
|
||||
# port: 443
|
||||
# cipher: AEAD_CHACHA20_POLY1305
|
||||
# password: "password"
|
||||
# plugin: v2ray-plugin
|
||||
# plugin-opts:
|
||||
# mode: websocket # 暂时不支持 QUIC 协议
|
||||
# # tls: true # wss
|
||||
# # skip-cert-verify: true
|
||||
# # host: bing.com
|
||||
# # path: "/"
|
||||
|
||||
# vmess
|
||||
# 支持加密方式:auto / aes-128-gcm / chacha20-poly1305 / none
|
||||
# - { name: "vmess", type: vmess, server: server, port: 443, uuid: uuid, alterId: 32, cipher: auto }
|
||||
# # tls
|
||||
# - { name: "vmess", type: vmess, server: server, port: 443, uuid: uuid, alterId: 32, cipher: auto, tls: true }
|
||||
# # tls (skip-cert-verify)
|
||||
# - { name: "vmess", type: vmess, server: server, port: 443, uuid: uuid, alterId: 32, cipher: auto, tls: true, skip-cert-verify: true }
|
||||
# # ws-path + ws-headers
|
||||
# - { name: "vmess", type: vmess, server: server, port: 443, uuid: uuid, alterId: 32, cipher: auto, network: ws, ws-path: /path, ws-headers: { Host: v2ray.com } }
|
||||
# # ws + tls
|
||||
# - { name: "vmess", type: vmess, server: server, port: 443, uuid: uuid, alterId: 32, cipher: auto, network: ws, ws-path: /path, tls: true }
|
||||
|
||||
|
||||
# # socks5
|
||||
# - { name: "socks", type: socks5, server: server, port: 443 }
|
||||
# # socks5 with authentication
|
||||
# - { name: "socks", type: socks5, server: server, port: 443, username: "username", password: "password" }
|
||||
# # tls
|
||||
# - { name: "socks", type: socks5, server: server, port: 443, tls: true }
|
||||
# # tls (skip-cert-verify)
|
||||
# - { name: "socks", type: socks5, server: server, port: 443, tls: true, skip-cert-verify: true }
|
||||
|
||||
# # http
|
||||
# - { name: "http", type: http, server: server, port: 443 }
|
||||
# # http with authentication
|
||||
# - { name: "http", type: http, server: server, port: 443, username: "username", password: "password" }
|
||||
# # tls (https)
|
||||
# - { name: "http", type: http, server: server, port: 443, tls: true }
|
||||
# # tls (https) (skip-cert-verify)
|
||||
# - { name: "http", type: http, server: server, port: 443, tls: true, skip-cert-verify: true }
|
||||
|
||||
Proxy Group:
|
||||
# url-test 可以自动选择与指定 URL 测速后,延迟最短的服务器
|
||||
- { name: "如果该问题持续存在,请联系客服", type: url-test, proxies: ["线路加载失败,请点击左侧刷新按钮"], url: "https://www.bing.com", interval: 300 }
|
||||
|
||||
# fallback 可以尽量按照用户书写的服务器顺序,在确保服务器可用的情况下,自动选择服务器
|
||||
- { name: "fallback-auto", type: fallback, proxies: ["线路加载失败,请点击左侧刷新按钮"], url: "https://www.bing.com", interval: 300 }
|
||||
|
||||
# # load-balance 可以使相同 eTLD 请求在同一条代理线路上
|
||||
# - { name: "load-balance", type: load-balance, proxies: ["ss1"], url: "https://www.bing.com", interval: 300 }
|
||||
|
||||
# select 用来允许用户手动选择 代理服务器 或 服务器组
|
||||
# 您也可以使用 RESTful API 去切换服务器,这种方式推荐在 GUI 中使用
|
||||
- { name: "Proxy", type: select, proxies: ["线路加载失败,请点击左侧刷新按钮", "如果该问题持续存在,请联系客服"] }
|
||||
|
||||
Rule:
|
||||
# Apple
|
||||
- DOMAIN,hls.itunes.apple.com,Proxy
|
||||
- DOMAIN,itunes.apple.com,Proxy
|
||||
- DOMAIN,itunes.com,Proxy
|
||||
- DOMAIN-SUFFIX,digicert.com,DIRECT
|
||||
- DOMAIN-SUFFIX,icloud.com,DIRECT
|
||||
- DOMAIN-SUFFIX,icloud-content.com,DIRECT
|
||||
- DOMAIN-SUFFIX,me.com,DIRECT
|
||||
- DOMAIN-SUFFIX,mzstatic.com,DIRECT
|
||||
- DOMAIN-SUFFIX,akadns.net,DIRECT
|
||||
- DOMAIN-SUFFIX,aaplimg.com,DIRECT
|
||||
- DOMAIN-SUFFIX,cdn-apple.com,DIRECT
|
||||
- DOMAIN-SUFFIX,apple.com,DIRECT
|
||||
#- DOMAIN,e.crashlytics.com,REJECT //注释此选项有助于大多数App开发者分析崩溃信息;如果您拒绝一切崩溃数据统计、搜集,请取消 # 注释。
|
||||
|
||||
|
||||
# 自定义规则
|
||||
## 您可以在此处插入您补充的自定义规则
|
||||
|
||||
# 国内网站
|
||||
- DOMAIN-SUFFIX,cn,DIRECT
|
||||
- DOMAIN-KEYWORD,-cn,DIRECT
|
||||
|
||||
- DOMAIN-SUFFIX,126.com,DIRECT
|
||||
- DOMAIN-SUFFIX,126.net,DIRECT
|
||||
- DOMAIN-SUFFIX,127.net,DIRECT
|
||||
- DOMAIN-SUFFIX,163.com,DIRECT
|
||||
- DOMAIN-SUFFIX,360buyimg.com,DIRECT
|
||||
- DOMAIN-SUFFIX,36kr.com,DIRECT
|
||||
- DOMAIN-SUFFIX,acfun.tv,DIRECT
|
||||
- DOMAIN-SUFFIX,air-matters.com,DIRECT
|
||||
- DOMAIN-SUFFIX,aixifan.com,DIRECT
|
||||
- DOMAIN-SUFFIX,akamaized.net,DIRECT
|
||||
- DOMAIN-KEYWORD,alicdn,DIRECT
|
||||
- DOMAIN-KEYWORD,alipay,DIRECT
|
||||
- DOMAIN-KEYWORD,taobao,DIRECT
|
||||
- DOMAIN-SUFFIX,amap.com,DIRECT
|
||||
- DOMAIN-SUFFIX,autonavi.com,DIRECT
|
||||
- DOMAIN-KEYWORD,baidu,DIRECT
|
||||
- DOMAIN-SUFFIX,bdimg.com,DIRECT
|
||||
- DOMAIN-SUFFIX,bdstatic.com,DIRECT
|
||||
- DOMAIN-SUFFIX,bilibili.com,DIRECT
|
||||
- DOMAIN-SUFFIX,caiyunapp.com,DIRECT
|
||||
- DOMAIN-SUFFIX,clouddn.com,DIRECT
|
||||
- DOMAIN-SUFFIX,cnbeta.com,DIRECT
|
||||
- DOMAIN-SUFFIX,cnbetacdn.com,DIRECT
|
||||
- DOMAIN-SUFFIX,cootekservice.com,DIRECT
|
||||
- DOMAIN-SUFFIX,csdn.net,DIRECT
|
||||
- DOMAIN-SUFFIX,ctrip.com,DIRECT
|
||||
- DOMAIN-SUFFIX,dgtle.com,DIRECT
|
||||
- DOMAIN-SUFFIX,dianping.com,DIRECT
|
||||
- DOMAIN-SUFFIX,douban.com,DIRECT
|
||||
- DOMAIN-SUFFIX,doubanio.com,DIRECT
|
||||
- DOMAIN-SUFFIX,duokan.com,DIRECT
|
||||
- DOMAIN-SUFFIX,easou.com,DIRECT
|
||||
- DOMAIN-SUFFIX,ele.me,DIRECT
|
||||
- DOMAIN-SUFFIX,feng.com,DIRECT
|
||||
- DOMAIN-SUFFIX,fir.im,DIRECT
|
||||
- DOMAIN-SUFFIX,frdic.com,DIRECT
|
||||
- DOMAIN-SUFFIX,g-cores.com,DIRECT
|
||||
- DOMAIN-SUFFIX,godic.net,DIRECT
|
||||
- DOMAIN-SUFFIX,gtimg.com,DIRECT
|
||||
- DOMAIN,cdn.hockeyapp.net,DIRECT
|
||||
- DOMAIN-SUFFIX,hongxiu.com,DIRECT
|
||||
- DOMAIN-SUFFIX,hxcdn.net,DIRECT
|
||||
- DOMAIN-SUFFIX,iciba.com,DIRECT
|
||||
- DOMAIN-SUFFIX,ifeng.com,DIRECT
|
||||
- DOMAIN-SUFFIX,ifengimg.com,DIRECT
|
||||
- DOMAIN-SUFFIX,ipip.net,DIRECT
|
||||
- DOMAIN-SUFFIX,iqiyi.com,DIRECT
|
||||
- DOMAIN-SUFFIX,jd.com,DIRECT
|
||||
- DOMAIN-SUFFIX,jianshu.com,DIRECT
|
||||
- DOMAIN-SUFFIX,knewone.com,DIRECT
|
||||
- DOMAIN-SUFFIX,le.com,DIRECT
|
||||
- DOMAIN-SUFFIX,lecloud.com,DIRECT
|
||||
- DOMAIN-SUFFIX,lemicp.com,DIRECT
|
||||
- DOMAIN-SUFFIX,licdn.com,DIRECT
|
||||
- DOMAIN-SUFFIX,linkedin.com,DIRECT
|
||||
- DOMAIN-SUFFIX,luoo.net,DIRECT
|
||||
- DOMAIN-SUFFIX,meituan.com,DIRECT
|
||||
- DOMAIN-SUFFIX,meituan.net,DIRECT
|
||||
- DOMAIN-SUFFIX,mi.com,DIRECT
|
||||
- DOMAIN-SUFFIX,miaopai.com,DIRECT
|
||||
- DOMAIN-SUFFIX,microsoft.com,DIRECT
|
||||
- DOMAIN-SUFFIX,microsoftonline.com,DIRECT
|
||||
- DOMAIN-SUFFIX,miui.com,DIRECT
|
||||
- DOMAIN-SUFFIX,miwifi.com,DIRECT
|
||||
- DOMAIN-SUFFIX,mob.com,DIRECT
|
||||
- DOMAIN-SUFFIX,netease.com,DIRECT
|
||||
- DOMAIN-SUFFIX,office.com,DIRECT
|
||||
- DOMAIN-SUFFIX,office365.com,DIRECT
|
||||
- DOMAIN-KEYWORD,officecdn,DIRECT
|
||||
- DOMAIN-SUFFIX,oschina.net,DIRECT
|
||||
- DOMAIN-SUFFIX,ppsimg.com,DIRECT
|
||||
- DOMAIN-SUFFIX,pstatp.com,DIRECT
|
||||
- DOMAIN-SUFFIX,qcloud.com,DIRECT
|
||||
- DOMAIN-SUFFIX,qdaily.com,DIRECT
|
||||
- DOMAIN-SUFFIX,qdmm.com,DIRECT
|
||||
- DOMAIN-SUFFIX,qhimg.com,DIRECT
|
||||
- DOMAIN-SUFFIX,qhres.com,DIRECT
|
||||
- DOMAIN-SUFFIX,qidian.com,DIRECT
|
||||
- DOMAIN-SUFFIX,qihucdn.com,DIRECT
|
||||
- DOMAIN-SUFFIX,qiniu.com,DIRECT
|
||||
- DOMAIN-SUFFIX,qiniucdn.com,DIRECT
|
||||
- DOMAIN-SUFFIX,qiyipic.com,DIRECT
|
||||
- DOMAIN-SUFFIX,qq.com,DIRECT
|
||||
- DOMAIN-SUFFIX,qqurl.com,DIRECT
|
||||
- DOMAIN-SUFFIX,rarbg.to,DIRECT
|
||||
- DOMAIN-SUFFIX,ruguoapp.com,DIRECT
|
||||
- DOMAIN-SUFFIX,segmentfault.com,DIRECT
|
||||
- DOMAIN-SUFFIX,sinaapp.com,DIRECT
|
||||
- DOMAIN-SUFFIX,smzdm.com,DIRECT
|
||||
- DOMAIN-SUFFIX,sogou.com,DIRECT
|
||||
- DOMAIN-SUFFIX,sogoucdn.com,DIRECT
|
||||
- DOMAIN-SUFFIX,sohu.com,DIRECT
|
||||
- DOMAIN-SUFFIX,soku.com,DIRECT
|
||||
- DOMAIN-SUFFIX,speedtest.net,DIRECT
|
||||
- DOMAIN-SUFFIX,sspai.com,DIRECT
|
||||
- DOMAIN-SUFFIX,suning.com,DIRECT
|
||||
- DOMAIN-SUFFIX,taobao.com,DIRECT
|
||||
- DOMAIN-SUFFIX,tencent.com,DIRECT
|
||||
- DOMAIN-SUFFIX,tenpay.com,DIRECT
|
||||
- DOMAIN-SUFFIX,tianyancha.com,DIRECT
|
||||
- DOMAIN-SUFFIX,tmall.com,DIRECT
|
||||
- DOMAIN-SUFFIX,tudou.com,DIRECT
|
||||
- DOMAIN-SUFFIX,umetrip.com,DIRECT
|
||||
- DOMAIN-SUFFIX,upaiyun.com,DIRECT
|
||||
- DOMAIN-SUFFIX,upyun.com,DIRECT
|
||||
- DOMAIN-SUFFIX,v2ex.com,DIRECT
|
||||
- DOMAIN-SUFFIX,veryzhun.com,DIRECT
|
||||
- DOMAIN-SUFFIX,weather.com,DIRECT
|
||||
- DOMAIN-SUFFIX,weibo.com,DIRECT
|
||||
- DOMAIN-SUFFIX,xiami.com,DIRECT
|
||||
- DOMAIN-SUFFIX,xiami.net,DIRECT
|
||||
- DOMAIN-SUFFIX,xiaomicp.com,DIRECT
|
||||
- DOMAIN-SUFFIX,ximalaya.com,DIRECT
|
||||
- DOMAIN-SUFFIX,xmcdn.com,DIRECT
|
||||
- DOMAIN-SUFFIX,xunlei.com,DIRECT
|
||||
- DOMAIN-SUFFIX,yhd.com,DIRECT
|
||||
- DOMAIN-SUFFIX,yihaodianimg.com,DIRECT
|
||||
- DOMAIN-SUFFIX,yinxiang.com,DIRECT
|
||||
- DOMAIN-SUFFIX,ykimg.com,DIRECT
|
||||
- DOMAIN-SUFFIX,youdao.com,DIRECT
|
||||
- DOMAIN-SUFFIX,youku.com,DIRECT
|
||||
- DOMAIN-SUFFIX,zealer.com,DIRECT
|
||||
- DOMAIN-SUFFIX,zhihu.com,DIRECT
|
||||
- DOMAIN-SUFFIX,zhimg.com,DIRECT
|
||||
- DOMAIN-SUFFIX,zimuzu.tv,DIRECT
|
||||
|
||||
# 抗 DNS 污染
|
||||
- DOMAIN-KEYWORD,amazon,Proxy
|
||||
- DOMAIN-KEYWORD,google,Proxy
|
||||
- DOMAIN-KEYWORD,gmail,Proxy
|
||||
- DOMAIN-KEYWORD,youtube,Proxy
|
||||
- DOMAIN-KEYWORD,facebook,Proxy
|
||||
- DOMAIN-SUFFIX,fb.me,Proxy
|
||||
- DOMAIN-SUFFIX,fbcdn.net,Proxy
|
||||
- DOMAIN-KEYWORD,twitter,Proxy
|
||||
- DOMAIN-KEYWORD,instagram,Proxy
|
||||
- DOMAIN-KEYWORD,dropbox,Proxy
|
||||
- DOMAIN-SUFFIX,twimg.com,Proxy
|
||||
- DOMAIN-KEYWORD,blogspot,Proxy
|
||||
- DOMAIN-SUFFIX,youtu.be,Proxy
|
||||
- DOMAIN-KEYWORD,whatsapp,Proxy
|
||||
|
||||
# 常见广告域名屏蔽
|
||||
- DOMAIN-KEYWORD,admarvel,REJECT
|
||||
- DOMAIN-KEYWORD,admaster,REJECT
|
||||
- DOMAIN-KEYWORD,adsage,REJECT
|
||||
- DOMAIN-KEYWORD,adsmogo,REJECT
|
||||
- DOMAIN-KEYWORD,adsrvmedia,REJECT
|
||||
- DOMAIN-KEYWORD,adwords,REJECT
|
||||
- DOMAIN-KEYWORD,adservice,REJECT
|
||||
- DOMAIN-KEYWORD,domob,REJECT
|
||||
- DOMAIN-KEYWORD,duomeng,REJECT
|
||||
- DOMAIN-KEYWORD,dwtrack,REJECT
|
||||
- DOMAIN-KEYWORD,guanggao,REJECT
|
||||
- DOMAIN-KEYWORD,lianmeng,REJECT
|
||||
- DOMAIN-KEYWORD,omgmta,REJECT
|
||||
- DOMAIN-KEYWORD,openx,REJECT
|
||||
- DOMAIN-KEYWORD,partnerad,REJECT
|
||||
- DOMAIN-KEYWORD,pingfore,REJECT
|
||||
- DOMAIN-KEYWORD,supersonicads,REJECT
|
||||
- DOMAIN-KEYWORD,tracking,REJECT
|
||||
- DOMAIN-KEYWORD,uedas,REJECT
|
||||
- DOMAIN-KEYWORD,umeng,REJECT
|
||||
- DOMAIN-KEYWORD,usage,REJECT
|
||||
- DOMAIN-KEYWORD,wlmonitor,REJECT
|
||||
- DOMAIN-KEYWORD,zjtoolbar,REJECT
|
||||
|
||||
# 国外网站
|
||||
- DOMAIN-SUFFIX,9to5mac.com,Proxy
|
||||
- DOMAIN-SUFFIX,abpchina.org,Proxy
|
||||
- DOMAIN-SUFFIX,adblockplus.org,Proxy
|
||||
- DOMAIN-SUFFIX,adobe.com,Proxy
|
||||
- DOMAIN-SUFFIX,alfredapp.com,Proxy
|
||||
- DOMAIN-SUFFIX,amplitude.com,Proxy
|
||||
- DOMAIN-SUFFIX,ampproject.org,Proxy
|
||||
- DOMAIN-SUFFIX,android.com,Proxy
|
||||
- DOMAIN-SUFFIX,angularjs.org,Proxy
|
||||
- DOMAIN-SUFFIX,aolcdn.com,Proxy
|
||||
- DOMAIN-SUFFIX,apkpure.com,Proxy
|
||||
- DOMAIN-SUFFIX,appledaily.com,Proxy
|
||||
- DOMAIN-SUFFIX,appshopper.com,Proxy
|
||||
- DOMAIN-SUFFIX,appspot.com,Proxy
|
||||
- DOMAIN-SUFFIX,arcgis.com,Proxy
|
||||
- DOMAIN-SUFFIX,archive.org,Proxy
|
||||
- DOMAIN-SUFFIX,armorgames.com,Proxy
|
||||
- DOMAIN-SUFFIX,aspnetcdn.com,Proxy
|
||||
- DOMAIN-SUFFIX,att.com,Proxy
|
||||
- DOMAIN-SUFFIX,awsstatic.com,Proxy
|
||||
- DOMAIN-SUFFIX,azureedge.net,Proxy
|
||||
- DOMAIN-SUFFIX,azurewebsites.net,Proxy
|
||||
- DOMAIN-SUFFIX,bing.com,Proxy
|
||||
- DOMAIN-SUFFIX,bintray.com,Proxy
|
||||
- DOMAIN-SUFFIX,bit.com,Proxy
|
||||
- DOMAIN-SUFFIX,bit.ly,Proxy
|
||||
- DOMAIN-SUFFIX,bitbucket.org,Proxy
|
||||
- DOMAIN-SUFFIX,bjango.com,Proxy
|
||||
- DOMAIN-SUFFIX,bkrtx.com,Proxy
|
||||
- DOMAIN-SUFFIX,blog.com,Proxy
|
||||
- DOMAIN-SUFFIX,blogcdn.com,Proxy
|
||||
- DOMAIN-SUFFIX,blogger.com,Proxy
|
||||
- DOMAIN-SUFFIX,blogsmithmedia.com,Proxy
|
||||
- DOMAIN-SUFFIX,blogspot.com,Proxy
|
||||
- DOMAIN-SUFFIX,blogspot.hk,Proxy
|
||||
- DOMAIN-SUFFIX,bloomberg.com,Proxy
|
||||
- DOMAIN-SUFFIX,box.com,Proxy
|
||||
- DOMAIN-SUFFIX,box.net,Proxy
|
||||
- DOMAIN-SUFFIX,cachefly.net,Proxy
|
||||
- DOMAIN-SUFFIX,chromium.org,Proxy
|
||||
- DOMAIN-SUFFIX,cl.ly,Proxy
|
||||
- DOMAIN-SUFFIX,cloudflare.com,Proxy
|
||||
- DOMAIN-SUFFIX,cloudfront.net,Proxy
|
||||
- DOMAIN-SUFFIX,cloudmagic.com,Proxy
|
||||
- DOMAIN-SUFFIX,cmail19.com,Proxy
|
||||
- DOMAIN-SUFFIX,cnet.com,Proxy
|
||||
- DOMAIN-SUFFIX,cocoapods.org,Proxy
|
||||
- DOMAIN-SUFFIX,comodoca.com,Proxy
|
||||
- DOMAIN-SUFFIX,crashlytics.com,Proxy
|
||||
- DOMAIN-SUFFIX,culturedcode.com,Proxy
|
||||
- DOMAIN-SUFFIX,d.pr,Proxy
|
||||
- DOMAIN-SUFFIX,danilo.to,Proxy
|
||||
- DOMAIN-SUFFIX,dayone.me,Proxy
|
||||
- DOMAIN-SUFFIX,db.tt,Proxy
|
||||
- DOMAIN-SUFFIX,deskconnect.com,Proxy
|
||||
- DOMAIN-SUFFIX,disq.us,Proxy
|
||||
- DOMAIN-SUFFIX,disqus.com,Proxy
|
||||
- DOMAIN-SUFFIX,disquscdn.com,Proxy
|
||||
- DOMAIN-SUFFIX,dnsimple.com,Proxy
|
||||
- DOMAIN-SUFFIX,docker.com,Proxy
|
||||
- DOMAIN-SUFFIX,dribbble.com,Proxy
|
||||
- DOMAIN-SUFFIX,droplr.com,Proxy
|
||||
- DOMAIN-SUFFIX,duckduckgo.com,Proxy
|
||||
- DOMAIN-SUFFIX,dueapp.com,Proxy
|
||||
- DOMAIN-SUFFIX,dytt8.net,Proxy
|
||||
- DOMAIN-SUFFIX,edgecastcdn.net,Proxy
|
||||
- DOMAIN-SUFFIX,edgekey.net,Proxy
|
||||
- DOMAIN-SUFFIX,edgesuite.net,Proxy
|
||||
- DOMAIN-SUFFIX,engadget.com,Proxy
|
||||
- DOMAIN-SUFFIX,entrust.net,Proxy
|
||||
- DOMAIN-SUFFIX,eurekavpt.com,Proxy
|
||||
- DOMAIN-SUFFIX,evernote.com,Proxy
|
||||
- DOMAIN-SUFFIX,fabric.io,Proxy
|
||||
- DOMAIN-SUFFIX,fast.com,Proxy
|
||||
- DOMAIN-SUFFIX,fastly.net,Proxy
|
||||
- DOMAIN-SUFFIX,fc2.com,Proxy
|
||||
- DOMAIN-SUFFIX,feedburner.com,Proxy
|
||||
- DOMAIN-SUFFIX,feedly.com,Proxy
|
||||
- DOMAIN-SUFFIX,feedsportal.com,Proxy
|
||||
- DOMAIN-SUFFIX,fiftythree.com,Proxy
|
||||
- DOMAIN-SUFFIX,firebaseio.com,Proxy
|
||||
- DOMAIN-SUFFIX,flexibits.com,Proxy
|
||||
- DOMAIN-SUFFIX,flickr.com,Proxy
|
||||
- DOMAIN-SUFFIX,flipboard.com,Proxy
|
||||
- DOMAIN-SUFFIX,g.co,Proxy
|
||||
- DOMAIN-SUFFIX,gabia.net,Proxy
|
||||
- DOMAIN-SUFFIX,geni.us,Proxy
|
||||
- DOMAIN-SUFFIX,gfx.ms,Proxy
|
||||
- DOMAIN-SUFFIX,ggpht.com,Proxy
|
||||
- DOMAIN-SUFFIX,ghostnoteapp.com,Proxy
|
||||
- DOMAIN-SUFFIX,git.io,Proxy
|
||||
- DOMAIN-KEYWORD,github,Proxy
|
||||
- DOMAIN-SUFFIX,globalsign.com,Proxy
|
||||
- DOMAIN-SUFFIX,gmodules.com,Proxy
|
||||
- DOMAIN-SUFFIX,godaddy.com,Proxy
|
||||
- DOMAIN-SUFFIX,golang.org,Proxy
|
||||
- DOMAIN-SUFFIX,gongm.in,Proxy
|
||||
- DOMAIN-SUFFIX,goo.gl,Proxy
|
||||
- DOMAIN-SUFFIX,goodreaders.com,Proxy
|
||||
- DOMAIN-SUFFIX,goodreads.com,Proxy
|
||||
- DOMAIN-SUFFIX,gravatar.com,Proxy
|
||||
- DOMAIN-SUFFIX,gstatic.com,Proxy
|
||||
- DOMAIN-SUFFIX,gvt0.com,Proxy
|
||||
- DOMAIN-SUFFIX,hockeyapp.net,Proxy
|
||||
- DOMAIN-SUFFIX,hotmail.com,Proxy
|
||||
- DOMAIN-SUFFIX,icons8.com,Proxy
|
||||
- DOMAIN-SUFFIX,ift.tt,Proxy
|
||||
- DOMAIN-SUFFIX,ifttt.com,Proxy
|
||||
- DOMAIN-SUFFIX,iherb.com,Proxy
|
||||
- DOMAIN-SUFFIX,imageshack.us,Proxy
|
||||
- DOMAIN-SUFFIX,img.ly,Proxy
|
||||
- DOMAIN-SUFFIX,imgur.com,Proxy
|
||||
- DOMAIN-SUFFIX,imore.com,Proxy
|
||||
- DOMAIN-SUFFIX,instapaper.com,Proxy
|
||||
- DOMAIN-SUFFIX,ipn.li,Proxy
|
||||
- DOMAIN-SUFFIX,is.gd,Proxy
|
||||
- DOMAIN-SUFFIX,issuu.com,Proxy
|
||||
- DOMAIN-SUFFIX,itgonglun.com,Proxy
|
||||
- DOMAIN-SUFFIX,itun.es,Proxy
|
||||
- DOMAIN-SUFFIX,ixquick.com,Proxy
|
||||
- DOMAIN-SUFFIX,j.mp,Proxy
|
||||
- DOMAIN-SUFFIX,js.revsci.net,Proxy
|
||||
- DOMAIN-SUFFIX,jshint.com,Proxy
|
||||
- DOMAIN-SUFFIX,jtvnw.net,Proxy
|
||||
- DOMAIN-SUFFIX,justgetflux.com,Proxy
|
||||
- DOMAIN-SUFFIX,kat.cr,Proxy
|
||||
- DOMAIN-SUFFIX,klip.me,Proxy
|
||||
- DOMAIN-SUFFIX,libsyn.com,Proxy
|
||||
- DOMAIN-SUFFIX,linode.com,Proxy
|
||||
- DOMAIN-SUFFIX,lithium.com,Proxy
|
||||
- DOMAIN-SUFFIX,littlehj.com,Proxy
|
||||
- DOMAIN-SUFFIX,live.com,Proxy
|
||||
- DOMAIN-SUFFIX,live.net,Proxy
|
||||
- DOMAIN-SUFFIX,livefilestore.com,Proxy
|
||||
- DOMAIN-SUFFIX,llnwd.net,Proxy
|
||||
- DOMAIN-SUFFIX,macid.co,Proxy
|
||||
- DOMAIN-SUFFIX,macromedia.com,Proxy
|
||||
- DOMAIN-SUFFIX,macrumors.com,Proxy
|
||||
- DOMAIN-SUFFIX,mashable.com,Proxy
|
||||
- DOMAIN-SUFFIX,mathjax.org,Proxy
|
||||
- DOMAIN-SUFFIX,medium.com,Proxy
|
||||
- DOMAIN-SUFFIX,mega.co.nz,Proxy
|
||||
- DOMAIN-SUFFIX,mega.nz,Proxy
|
||||
- DOMAIN-SUFFIX,megaupload.com,Proxy
|
||||
- DOMAIN-SUFFIX,microsofttranslator.com,Proxy
|
||||
- DOMAIN-SUFFIX,mindnode.com,Proxy
|
||||
- DOMAIN-SUFFIX,mobile01.com,Proxy
|
||||
- DOMAIN-SUFFIX,modmyi.com,Proxy
|
||||
- DOMAIN-SUFFIX,msedge.net,Proxy
|
||||
- DOMAIN-SUFFIX,myfontastic.com,Proxy
|
||||
- DOMAIN-SUFFIX,name.com,Proxy
|
||||
- DOMAIN-SUFFIX,nextmedia.com,Proxy
|
||||
- DOMAIN-SUFFIX,nsstatic.net,Proxy
|
||||
- DOMAIN-SUFFIX,nssurge.com,Proxy
|
||||
- DOMAIN-SUFFIX,nyt.com,Proxy
|
||||
- DOMAIN-SUFFIX,nytimes.com,Proxy
|
||||
- DOMAIN-SUFFIX,omnigroup.com,Proxy
|
||||
- DOMAIN-SUFFIX,onedrive.com,Proxy
|
||||
- DOMAIN-SUFFIX,onenote.com,Proxy
|
||||
- DOMAIN-SUFFIX,ooyala.com,Proxy
|
||||
- DOMAIN-SUFFIX,openvpn.net,Proxy
|
||||
- DOMAIN-SUFFIX,openwrt.org,Proxy
|
||||
- DOMAIN-SUFFIX,orkut.com,Proxy
|
||||
- DOMAIN-SUFFIX,osxdaily.com,Proxy
|
||||
- DOMAIN-SUFFIX,outlook.com,Proxy
|
||||
- DOMAIN-SUFFIX,ow.ly,Proxy
|
||||
- DOMAIN-SUFFIX,paddleapi.com,Proxy
|
||||
- DOMAIN-SUFFIX,parallels.com,Proxy
|
||||
- DOMAIN-SUFFIX,parse.com,Proxy
|
||||
- DOMAIN-SUFFIX,pdfexpert.com,Proxy
|
||||
- DOMAIN-SUFFIX,periscope.tv,Proxy
|
||||
- DOMAIN-SUFFIX,pinboard.in,Proxy
|
||||
- DOMAIN-SUFFIX,pinterest.com,Proxy
|
||||
- DOMAIN-SUFFIX,pixelmator.com,Proxy
|
||||
- DOMAIN-SUFFIX,pixiv.net,Proxy
|
||||
- DOMAIN-SUFFIX,playpcesor.com,Proxy
|
||||
- DOMAIN-SUFFIX,playstation.com,Proxy
|
||||
- DOMAIN-SUFFIX,playstation.com.hk,Proxy
|
||||
- DOMAIN-SUFFIX,playstation.net,Proxy
|
||||
- DOMAIN-SUFFIX,playstationnetwork.com,Proxy
|
||||
- DOMAIN-SUFFIX,pushwoosh.com,Proxy
|
||||
- DOMAIN-SUFFIX,rime.im,Proxy
|
||||
- DOMAIN-SUFFIX,servebom.com,Proxy
|
||||
- DOMAIN-SUFFIX,sfx.ms,Proxy
|
||||
- DOMAIN-SUFFIX,shadowsocks.org,Proxy
|
||||
- DOMAIN-SUFFIX,sharethis.com,Proxy
|
||||
- DOMAIN-SUFFIX,shazam.com,Proxy
|
||||
- DOMAIN-SUFFIX,skype.com,Proxy
|
||||
- DOMAIN-SUFFIX,smartdnsProxy.com,Proxy
|
||||
- DOMAIN-SUFFIX,smartmailcloud.com,Proxy
|
||||
- DOMAIN-SUFFIX,sndcdn.com,Proxy
|
||||
- DOMAIN-SUFFIX,sony.com,Proxy
|
||||
- DOMAIN-SUFFIX,soundcloud.com,Proxy
|
||||
- DOMAIN-SUFFIX,sourceforge.net,Proxy
|
||||
- DOMAIN-SUFFIX,spotify.com,Proxy
|
||||
- DOMAIN-SUFFIX,squarespace.com,Proxy
|
||||
- DOMAIN-SUFFIX,sstatic.net,Proxy
|
||||
- DOMAIN-SUFFIX,st.luluku.pw,Proxy
|
||||
- DOMAIN-SUFFIX,stackoverflow.com,Proxy
|
||||
- DOMAIN-SUFFIX,startpage.com,Proxy
|
||||
- DOMAIN-SUFFIX,staticflickr.com,Proxy
|
||||
- DOMAIN-SUFFIX,steamcommunity.com,Proxy
|
||||
- DOMAIN-SUFFIX,symauth.com,Proxy
|
||||
- DOMAIN-SUFFIX,symcb.com,Proxy
|
||||
- DOMAIN-SUFFIX,symcd.com,Proxy
|
||||
- DOMAIN-SUFFIX,tapbots.com,Proxy
|
||||
- DOMAIN-SUFFIX,tapbots.net,Proxy
|
||||
- DOMAIN-SUFFIX,tdesktop.com,Proxy
|
||||
- DOMAIN-SUFFIX,techcrunch.com,Proxy
|
||||
- DOMAIN-SUFFIX,techsmith.com,Proxy
|
||||
- DOMAIN-SUFFIX,thepiratebay.org,Proxy
|
||||
- DOMAIN-SUFFIX,theverge.com,Proxy
|
||||
- DOMAIN-SUFFIX,time.com,Proxy
|
||||
- DOMAIN-SUFFIX,timeinc.net,Proxy
|
||||
- DOMAIN-SUFFIX,tiny.cc,Proxy
|
||||
- DOMAIN-SUFFIX,tinypic.com,Proxy
|
||||
- DOMAIN-SUFFIX,tmblr.co,Proxy
|
||||
- DOMAIN-SUFFIX,todoist.com,Proxy
|
||||
- DOMAIN-SUFFIX,trello.com,Proxy
|
||||
- DOMAIN-SUFFIX,trustasiassl.com,Proxy
|
||||
- DOMAIN-SUFFIX,tumblr.co,Proxy
|
||||
- DOMAIN-SUFFIX,tumblr.com,Proxy
|
||||
- DOMAIN-SUFFIX,tweetdeck.com,Proxy
|
||||
- DOMAIN-SUFFIX,tweetmarker.net,Proxy
|
||||
- DOMAIN-SUFFIX,twitch.tv,Proxy
|
||||
- DOMAIN-SUFFIX,txmblr.com,Proxy
|
||||
- DOMAIN-SUFFIX,typekit.net,Proxy
|
||||
- DOMAIN-SUFFIX,ubertags.com,Proxy
|
||||
- DOMAIN-SUFFIX,ublock.org,Proxy
|
||||
- DOMAIN-SUFFIX,ubnt.com,Proxy
|
||||
- DOMAIN-SUFFIX,ulyssesapp.com,Proxy
|
||||
- DOMAIN-SUFFIX,urchin.com,Proxy
|
||||
- DOMAIN-SUFFIX,usertrust.com,Proxy
|
||||
- DOMAIN-SUFFIX,v.gd,Proxy
|
||||
- DOMAIN-SUFFIX,vimeo.com,Proxy
|
||||
- DOMAIN-SUFFIX,vimeocdn.com,Proxy
|
||||
- DOMAIN-SUFFIX,vine.co,Proxy
|
||||
- DOMAIN-SUFFIX,vivaldi.com,Proxy
|
||||
- DOMAIN-SUFFIX,vox-cdn.com,Proxy
|
||||
- DOMAIN-SUFFIX,vsco.co,Proxy
|
||||
- DOMAIN-SUFFIX,vultr.com,Proxy
|
||||
- DOMAIN-SUFFIX,w.org,Proxy
|
||||
- DOMAIN-SUFFIX,w3schools.com,Proxy
|
||||
- DOMAIN-SUFFIX,webtype.com,Proxy
|
||||
- DOMAIN-SUFFIX,wikiwand.com,Proxy
|
||||
- DOMAIN-SUFFIX,wikileaks.org,Proxy
|
||||
- DOMAIN-SUFFIX,wikimedia.org,Proxy
|
||||
- DOMAIN-SUFFIX,wikipedia.com,Proxy
|
||||
- DOMAIN-SUFFIX,wikipedia.org,Proxy
|
||||
- DOMAIN-SUFFIX,windows.com,Proxy
|
||||
- DOMAIN-SUFFIX,windows.net,Proxy
|
||||
- DOMAIN-SUFFIX,wire.com,Proxy
|
||||
- DOMAIN-SUFFIX,wordpress.com,Proxy
|
||||
- DOMAIN-SUFFIX,workflowy.com,Proxy
|
||||
- DOMAIN-SUFFIX,wp.com,Proxy
|
||||
- DOMAIN-SUFFIX,wsj.com,Proxy
|
||||
- DOMAIN-SUFFIX,wsj.net,Proxy
|
||||
- DOMAIN-SUFFIX,xda-developers.com,Proxy
|
||||
- DOMAIN-SUFFIX,xeeno.com,Proxy
|
||||
- DOMAIN-SUFFIX,xiti.com,Proxy
|
||||
- DOMAIN-SUFFIX,yahoo.com,Proxy
|
||||
- DOMAIN-SUFFIX,yimg.com,Proxy
|
||||
- DOMAIN-SUFFIX,ying.com,Proxy
|
||||
- DOMAIN-SUFFIX,yoyo.org,Proxy
|
||||
- DOMAIN-SUFFIX,ytimg.com,Proxy
|
||||
|
||||
# Telegram
|
||||
- DOMAIN-SUFFIX,telegra.ph,Proxy
|
||||
- DOMAIN-SUFFIX,telegram.org,Proxy
|
||||
|
||||
- IP-CIDR,91.108.56.0/22,Proxy
|
||||
- IP-CIDR,91.108.4.0/22,Proxy
|
||||
- IP-CIDR,91.108.8.0/22,Proxy
|
||||
- IP-CIDR,109.239.140.0/24,Proxy
|
||||
- IP-CIDR,149.154.160.0/20,Proxy
|
||||
- IP-CIDR,149.154.164.0/22,Proxy
|
||||
|
||||
# LAN
|
||||
- DOMAIN-SUFFIX,local,DIRECT
|
||||
- IP-CIDR,127.0.0.0/8,DIRECT
|
||||
- IP-CIDR,172.16.0.0/12,DIRECT
|
||||
- IP-CIDR,192.168.0.0/16,DIRECT
|
||||
- IP-CIDR,10.0.0.0/8,DIRECT
|
||||
- IP-CIDR,17.0.0.0/8,DIRECT
|
||||
- IP-CIDR,100.64.0.0/10,DIRECT
|
||||
|
||||
# 最终规则
|
||||
- GEOIP,CN,DIRECT
|
||||
- MATCH,Proxy
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 1.6 MiB |
Binary file not shown.
Vendored
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
{"file_format_version": "1.0.0", "ICD": {"library_path": ".\\vk_swiftshader.dll", "api_version": "1.0.5"}}
|
||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user