Proxy Settings
Learn how to configure AiBooster proxy settings, including system proxy, TUN mode, and port configuration.
Proxy Settings
This article covers how to configure various proxy options in AiBooster.
Proxy Modes
AiBooster supports multiple proxy modes:
System Proxy
System proxy is the most common mode, automatically configuring system network settings.
- Open AiBooster
- Go to Settings → Proxy Settings
- Enable System Proxy
In system proxy mode, traffic from most applications is automatically routed through AiBooster.
TUN Mode
TUN mode creates a virtual network interface to capture all network traffic.
- Go to Settings → Proxy Settings
- Enable TUN Mode
- Grant necessary permissions when prompted
| Mode | Advantages | Use Case |
|---|---|---|
| System Proxy | Easy setup | Daily browsing |
| TUN Mode | Global proxy | Gaming, special apps |
TUN mode requires administrator/root privileges. On mobile devices, it will request VPN permission.
Port Settings
HTTP/SOCKS Proxy Port
{
"inbounds": [
{
"type": "mixed",
"listen": "127.0.0.1",
"listen_port": 7890
}
]
}| Port Type | Default Port | Description |
|---|---|---|
| HTTP/SOCKS | 7890 | Mixed proxy port |
| HTTP | 7891 | Pure HTTP proxy |
| SOCKS5 | 7892 | Pure SOCKS5 proxy |
Changing Ports
- Go to Settings → Proxy Settings → Port Settings
- Modify the desired port number
- Click Save
Ensure the port is not occupied by other programs. Use ports in the range 1024-65535.
LAN Sharing
Allow other devices on the local network to use the proxy:
- Go to Settings → Proxy Settings
- Enable Allow LAN Connections
- Change listen address to
0.0.0.0
{
"inbounds": [
{
"type": "mixed",
"listen": "0.0.0.0",
"listen_port": 7890
}
]
}Other device configuration:
- Proxy address: IP of the device running AiBooster
- Proxy port: 7890
Bypass Settings
Bypass Specific Domains
Domains that don't need proxy can be added to the bypass list:
- Go to Settings → Proxy Settings → Bypass Rules
- Add domains or IPs
- Wildcards
*are supported
Common bypass rules:
localhost
127.*
10.*
172.16.*
192.168.*
*.local
Bypass Specific Applications
Some platforms support per-app proxy settings:
- Go to Settings → App Proxy
- Select Proxy Mode:
- Proxy All
- Proxy Selected Only
- Bypass Selected Only
DNS Settings
Configure DNS Servers
{
"dns": {
"servers": [
{
"tag": "remote",
"address": "tls://8.8.8.8",
"detour": "proxy"
},
{
"tag": "local",
"address": "223.5.5.5",
"detour": "direct"
}
],
"rules": [
{
"domain_suffix": [".cn"],
"server": "local"
}
],
"final": "remote"
}
}Recommended DNS
| DNS | Address | Description |
|---|---|---|
| Google DNS | 8.8.8.8 | Stable and reliable |
| Cloudflare | 1.1.1.1 | Privacy-friendly |
| Alibaba DNS | 223.5.5.5 | Recommended in China |
| Tencent DNS | 119.29.29.29 | Alternative in China |
Troubleshooting
Proxy Not Working
- Check if proxy is enabled
- Verify node is functioning
- Try switching proxy mode
- Restart AiBooster
Port Already in Use
- Use a different port
- Close the program using the port
- Restart device and try again
LAN Devices Cannot Connect
- Check firewall settings
- Verify listen address is
0.0.0.0 - Ensure devices are on the same network segment