I need to create an alias for my network interface such that it can be accessed locally with either 127.0.0.1 or 33.33.33.33.
In *nix I would do this:
sudo ifconfig en1 inet 33.33.33.33/32 alias
It appears that the netsh
tool may be able to do the same thing. If so, how? I've seen some examples that seem close, but I don't understand the options provided.
The motivation for this is to run two instances of JBossAS on the same machine without port offsets. Thus, they would need to use the same port numbers without conflicting.
It may depend on which version of Windows you have, but here are some steps from my Windows 7 machine. You want to get to your "local adapter settings". There are probably 1000 ways to do this, but here is one.
Another approach is to add the Microsoft Loopback adapter as a network device. This lets you set up a virtual network adapter on your machine. This can be useful for network testing from your own machine. See http://social.technet.microsoft.com/Forums/en-US/w7itpronetworking/thread/259c7ef2-3770-4212-8fca-c58936979851/ for more info.
for anyone coming, as i have, from google:
another way to accomplish this is to set a route and set the destination to understand the ip, an example: recently at our company our service was stopped for our T1, some old software that no one had the code for hard coded the external address of our server and we needed to make it go to an internal address of 192.168.2.100 so i set this route on the client machines: route -p add 208.44.37.176 MASK 255.255.255.248 192.168.2.100 METRIC 1 and on the server i set it's interface to listen on 208.44.37.182
so when the client tries to connect to 208.44.37.182 it would check the routing table, it would do a bitwise AND on the netmask for anything in the routing table to match to the routing address (the 208.44.176) and then route it to the gateway (192.168.2.100) failing this is routes to the default gateway.
so in this case it routes it through to 192.168.2.100 who sees it's addressed to him and replies in turn. if he wasn't listening on 208.44.37.182 then he would ignore it (or, if he is configured to do so, pass it along til someone takes it or drops it)
(for those curious about why that netmask:
182 is 10110110
248 is 11111000
176 is 10110000
for a bitwise AND if one of the two bits is 0, the result is 0, if they are both 1 it's 1. so you see taking 182 and bitwise ANDing it to 248 gives 176)
those are the things i learned when working on this, hope it helps someone else.
There is a comment about how to add alias while still using DHCP for the main one. I have similar problem.
The solution is:
(1) Add Microsoft Loopback Adapter as a network device (taken from here):
From that point on it's the same approach as under Vista, i.e.:
(2) To see the newly added network interface, and specify an IP address:
go to C:\Windows\System32\drivers\etc\hosts on windows and add a new entry as below
eg: 106.200.247.101 abc.com
Then you will be able to refer to using given hostname
You'd be correct. Also, you can add multiple addresses without touching the command line using the advanced interface properties screen.
I found the answer.
If you obtain your IP address from DCHP, you don't need to configure IP address (making sense knowing that it is the service of a DCHP) so all you need to do is to determine the gateway.