descriptionnone
repository URLhttps://github.com/katlogic/bindip.git
ownerkat@lua.cz
last changeSat, 27 Feb 2016 03:48:32 +0000 (26 19:48 -0800)
last refreshMon, 6 May 2024 17:29:42 +0000 (6 19:29 +0200)
content tags
add:
README.md

BindIP

This program allows you to assign network interface (ie "source IP address") for each application in Windows. You can have one program routed through wifi, another through wired connection, next through a VPN ...

It started as a spiritual sucessor of http://old.r1ch.net/stuff/forcebindip/ which was too feature limited and closed sourced, thus impossible to fix.

Some of the new features are:

TODO / known bugs

Building

You need MSYS2 and 64bit windows. Just pacman -S gcc and make. To sign the dlls, you need to create your snake oil cert. I didn't include kat.pfx to avoid malicious parties abusing it if you trust my snake oil.

Usage

screenshot

In the list to the left you select an application you want to configure (it is a multiselect list, hold ctrl to configure more at once), in the right list click on interface to assign (or 'default route' to remove assignments).

You can also set two global options:

Global Winsock hook - with this checkbox, all network applications will be affected with settings you configure automatically. It is off by default and you need admin privileges to enable this setting, otherwise the second option can be used. Note that for applications which run with elevated privileges (such as VirtualBox) you generally want to use this, as per-application injection often does not work in that case.

Add right-click option to shell explorer - with this enabled, you'll see this when right clicking an application icon shortcut/executable:

popup

You have to run program you want affected by BindIP through this menu item, unless you have enabled Global Winsock hook.

Finally, you can just prefix stuff you run on command line with bindip, ie

$ bindip git clone http://some.place/repo

When using shell extension/command prefix, child processes which don't have explicitly configured binding will inherit it from parent process.

This inheritance is controlled through BINDIP_EXE environment variable, which is just set to some .exe basename, same as seen in the left panel of the gui.

Any program which sees this variable assume identity configured in there. Windows passes environment on children so everything in process tree will see the same value.

You can of course create shortcuts where program path is prefixed with bindip, or without it (with global hook enabled) - just setting custom BINDIP_EXE is enough. Note that without the environment, inheritance does not work (ie when using global hook, you're advised to create shortcuts with BINDIP_EXE set).

Setting up default interface

When a program has no particular interface selected, ie (default route'), system will choose one based on "interface metric". To change the preferred default route, first figure out which interface it actually is:

C:\> route print
...
IPv4 Route Table
===========================================================================
Active Routes:
Network Destination        Netmask          Gateway       Interface  Metric
          0.0.0.0          0.0.0.0          10.0.0.1      10.0.0.2   10
          0.0.0.0          0.0.0.0          192.168.0.1   192.168.0.2 20
....

Notice the Interface and Metric columns. 10.0.0.2 is my wired connection, and 192.168.0.2 is VPN. The VPN metric is higher, which means it is not a preferred default route (only used by apps who have it explicitly assigned with BindIP). Wired connection has the lowest metric and is thus used as default when there is no override assignment. To change this arrangement, I can click 'View network connections' control panel, find the adapter with that ip (10.0.0.2 in this case):

metrics

Click on Internet protocol version 4 (TCP/IPv4), then Properties, then Advanced, then uncheck Automatic metric and put some number in the field. With manual metrics we can determine the order in which interfaces take precedence as default - the lowest number wins. In this case, metric was changed to 50, after closing all 3 dialogs we get:

C:\> route print
...
IPv4 Route Table
===========================================================================
Active Routes:
Network Destination        Netmask          Gateway       Interface  Metric
          0.0.0.0          0.0.0.0          192.168.0.1   192.168.0.2 20
          0.0.0.0          0.0.0.0          10.0.0.1      10.0.0.2   50
....

And now the VPN takes precedence (is used for everything), because of the lowest metric number. Without explicitly setting it, windows configures metrics automatically, see https://support.microsoft.com/en-us/kb/299540

Caveat: Sometimes, broken VPN software will set two more specific default routes (0.0.0.0/1 and 128.0.0.0/1 destinations) as means to override all other default routes regardless of metric. This is harmful kludge or misconfiguration, and should be fixed on the part of the VPN provider, as users can no longer configure their preferred default route.

Code signing

Some applications (VirtualBox does this) and antivirus software and domain policies permit only signed DLL to be loaded. To make this work, download ceriticate from https://github.com/katlogic/bindip/raw/master/katCA.cer and run:

> certutil.exe -addstore Root katCA.cer

Which will make the distributed DLLs trusted. MSI installer does this automatically for you.

FAQ

Is it possible to add a switch so you can choose the adapter or "IP" address the application goes out rather then metric ?

You can configure the bindings programatically via registry - HKCU\Software\BindIP\Mapping. Note that adapters are mapped by GUID internally. To get GUIDs mappings, you can use WMI. In powershell:

PS C:\Users\kat> Get-WmiObject  -Class Win32_NetworkAdapterConfiguration -ComputerName . | Select-Object -Property SetingID,Description,IPAddress

SettingID                              Description                            IPAddress
---------                              -----------                            ---------
{12345678-1234-1234-1234-123456789121} Microsoft Kernel Debug Network Adapter
{12345678-1234-1234-1234-123456789122} Intel(R) PRO/1000 MT Desktop Adapter
{12345678-1234-1234-1234-123456789123} Microsoft ISATAP Adapter
{12345678-1234-1234-1234-123456789124} Microsoft Teredo Tunneling Adapter
{12345678-1234-1234-1234-123456789125} Realtek PCIe GBE Family Controller     {10.0.0.8}

The value you're lookign for is SettingID. Then in cmd:

C:\> REG ADD HKCU\Software\BindIP\Mapping /f /v someexe.exe /t REG_SZ /d {12345678-1234-1234-1234-123456789125}

This is the equivalent of clicking an adapter Realtek PCIe GBE Family Controller when someexe.exe is selected in the GUI.

You can create some fake exe name for each adapter, ie:

C:\> REG ADD HKCU\Software\BindIP\Mapping /f /v intel_nic.exe /t REG_SZ /d {12345678-1234-1234-1234-123456789122}
C:\> REG ADD HKCU\Software\BindIP\Mapping /f /v realtek_nic.exe /t REG_SZ /d {12345678-1234-1234-1234-123456789125}

And then when you need to bind specific NIC, just:

C:\> set BINDIP_EXE=intel_nic.exe
C:\> someapp.exe
shortlog
2016-02-27 katlogicUpdate README.mdmaster
2016-02-27 katlogicUpdate README.md
2015-08-09 ka tClarify code signing
2015-08-09 katlogicAdd snake oil CA cert.v0.5
2015-08-09 katlogicfaux code signing, pin the dll after wsh unload
2015-08-05 katlogicBump verv0.3
2015-08-05 katlogic* Fix connecting to localhost
2015-08-05 katlogicReformat docs to 80 colsv0.2
2015-08-05 katlogicMerge branch 'master' of github.com:katlogic/bindip
2015-08-05 katlogicCleanups; binding inheritance for child processes
2015-08-04 katlogicv2
2015-08-04 ka tUpdate README.md
2015-08-04 ka tWrite manual
2015-08-03 katlogicwix installerv0.1
2015-08-03 katlogicAdd icon
2015-08-03 katlogicimport
tags
8 years ago v0.5
8 years ago v0.3
8 years ago v0.2
8 years ago v0.1
heads
8 years ago master