Page 1 of 1

Bind Chromium to a specific IP?

Posted: Sun Apr 19, 2020 3:52 pm
by vitaliy_zh
Suppose I have a server with multiple IP addresses. Can I bind Chromium to a specific IP?

Re: Bind Chromium to a specific IP?

Posted: Mon Apr 20, 2020 8:30 am
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?

Re: Bind Chromium to a specific IP?

Posted: Tue Apr 21, 2020 11:08 am
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.