I am a newbie VB.NET 2005 programmer. I would like to develop an application that does not show 开发者_开发百科my real IP Address instead it shows some fake IP Address. There is a commercial Application called "HIDE MY IP" it uses the same functionality.
I don't want to make same software, but i need this aspect of the software for my new application.
Any Help regarding this? Where to get Started?
Is this possible in VB.NET 2005?
Truly hiding your IP would require that you are leveraging some type of proxy service or tunneling service (VPN) which is relaying your requests on your behalf and acting as an intermediary. While your internal IP is probably private and thus truly not visible to the outside world anyway, the IP address you use through your service provider which is public cannot be obsfucated or hidden. Only if you relay can you hide your true address, but your relay will be public. Without a real address you cannot do any IP communications and thus all protocols will be unidirectional and fail.
You could write a VB.NET 20005 application which simply connects you to a proxy server or tunnels your Internet traffic through a VPN which in turn hides your IP address.
精彩评论