1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
| inbound:httpauthin=http(address: 0.0.0.0, port: 1081, user: user1, pass: user1pass, user:user2, pass:user2pass) inbound:socksauthin=socks(address: 0.0.0.0, port: 1082, udp:true, user: 123, pass: 123) inbound:sockslocalin=socks(address: 127.0.0.1, port: 1080, udp:true) inbound:sniffing_socks=socks(address: 127.0.0.1, port: 1080, udp:true, sniffing: http, sniffing: tls) inbound:sniffing_http=http(address: 127.0.0.1, port: 1081, sniffing: 'http, tls')
outbound:httpout=http(address: 127.0.0.1, port: 8080, user: 'my-username', pass: 'my-password') outbound:socksout=socks(address: 127.0.0.1, port: 10800, udp:true, user: "my-username", pass: "my-password") outbound:special=freedom(domainStrategy: AsIs, redirect: "127.0.0.1:3366", userLevel: 0)
default: httpout
domain(domain: v2raya.org) -> socksout domain(full: dns.google) -> proxy domain(contains: facebook) -> proxy domain(regexp: \.goo.*\.com$) -> proxy domain(geosite:category-ads) -> block domain(geosite:cn)->direct
ip(8.8.8.8) -> direct ip(101.97.0.0/16) -> direct ip(geoip:private) -> direct
source(192.168.0.0/24) -> proxy source(192.168.50.0/24) -> direct
port(80) -> direct port(10080-30000) -> direct
sourcePort(38563) -> direct sourcePort(10080-30000) -> direct
domain(contains: google, domain: www.twitter.com, domain: v2raya.org) -> proxy
ip(geoip:cn, geoip:private) -> direct ip(9.9.9.9, 223.5.5.5) -> direct source(192.168.0.6, 192.168.0.10, 192.168.0.15) -> direct
inboundTag(httpauthin, socksauthin) -> direct inboundTag(sockslocalin) -> special
ip(geoip:cn) && port(80) && user(mzz2017@tuta.io) -> direct ip(8.8.8.8) && network(tcp, udp) && port(1-1023, 8443) -> proxy ip(1.1.1.1) && protocol(http) && source(10.0.0.1, 172.20.0.0/16) -> direct
|