vpn for website

I am trying to connect to a website using the custom item. I’m not sure if its connected properly as I’m having issues. I need an Italian connection to connect. Here are the websites

https://core.startab.it/

https://core.startab.it/power_of_one_emulator

For this case, I’d like to recommend for you to use Mudfish Browser Extension.

I think you can use the following PAC syntax to apply the above website:

function FindProxyForURL(url, host) {
  host = host.toLowerCase();
  if (isPlainHostName(host) ||
      isInNetEx(host, "127.0.0.0/8") ||
      isInNetEx(host, "10.0.0.0/8") ||
      isInNetEx(host, "172.16.0.0/12") ||
      isInNetEx(host, "192.168.0.0/16") ||
      isInNetEx(host, "fc00::/7") ||
      isInNetEx(host, "fe80::/10") ||
      host == "mudfish.net" ||
      host == "www.mudfish.net") {
        return "DIRECT";
  }
  if (host == "core.startab.it" ||
      host == "myip.mudfish.net") {
    return "{0}";
  }
  return "DIRECT";
}

Then I think you can try to access with IT Europe (Milan - Amazon EC2) mudfish node.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.