How to achieve an IP change in 3 sec with Python? Any working methods? or Is it possible to do an IP

18 Replies, 1323 Views

Why not just use a VPN service with multiple endpoints?

Like, OpenVPN + Python’s `subprocess` to reconnect:

```python
import subprocess
subprocess.run(['openvpn', '--config', 'server1.ovpn'])
# disconnect, then reconnect to server2.ovpn
```
Not *exactly* 3 sec, but with a good VPN, it’s pretty quick.

Messages In This Thread



Users browsing this thread: 1 Guest(s)