# PlayStation Network Acceleration with VPN: A Complete Setup Guide for PS4/PS5

> Accelerate PlayStation Network on PS4 or PS5 by setting up a VPN proxy on your PC. Follow our complete guide for faster gaming. Get started now.

- Repository: [如何翻墙/fanqiang](https://github.com/bannedbook/fanqiang)
- Tags: how-to-guide
- Published: 2026-08-10

---

**To accelerate PlayStation Network on PS4 or PS5, run a proxy client (Shadowsocks or V2Ray) on a Windows PC with LAN sharing enabled, then configure the console to use the PC's IP address and proxy port (typically 1080 or 10811) via Settings → Network → Set Up Internet Connection.**

The **bannedbook/fanqiang** repository provides a curated collection of markdown tutorials demonstrating how to bypass regional network restrictions using a **host-share-proxy** architecture. For PlayStation consoles, this approach routes HTTP traffic through a Windows-based proxy client while keeping gameplay traffic on your direct ISP connection, resulting in faster store downloads and system updates without increasing gaming latency.

## How the Host-Share-Proxy Architecture Works

According to the source tutorials in `game/PS4-PS5游戏机通过局域网翻墙教程.md`, the solution relies on three components working together:

- **Host**: A Windows PC running a proxy client (Shadowsocks, V2Ray, Clash, or Netch) configured to listen on `0.0.0.0` to accept LAN connections.
- **Share**: The PC and PlayStation must reside on the same local network (same router or Wi-Fi), with the PC's local IP address serving as the gateway.
- **Proxy**: The PlayStation routes HTTP traffic only (web pages, PlayStation Store, game patches) through the PC, while native app traffic (YouTube, Netflix) bypasses the proxy unless using router-level firmware.

This architecture ensures that only web-based services receive **VPN acceleration**, while real-time multiplayer traffic follows the shortest network path to minimize ping.

## Step-by-Step Configuration

### Step 1: Configure the Proxy Client on Windows

First, install and configure your preferred proxy client on the Windows host machine. The client must expose an HTTP proxy port accessible to other devices on the network.

For **Shadowsocks**, ensure your [`config.json`](https://github.com/bannedbook/fanqiang/blob/main/config.json) includes `"local_address":"0.0.0.0"` to listen on all interfaces:

```json
{
  "server": "YOUR_VPN_SERVER_IP",
  "server_port": 443,
  "local_address": "0.0.0.0",
  "local_port": 1080,
  "password": "YOUR_PASSWORD",
  "method": "aes-256-gcm",
  "mode": "tcp_and_udp",
  "plugin": "",
  "plugin_opts": {}
}

```

For **V2Ray** (or V2RayN), configure an HTTP inbound listening on `0.0.0.0` with port `10811`:

```json
{
  "inbounds": [
    {
      "port": 10811,
      "listen": "0.0.0.0",
      "protocol": "http",
      "settings": {}
    }
  ],
  "outbounds": [
    {
      "protocol": "vmess",
      "settings": {
        "vnext": [
          {
            "address": "YOUR_VPN_SERVER_IP",
            "port": 443,
            "users": [{ "id": "YOUR_UUID", "alterId": 64 }]
          }
        ]
      }
    }
  ]
}

```

**Critical**: Enable the **"Allow LAN connections"** option in your proxy client's user interface. Without this setting, the PlayStation cannot connect to the PC's proxy port.

### Step 2: Enable LAN Access and Locate Your PC's IP

Both devices must connect to the same local network. Retrieve your Windows PC's local IP address using the Command Prompt:

```bat
@echo off
for /f "tokens=2 delims=:" %%i in ('ipconfig ^| findstr /i "IPv4"') do (
  set ip=%%i
)
echo Your LAN IP is: %ip%

```

Alternatively, run `ipconfig` manually and note the IPv4 address (typically `192.168.x.x`). This IP address becomes your **proxy server address** for the PlayStation configuration.

### Step 3: Configure PlayStation Network Proxy Settings

On your PS4 or PS5 console:

1. Navigate to **Settings → Network → Set Up Internet Connection**.
2. Select your current network and choose **Custom → Manual**.
3. For **Proxy Server**, select **Use**.
4. Enter the following values:
   - **Proxy Server**: Your PC's LAN IP (e.g., `192.168.1.23`)
   - **Port**: `1080` for Shadowsocks or `10811` for V2Ray
   - **Username/Password**: Leave blank (unless your proxy requires authentication)

Save the settings and test the connection. The console will now route HTTP traffic through the Windows PC's VPN tunnel, accelerating PlayStation Store downloads and system updates.

## Configuration Examples

### Shadowsocks Configuration (config.json)

Save the following as [`config.json`](https://github.com/bannedbook/fanqiang/blob/main/config.json) in your Shadowsocks client directory. The key parameter for PlayStation acceleration is `"local_address":"0.0.0.0"`, which binds the proxy to all network interfaces:

```json
{
  "server": "YOUR_VPN_SERVER_IP",
  "server_port": 443,
  "local_address": "0.0.0.0",
  "local_port": 1080,
  "password": "YOUR_PASSWORD",
  "method": "aes-256-gcm",
  "mode": "tcp_and_udp",
  "plugin": "",
  "plugin_opts": {}
}

```

### V2Ray HTTP Inbound for PlayStation

When using V2RayN, the HTTP port displayed at the bottom of the application window (commonly **10811**) must match the port entered in the PlayStation settings:

```json
{
  "inbounds": [
    {
      "port": 10811,
      "listen": "0.0.0.0",
      "protocol": "http",
      "settings": {}
    }
  ]
}

```

### Retrieve Your LAN IP Address

Use this batch script to quickly identify which IP address to provide to your console:

```bat
@echo off
rem Show IPv4 address of the active network adapter
for /f "tokens=2 delims=:" %%i in ('ipconfig ^| findstr /i "IPv4"') do (
  set ip=%%i
)
echo Your LAN IP is: %ip%
pause

```

## Limitations and Router-Level Alternatives

As documented in the repository's FAQ sections, this **PlayStation network acceleration** method has specific limitations:

- **HTTP-only routing**: Only web-based services (PlayStation Store, system updates, web browser) use the proxy. Native applications like YouTube and Netflix do not use HTTP and therefore cannot be accelerated through the PC-based proxy.
- **Router-level solution required**: To proxy non-HTTP traffic, you must install proxy software directly on your router (e.g., flashing Merlin firmware or using a macOS device as a gateway router as described in `game/Switch、 PlayStation、Xbox等游戏机翻墙教程，利用MAC电脑做旁路由加速.md`).

The `game/` directory also contains alternative methods using **SStap** and **Netch** as free game accelerators, which follow the same LAN-sharing principle but may offer simplified configuration interfaces for Windows users.

## Summary

- **Host-share-proxy** is the standard architecture for PlayStation VPN acceleration: run the client on Windows, share via LAN, and point the console at the PC's IP.
- **Shadowsocks** uses port `1080` while **V2Ray** typically uses port `10811`; both require `"listen": "0.0.0.0"` to accept external connections.
- Only **HTTP traffic** receives acceleration; native streaming apps require router-level proxy installation.
- The **bannedbook/fanqiang** repository provides detailed tutorials in `game/PS4-PS5游戏机通过局域网翻墙教程.md` and related files for Windows, macOS, and router-based setups.

## Frequently Asked Questions

### Can I use this method to accelerate Netflix or YouTube on PlayStation?

No. According to the source documentation, native applications like Netflix and YouTube on PlayStation do not use HTTP protocols and therefore cannot be routed through the PC-based proxy. To accelerate these services, you must install proxy software directly on your router (router-level VPN) or use a macOS device as a gateway router.

### Why does my PlayStation fail to connect to the proxy?

Ensure that **"Allow LAN connections"** is enabled in your proxy client settings, and verify that the PC and PlayStation are on the same local network. Additionally, check that your Windows Firewall allows inbound connections on the proxy port (1080 for Shadowsocks, 10811 for V2Ray).

### Will using a VPN increase my gaming latency?

No. The host-share-proxy architecture only routes **HTTP traffic** (store downloads, updates) through the VPN tunnel. Real-time gameplay traffic follows your direct ISP route, maintaining optimal ping times for multiplayer games while accelerating download speeds for system updates and purchases.

### Can I use macOS instead of Windows as the proxy host?

Yes. The repository includes `game/Switch、 PlayStation、Xbox等游戏机翻墙教程，利用MAC电脑做旁路由加速.md`, which explains how to configure ClashX Pro on macOS as a gateway router for PlayStation network acceleration. The principle remains identical: configure the proxy client to allow LAN connections, then point the console at the Mac's local IP address.