User Tools

Site Tools


linux:v2ray

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
linux:v2ray [2019/07/13 21:05] percylinux:v2ray [2021/10/02 22:32] (current) – [start/stop] percy
Line 26: Line 26:
  
 ===== start/stop ===== ===== start/stop =====
- +  sudo systemctl start v2ray 
- +  sudo systemctl restart v2ray
-``` +
-sudo systemctl start v2ray +
-sudo systemctl restart v2ray +
-```+
  
 ===== Mac Install ===== ===== Mac Install =====
Line 45: Line 41:
 or run v2ray-core and register it to launch at login via: or run v2ray-core and register it to launch at login via:
   brew services start v2ray-core   brew services start v2ray-core
 +  brew services restart v2ray-core
  
 +===== Router Install =====
 +Download the correct version
 +  - https://github.com/v2ray/v2ray-core/releases/
 +  wget -cS https://github.com/v2ray/v2ray-core/releases/download/v4.20.0/v2ray-linux-arm.zip
 +  unzip v2ray-linux-arm.zip
 +Then copy all the files to the router
 +  scp -r v2ray root@miwifi.com:/userdisk/data/bin/v2ray
 +Add execution permission
 +  chmod +x v2ray
 +  chmod +x v2ctl
 +Update the config.json, the run v2ray
 +  ./v2ray --config=config.json
 +Testing the connection
 +  curl -x socks5://127.0.0.1:1088 google.com
 +Reference
 +  - https://www.v2ray.com/chapter_02/protocols/dokodemo.html
  
 ===== Reference ===== ===== Reference =====
Line 54: Line 67:
 { {
   "inbounds": [{   "inbounds": [{
-    "port": 2710x,+    "port": 2130x, 
 +    "listen": "127.0.0.1",
     "protocol": "vmess",     "protocol": "vmess",
     "settings": {     "settings": {
       "clients": [       "clients": [
         {         {
-          "id": "58ceb1c6-b580-4d2c-bf41-21b6a35ae62x",+          "id": "58ceb1c6-b580-4d2c-bf41-21b6a35xxxx",
           "level": 1,           "level": 1,
           "alterId": 64           "alterId": 64
Line 66: Line 80:
     },     },
  "streamSettings": {  "streamSettings": {
- "network": "mkcp",+ "network": "ws"
 + "wsSettings":
 +     "path": "/xxxxxxx" 
 + },
  "kcpSettings": {  "kcpSettings": {
    "uplinkCapacity": 50,    "uplinkCapacity": 50,
Line 94: Line 111:
       }       }
     ]     ]
-  }+  }, 
 + "log":
 +  "access": "/var/log/v2ray/access.log", 
 +  "loglevel": "info", 
 +  "error": "/var/log/v2ray/error.log" 
 + }
 } }
 </file> </file>
Line 100: Line 122:
 ==== Config file for client ==== ==== Config file for client ====
  
-<file json>+<code json>
 { {
-    "dns":+  "dns": { 
-        "hosts": { +    "servers":
-            "domain:github.io": "pages.github.com", +      "1.1.1.1" 
-            "domain:shadowsocks.org": "electronicsrealm.com", +    ] 
-            "domain:v2ray.com": "www.vicemc.net", +  }, 
-            "domain:wikipedia.org": "www.wikimedia.org"+  "inbounds":
 +    { 
 +      "port": 10808, 
 +      "protocol": "socks", 
 +      "settings": { 
 +        "auth": "noauth", 
 +        "udp": true, 
 +        "userLevel":
 +      }, 
 +      "sniffing": { 
 +        "destOverride": 
 +          "http", 
 +          "tls" 
 +        ], 
 +        "enabled": true 
 +      }, 
 +      "tag": "socks" 
 +    }
 +    { 
 +      "port": 10809, 
 +      "protocol": "http", 
 +      "settings":
 +        "userLevel":
 +      }, 
 +      "tag": "http" 
 +    } 
 +  ], 
 +  "log":
 +    "loglevel": "warning" 
 +  }, 
 +  "outbounds":
 +    { 
 +      "mux":
 +        "enabled": false 
 +      }, 
 +      "protocol": "vmess", 
 +      "settings":
 +        "vnext":
 +          { 
 +            "address""pjq.me", 
 +            "port": 443, 
 +            "users": [ 
 +              { 
 +                "alterId": 64, 
 +                "id": "58ceb1c6-b580-4d2c-bf41-21bxxxxxxxxxx", 
 +                "level": 8, 
 +                "security": "aes-128-gcm" 
 +              } 
 +            
 +          } 
 +        ] 
 +      }, 
 +      "streamSettings": 
 +        "network": "ws", 
 +        "security": "tls", 
 +        "tlssettings":
 +          "allowInsecure": true, 
 +          "serverName": ""
         },         },
-        "servers": +        "wssettings": { 
-            "1.1.1.1", +          "connectionReuse": true
-            +          "headers": { 
-                "address": "114.114.114.114"+            "Host": "" 
-                "domains": +          }, 
-                    "geosite:cn" +          "path": "xxxxx"
-                ], +
-                "port": 53 +
-            }, +
-            "8.8.8.8", +
-            "localhost" +
-        ] +
-    }, +
-    "inbounds":+
-        +
-            "listen": "127.0.0.1", +
-            "port": 1080, +
-            "protocol": "socks", +
-            "settings":+
-                "auth": "noauth", +
-                "ip": "127.0.0.1", +
-                "udp": false +
-            }, +
-            "sniffing":+
-                "destOverride":+
-                    "http", +
-                    "tls" +
-                ], +
-                "enabled": true +
-            }, +
-            "tag": "socks-inbound"+
         }         }
-    ]+      }
-    "log": { +      "tag": "proxy"
-        "loglevel": "warning"+
     },     },
-    "other": {}, +    { 
-    "outbounds":+      "protocol": "freedom", 
-        { +      "settings": {}, 
-            "protocol": "vmess", +      "tag": "direct" 
-            "settings":+    }, 
-                "vnext":+    
-                    { +      "protocol": "blackhole", 
-                        "address": "ef.pjq.mx", +      "settings":
-                        "port": 2710x, +        "response": { 
-                        "users":+          "type": "http"
-                            { +
-                                "id": "58ceb1c6-b580-4d2c-bf41-21b6a35ae62x" +
-                            } +
-                        ] +
-                    } +
-                ] +
-            }, +
-            "streamSettings":+
-                "kcpSettings":+
-                    "congestion": true, +
-                    "downlinkCapacity": 100, +
-                    "header":+
-                        "type": "none" +
-                    }, +
-                    "uplinkCapacity": 50 +
-                }, +
-                "network": "mkcp" +
-            } +
-        }, +
-        +
-            "protocol": "freedom", +
-            "settings": {}, +
-            "tag": "direct" +
-        }, +
-        +
-            "protocol": "blackhole", +
-            "settings": {}, +
-            "tag": "blocked" +
-        +
-    ], +
-    "policy": { +
-        "levels": +
-            "0": { +
-                "downlinkOnly": 0, +
-                "uplinkOnly":+
-            } +
-        }, +
-        "system":+
-            "statsInboundDownlink": false, +
-            "statsInboundUplink": false+
         }         }
 +      },
 +      "tag": "block"
 +    }
 +  ],
 +  "policy": {
 +    "levels": {
 +      "8": {
 +        "connIdle": 300,
 +        "downlinkOnly": 1,
 +        "handshake": 4,
 +        "uplinkOnly": 1
 +      }
     },     },
-    "routing": { +    "system": { 
-        "domainStrategy": "IPOnDemand"+      "statsInboundUplink": true
-        "rules": +      "statsInboundDownlink": true
-            { +
-                "domain":+
-                    "geosite:cn" +
-                ], +
-                "outboundTag": "direct", +
-                "type": "field" +
-            }, +
-            { +
-                "ip":+
-                    "geoip:cn", +
-                    "geoip:private" +
-                ], +
-                "outboundTag": "direct", +
-                "type": "field" +
-            }, +
-            { +
-                "domain":+
-                    "geosite:category-ads" +
-                ], +
-                "outboundTag": "blocked", +
-                "type": "field" +
-            } +
-        ]+
     }     }
 +  },
 +  "routing": {
 +    "rules": [
 +      {
 +         "type": "field",
 +         "inboundTag": ["dokodemo", "http", "socks"],
 +         "outboundTag": "proxy"
 +        }
 +    ]
 +  },
 +  "stats": {},
 +  "inboundDetour":[
 +    {
 +       "protocol":"dokodemo-door",
 +       "port":1099,
 +       "tag": "dokodemo",
 +       "settings":{
 +          "address":"",
 +          "network":"tcp",
 +          "timeout":0,
 +          "followRedirect":true
 +       }
 +     }
 +  ]
 } }
-</file>+</code> 
 + 
 +==== v2ray with nginx ==== 
 +- https://tlanyan.me/v2ray-traffic-mask/ 
  
/var/www/dokuwiki/wiki/data/attic/linux/v2ray.1563023123.txt.gz · Last modified: 2019/07/13 21:05 by percy