Node 标签下的文章

Clash Verge Node Configuration Guide

Node Configuration Guide

Understanding Nodes

Nodes are proxy servers that route your internet traffic through different locations. Clash Verge supports various types of nodes:

Node Types

  1. Shadowsocks (SS): Encrypted proxy protocol
  2. ShadowsocksR (SSR): Enhanced version of SS with additional features
  3. V2Ray: Advanced proxy protocol with multiple transport methods
  4. Trojan: Protocol designed to bypass deep packet inspection
  5. HTTPS: Standard HTTPS proxy

Adding Nodes

  1. Get your subscription URL from your proxy provider
  2. Open Clash Verge
  3. Go to Profiles tab
  4. Click New ProfileURL
  5. Paste your subscription URL
  6. Click Download

Method 2: Manual Configuration

  1. Go to Profiles tab
  2. Click New ProfileFile
  3. Create a YAML configuration file
  4. Add your node configurations

Example Configuration

proxies:
  - name: "US Server"
    type: ss
    server: us.example.com
    port: 8388
    cipher: aes-256-gcm
    password: your_password
  
  - name: "UK Server"
    type: trojan
    server: uk.example.com
    port: 443
    password: your_password
    sni: uk.example.com

proxy-groups:
  - name: "Proxy"
    type: select
    proxies:
      - "US Server"
      - "UK Server"
      - "DIRECT"

  - name: "Auto"
    type: url-test
    proxies:
      - "US Server"
      - "UK Server"
    url: http://www.gstatic.com/generate_204
    interval: 300

Testing Nodes

  1. Latency Test: Click the Test Latency button to check server response times
  2. Connectivity Test: Use the built-in test URLs to verify connectivity
  3. Real-world Testing: Visit websites to confirm the proxy is working

Managing Nodes

  • Enable/Disable: Toggle individual nodes on/off
  • Reorder: Drag and drop to change node priority
  • Delete: Remove unused nodes
  • Backup: Export your configuration for backup

Best Practices

  1. Multiple Providers: Use nodes from different providers for redundancy
  2. Geographic Diversity: Choose nodes from various countries/regions
  3. Regular Updates: Keep your subscription updated
  4. Performance Monitoring: Regularly test node performance
  5. Security: Use strong passwords and secure protocols

阅读