Disclosure Statement: This site contains affiliate links, which means that I may receive a commission if you make a purchase using these links. As an eBay Partner, I earn from qualifying purchases.

Bind Chromium to a specific IP?

Post Reply
vitaliy_zh
Posts: 8
Joined: Thu Apr 02, 2020 2:28 pm

Bind Chromium to a specific IP?

Post by vitaliy_zh »

Suppose I have a server with multiple IP addresses. Can I bind Chromium to a specific IP?
User avatar
salvadordf
Posts: 4062
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: Bind Chromium to a specific IP?

Post by salvadordf »

Perhaps you can use a proxy to make think the server that your computer is in another location and send you different content.
Is this what you mean?
dilfich
Posts: 330
Joined: Thu Nov 30, 2017 1:17 am

Re: Bind Chromium to a specific IP?

Post by dilfich »

salvadordf wrote: Mon Apr 20, 2020 8:30 am Perhaps you can use a proxy to make think the server that your computer is in another location and send you different content.
Is this what you mean?
On the server, you can have a lot of addresses, apparently there is a possibility to choose the connection, and the browser can only go straight to one without any choice.
For example on sockets

Code: Select all

Bind(FSock.LocalName, 80); // Any first, although I don't know myself how it is selected)))
or
Bind( '193.0.203.203', '80'); // Or if we strictly specify IP connection
Chrome works roughly according to the first option.
Post Reply