
It's not hard to change the IP address of a desktop computer, but I'll show you how to do it in three moves.
Old iron is not often encountered this situation: registered account is restricted, climbing data is blocked IP, or simply want to change a network identity? Don't panic, today let's talk about how to change the IP of the desktop computer, focusing on the use of proxy IP.most trouble-freeThe method can be much easier than setting up the router manually.
The first trick: manually change the IP (suitable for temporary use)
Right-click on the network icon in the lower right corner → Open Network Settings → Ethernet → Change Adapter Options → Double-click on the network connection you are using → Properties → Internet Protocol version 4 (TCP/IPv4). Here you will be able to fill in the new IP manually, but be careful:
IP address: 192.168.1.100 (to be on the same network segment as the router)
Subnet mask: 255.255.255.0
Default gateway: 192.168.1.1
There are two pitfalls to this method: one is thatCan only change LAN IPThe first is that the external IP is still given by the carrier; the second is that if you change it too much, you may be blacked out by your home router. Suitable for temporary emergencies, long-term use also have to see the following trick.
Tip #2: Proxy IPs are the real deal (permanent solution)
This is a must-have for our own products.ipipgoProxy service. The operation is very simple: find the proxy server option in your browser settings and put in the address and port provided by ipipgo. For example, Chrome's settings path:
Settings→Advanced→System→Open Proxy Settings→Manual Proxy Settings
Address: gateway.ipipgo.net
Port: 8899
Here's the point! There are three things to look for when choosing a proxy IP:
1. ToResidential IP(Harder to block than server room IPs)
2. To supportSocks5 protocol(best compatibility)
3. To be able toAutomatic IP switching(Saves you from having to change it manually.)
Move 3: Programmer's Only Play (Code Example)
Crawler old brother look here, using Python + ipipgo API to realize automatic IP change:
import requests
proxies = {
'http': 'socks5://user:pass@gateway.ipipgo.net:8899',
'https': 'socks5://user:pass@gateway.ipipgo.net:8899'
}
resp = requests.get('http://example.com', proxies=proxies)
print(resp.text)
Remember to replace user and pass with your own key generated in the ipipgo backend, supportvolumetric billingEspecially suitable for small and medium-sized projects, you can buy a fixed IP for a whole month for 35 bucks.
QA time (a must for newbies)
Q: Will I be caught if I change my IP?
A:正常用途完全合法,但别用来搞网络攻击或者,ipipgo也会监控异常流量
Q: Which one to choose, dynamic IP or static IP?
A: do data collection with dynamic (cheap volume), the need to stabilize the login static (expensive but not easy to drop)
Q: Why do you recommend ipipgo?
A: His familyExclusive TK line低,而且支持1-to-1 customized programsIt's not like the others where you can only buy a fixed package.
| Package Type | Applicable Scenarios | Price advantage |
|---|---|---|
| Dynamic residential (standard) | Web Page Capture/Account Registration | 7.67 Yuan/GB |
| Static homes | Game Multiplayer/Overseas E-Commerce | 35 Yuan/Month/IP |
One last piece of cold knowledge: ipipgo'scross-border rail line其实是给外贸公司视频会议用的,但用来打游戏居然比普通代理低一半,这波操作属实是意外之喜了。

