Best External IP Switcher? (Or any at all)

ivarga

Junior Member
Joined
Mar 13, 2014
Messages
166
Reaction score
63
Hello! I am currently working on a project which requires me to switch my IP.. Nothing illegal just testing out some new stuff.. Anyways..

It involves using Internet Explorer and changing my IP

using a proxy inside the IExplorer settings is not an option so I was wondering what External IP Switches there are out there, I really couldnt find any and if I would I wouldnt know which one that would be the msot efficient.
 
May I know what type of network are you using because there is lot like windows based computers, network routers or MAC OS.
If you clearly tell me I suggest you some steps to change your IP.
 
Free IP switcher is a tool which fulfill your requirement. It not only change the IP address. But also change the settings are as follows:

DNS Server and DNS Domain,
WINS Server,
Work group,
Network-Domain,
Proxy Settings.
 
My suggestion is Cyber Ghost VPN. It protects your online privacy.
It hides your IP and replaces it with one of your choice.
Safe online browsing, and automatically forces HTTPS secured connections are features of Cyber Ghost VPN.

Some similar tools are,
IP switcher,
IP hider pro,
Easy hide IP, and
Open VPN.
 
I use Proxy SwitchyOmega for Chrome which you can install from - https://chrome.google.com/webstore/...adekgcemlokbadohgkifijomclgjgif/related?hl=en

It's a bit clunky to get all your proxies loaded in one hit but there's a great support post covering a bulk import here - https://github.com/feliscatus/switchyomega/issues/235
or bulk import with user:pass on the same page. I've modified the code a little for the user:pass option to have the proxy IP as the profile name. My code is

Code:
var changes = {};
window.prompt().split(';').forEach(function (proxy, i) {
  var parts = proxy.trim().split(':');
  if (parts.length < 2) return;
  var profile = OmegaPac.Profiles.create({
    name: parts[0],
    color: "#99ccee",
    profileType: "FixedProfile",
    fallbackProxy: OmegaPac.Profiles.parseHostPort(parts[0] + ':' + parts[1], 'http'),
    auth: parts[2] && {fallbackProxy: {
      username: parts[2],
      password: parts[3],
    }}
  });
  OmegaPac.Profiles.updateRevision(profile);
  changes[OmegaPac.Profiles.nameAsKey(profile)] = profile;
});
chrome.storage.local.set(changes, location.reload.bind(location));


Basically, once installed, go to the options page, hit F12, click on console, enter the below script.

Then paste in your list of proxies as ipaddress:port:user:pass with a ; separating each of them. They should therefore be pasted in as a single line.

To clear out all existing profiles , just remove the Proxy SwitchyOmega extension and re-add it. This is great when you've got a new set of proxies, takes less than a minute.
 
Last edited:
Thank you Mrankin, but i am still having a little trouble with you steps? I did the F12 thing and go to console but when i enter the ips in i get an error - aside from that i tried the JSON editor and need a little guidance on how to execute it properly?

- I am guessing i enter the ips in some part of this code, just do not know which
 
Last edited:
Back
Top