Node js bind request to different interface or IP address

3.8k Views Asked by At

I want to force my node js app to download through a specific interface or IP address.

In Linux with wget I can do this with something like this:

wget --bind-address=192.168.21.21 http://example.com

or similarly with curl:

curl --interface 192.168.21.21 --ipv4 http://example.com

I am currently using the request package but I can't see a similar option and could change from this if I had to.

How can I bind my download to an IP address or interface with node js request?

Edit: I have seen the questions in the comments but they don't seem to address my question of how to do this in request and I am not using expressjs as my app doesn't have a server/web presence.

1

There are 1 best solutions below

0
On BEST ANSWER

I had the same requirement and it turns out it's really easy to do. Just use the localAddress option in request (it's the same option as in the http module):

(async () => {

  let request = require('request-promise-native'); // (a promisified version of request module)

  // This prints your machine's IP
  console.log( await request({ uri: 'https://api.ipify.org' }) );

  // This prints '***.***.***.***'
  console.log( await request({ uri: 'https://api.ipify.org', localAddress: '***.***.***.***' }) );

})();

(Replace ***.***.***.*** with your new static IP)

Note that you will of course need to have already set up your static IP and have configured it in your OS. In case it helps anyone, with Ubuntu 16.04 you'd just add this to the end of your /etc/network/interfaces file:

auto ens3:0
iface ens3:0 inet static
  address ***.***.***.***
  netmask 255.255.254.0

(Again, replace ***.***.***.*** with your IP) More details here.