This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

New added service not allowed

I added a new service which is running on one of my internal servers on port 8222 (vmware-server).In Internet explorer i configured to use the astora box as proxy and selected not to use proxy for local addresses and entered the beginning of the subnet of my network.When i try to open the webpage of the internal server which is on the same subnet as the pc i get the following message: Target service not allowed.

What am i doing wrong ???


This thread was automatically locked due to age.
Parents
  • I Don't think you are doing something wrong. It's IE that's screwing things up. In my experience, proxy settings within IE work fine unless you are starting to use port numbers. Then suddenly it doesn't know what to do anymore [;)]

    My solution (if there is a better one, please let me know): Create a proxy configuration script (c:\windows\system32\drivers\etc\proxy.pac for instance, but name and location are yours to decide) and enter the following lines:

    function FindProxyForURL(url, host)
    {
    // Always allow non-routable sites in the local intranet
    if (isInNet(host, "192.168.1.0", "255.255.255.0"))
    return "DIRECT";

    else
    //Return standard proxy address
            return "PROXY 192.168.1.254:8080";
    }


    This example is for subnet 192.168.1.0, adjust range and netmask to suit your subnet.

    In IE, Connections->LAN Settings do not check proxy server, but check 'Use automatic configuration script' and enter name and location of the script (c:\windows\system32\drivers\etc\proxy.pac in this example)

    This works for me, hope this will help
Reply
  • I Don't think you are doing something wrong. It's IE that's screwing things up. In my experience, proxy settings within IE work fine unless you are starting to use port numbers. Then suddenly it doesn't know what to do anymore [;)]

    My solution (if there is a better one, please let me know): Create a proxy configuration script (c:\windows\system32\drivers\etc\proxy.pac for instance, but name and location are yours to decide) and enter the following lines:

    function FindProxyForURL(url, host)
    {
    // Always allow non-routable sites in the local intranet
    if (isInNet(host, "192.168.1.0", "255.255.255.0"))
    return "DIRECT";

    else
    //Return standard proxy address
            return "PROXY 192.168.1.254:8080";
    }


    This example is for subnet 192.168.1.0, adjust range and netmask to suit your subnet.

    In IE, Connections->LAN Settings do not check proxy server, but check 'Use automatic configuration script' and enter name and location of the script (c:\windows\system32\drivers\etc\proxy.pac in this example)

    This works for me, hope this will help
Children
No Data