All locations active · 99.99% uptime
Proxy Guide

Proxy Terms Glossary

The language of the proxy industry borrows terms from network engineering, web security and data operations. The phrase "backconnect gateway, sticky session, /24 subnet diversity" on a provider's pricing page is meaningless to anyone who does not know these three fields.

This glossary explains the concepts you will meet most often in plain English. The terms are divided into thematic groups; at the end of each group you will find links to our articles that go deeper into the subject.

Basic Concepts

TermMeaning
ProxyThe intermediary server that sits between the client and the target server and forwards requests on its own behalf.
Forward proxyThe proxy that sits in front of the client and manages the exit. This is what is meant when people say "proxy" in everyday use.
Reverse proxyThe proxy that sits in front of the server and receives incoming requests. It handles load balancing and caching.
Gateway / endpointThe single entry address the provider gives you. There can be thousands of exit IPs behind it.
BackconnectThe other name for the gateway model: you connect to a single address and the exit IP changes behind it.
Exit IPThe IP address the target site sees. It does not have to be the same as the address you connect to.
UpstreamThe next server to which the proxy forwards its own request; used in chained setups.
FIGUREThe classification of proxy types
TAXONOMYProxyBy sourcewhere the IP exits fromResidentialISP / DatacenterMobile (4G/5G)By protocolhow it speaksHTTPHTTPS / CONNECTSOCKS4 / SOCKS5By behaviourwhen the IP changesRotatingStickyStaticBy sharinghow many people use itDedicatedSemi-dedicatedShared

A proxy belongs to all four classes at once: "static, dedicated, HTTP, ISP proxy", for example, is a consistent description.

For the details of this classification, see residential, ISP, datacenter and mobile proxy our articles.

Network and Infrastructure Terms

TermMeaning
ASNAutonomous System Number. The identity of the organisation that manages an IP block. It is the first signal sites look at when answering the question "is this IP coming from a data centre?"
SubnetA subdivision of an IP block. In IPv4 a /24 means 256 addresses; in IPv6 a /64 denotes a vast range.
Subnet diversityHow many different blocks the IPs in the pool come from. Addresses within the same /24 are prone to being blocked together.
CGNATThe operator sharing a single public IP among a large number of subscribers. Standard on mobile networks.
NATThe translation of private network addresses into a public address. The basic function of home routers.
TTLTime To Live. How long a session or a DNS record stays valid.
JitterThe variability of the latency value from one measurement to the next. High jitter means an unstable connection.
Packet lossThe proportion of packets that never reach the target. Above 1% it creates a noticeable slowdown.

Session and Rotation Terms

FIGUREThe concepts in the session lifecycle
CYCLE1Sessionsession key2Sticky durationsame IP3TTL expirestime is up4Rotationnew IP

Sticky and rotating are not opposites; they are two stages of the same cycle. Saying "sticky 10 minutes" means rotation happens every 10 minutes.

TermMeaning
Rotating proxyA setup that changes the exit IP on every request or at set intervals.
Sticky sessionKeeping the same exit IP for a certain period. Essential for work that requires logging in.
Session keyThe key that states which session you want; it is usually written into the username.
Static proxyAn unchanging IP address assigned exclusively to you.
QuarantineTemporarily taking a problematic IP out of the pool.
Rate limitThe limit on the number of requests a target site accepts per unit of time.
ConcurrencyThe number of connections that can be kept open at the same time.

For the practical counterparts of these concepts, see our rotating vs static comparison and our concurrency article take a look.

Authentication and Security Terms

TermMeaning
IP whitelistThe method of allowing access only from registered IP addresses.
Basic authEncoding the username and password with Base64 and sending them in a header. It is not encryption.
407Proxy Authentication Required. The proxy is asking for credentials.
Elite / anonymous / transparentThe three levels of anonymity, according to how much trace the proxy leaves on the target server.
JudgeThe test endpoint that echoes back every header it receives; the anonymity level is measured with it.
DNS leakName resolution requests going outside the proxy and giving away your real location.
WebRTC leakThe browser exposing your local/real IP through its real-time communication API.
JA3 / TLS fingerprintRecognising the client library from the order of the fields in the TLS handshake.
MITMMan in the middle. Traffic being read or altered by an interposed party.

To test the leak concepts hands-on, see DNS leak, WebRTC leak and anonymity test tools.

Protocol Terms

FIGUREWhich layer does each protocol work at?
LAYER7ApplicationHTTP / HTTPSThe HTTP proxy makes its decisions here5SessionSOCKS4 / SOCKS5SOCKS does not look at the content, it carries it4TransportTCP / UDPPorts and reliability3NetworkIPv4 / IPv6Addressing and routing

This is why SOCKS5 is more "general purpose" than an HTTP proxy: because it works at a lower layer, it can carry protocols other than HTTP as well.

TermMeaning
CONNECTThe method of telling an HTTP proxy to "open a raw TCP tunnel to this address". This is how HTTPS traffic is carried.
Absolute-URIThe request line containing the full URL in a plain HTTP proxy request: GET http://site/ HTTP/1.1.
SOCKS5hThe SOCKS5 variant that asks for DNS resolution to be done on the proxy side. It prevents DNS leaks.
UDP ASSOCIATEThe command that lets SOCKS5 carry UDP traffic.
SNIThe field in the TLS handshake that states which domain name is being connected to. It is sent unencrypted.
Keep-aliveReusing the same TCP connection for more than one request.
PAC fileThe small JavaScript file that determines which proxy is used for which address.

If you are undecided about which protocol to choose, our HTTP vs SOCKS5 comparison with SOCKS4 vs SOCKS5 difference articles will show you the way.

Data Operation Terms

TermMeaning
ScrapingExtracting data from web pages programmatically.
CrawlingSystematic navigation by following links; the discovery stage of scraping.
Headless browserA real browser engine that runs without an interface. Needed for content generated with JavaScript.
SERPSearch Engine Results Page — the results page of a search engine.
Rank trackingRegularly monitoring your ranking for particular keywords.
Geo-targetingSelecting the exit IP by country, region or city.
Antidetect browserThe special browser that assigns a separate fingerprint and proxy to each profile.
FingerprintThe unique identity derived from browser and device characteristics.
Quota / bandwidthThe total data volume you can use within your package.

Commercial Terms

TermMeaning
DedicatedAn IP allocated to you alone. You are not affected by anyone else's behaviour.
Semi-dedicatedAn IP shared with a limited number of users (usually 2–3).
SharedAn IP shared with a large number of users. The cheapest and the riskiest.
SLAService level agreement. Usually expressed as an uptime percentage.
UptimeThe percentage of time the service is available. 99.9% means around 43 minutes of downtime a month.
Fair useThe written cap policy applied to "unlimited" packages.
TrialA short or volume-limited test before purchase.
Tip

Keep the practical meaning of uptime percentages in mind: 99% means around 7 hours of downtime a month, 99.9% around 43 minutes, and 99.99% around 4 minutes. The difference is small in the numbers and large in operations.

Error and Status Codes

FIGURECodes commonly seen in a proxy context
CODESCODE / SYMPTOMLIKELY CAUSESOLUTION403 ForbiddenThe target or the proxy refused accessIP reputation or whitelist check407 Proxy Auth RequiredThe proxy is waiting for credentialsAdd a user/password or a whitelist entry429 Too Many RequestsThe target's rate limit has been exceededLower your request rate, enlarge the pool502 / 504The proxy could not reach the target, or timed outCheck target availability and the timeout valueSIMECONNRESETThe connection was reset by the other sideReduce concurrency, shorten the keep-alive duration

The source of the code is critical: 407 comes from the proxy, 429 from the target, and ECONNRESET can come from either. When debugging, identify the source first.

Summary

This glossary covers most of the concepts you will come across while reading a proxy provider's technical documentation or pricing page. To see the practical counterparts of the terms you can work through our category pages; and if you are wondering which class an address you have actually falls into, with the proxy checker tool you can find out its protocol, its exit IP and its anonymity level in one go.

Frequently Asked Questions

01Are a backconnect proxy and a rotating proxy the same thing?

Almost. Backconnect describes the architecture in which you connect to a single gateway address while the exit changes behind it. Rotating describes the behaviour of the IP changing. In practice, backconnect architecture is used to produce rotating behaviour.

02Why is ASN so important?

Target sites work out whether an IP comes from a data centre or a real subscriber network by looking at its ASN record. Because data centre ASNs appear in public lists, classification is very easy.

03Should I buy a semi-dedicated proxy?

It is a middle ground between budget and risk. Because it is shared with only a few users it is far safer than shared, and noticeably cheaper than dedicated. Apart from sensitive account operations, it is enough in most scenarios.

04Who decides the sticky session duration?

The provider defines an upper limit (usually 1–30 minutes) and you choose a value within that range. When the time is up, a new IP is assigned even with the same session key.

05What is a judge, and why is it needed?

A judge is a test endpoint that echoes back every HTTP header that reaches it. Only an endpoint like this lets you see for certain which headers your proxy adds and whether your real IP is leaking.

Related Articles and Pages

NEXT STEP

Strengthen your proxy setup today.

Get started in minutes with a paid plan, or try our free proxy list first.

FREEPROXY.TR

Looking for a free proxy? You're in the right place

A complete proxy platform where you can browse up-to-date free proxy addresses, compare HTTP and SOCKS proxy types, and check your proxy connections with free tools.