Share a private server and Public Netwok SRV 2008 R2

I have two separate networks I need to share a single server, with Public (192,...) and private (10...) East of private and Public is local internet circuit behind a firewall. I need two networks to see the server (which has two network cards both with an IP assigned by each network) Security is configured it works, but the server can not see in our area, unless the Public network adapter is disabled / how can I configure the server will send all ay on our private network and doesn't allow access to the folder dir 192 public local users

It is a consumer - & Microsoft Security Essentials-specific forum. You will find the Windows Server support in these forums: http://social.technet.microsoft.com/Forums/en/category/windowsserver

Specific Windows Server security sub-forum: http://social.technet.microsoft.com/Forums/en-US/winserversecurity/threads

Tags: Windows

Similar Questions

  • Oracle Database 11 g RAC 2: role of the Public, private, virtual, and SCAN IPs.

    Hi Experts,

    1 can you please let me know why we need to set up under IP addresses for the RAC configuration and what is the role that each plays?


    -Public
    -Private
    -Virtual
    -SCAN

    2. What is the relationship between IP SCAN and virtual IPs?

    Concerning

    Hello

    859875 wrote:
    Hi Experts,

    1 can you please let me know why we need to set up under IP addresses for the RAC configuration and what is the role that each plays?

    -Public

    Configured before installation for each node and can be resolved at this node before installing.
    Role:
    Enable Virtual/SCAN configuration/communication between the nodes in the cluster. Do not start the Clusterware without public IP Interface/address.
    Virtual/SCAN will work as an alias IP on the public Interface on the Public network.

    -Private or interconnection

    Configured before installation, but on a separate private network, with its own subnet, which is not resolved except by other nodes in the cluster member
    Role:
    Clusterware uses for cluster synchronization (network heartbeat) interconnection and communication of demon among the nodes in the cluster.
    RAC uses the interconnect for cache fusion (UDP) and inter-process communication (TCP).
    Cache Fusion is the remote Oracle buffers, shared memory mapping between the caches of the members of the cluster nodes.

    -Virtual

    Configured before installation for each node, but not currently in use. IP, VIP and treats public SCAN addresses than any other addresses on the same subnet.
    Role:
    The goal is the availability of the applications. If add or remove nodes as your remove VIP client config (with SCAN, it is not necessary)
    When a node fails, the VIP associated with it is automatically failed over to another node.
    Without using VIPs or FAN, clients connected to a node who died often wait a TCP timeout (which can be up to 10 min) before getting an error.
    So, you don't have really a good HA solution without using VIPs and FAN. The best way to use the FAN is to use a client integrated with fast connection failover (FCF) such as JDBC, OCI, or ODP.NET.

    -SCAN

    Three static IP addresses that are configured on the server (DNS) domain names prior to installation so that the three IP addresses are associated with the name provided as the SCAN, and all three addresses are returned in random order by the DNS to the applicant
    Configured prior to installation in the DNS to resolve the addresses that are not currently in use. Addresses on the same subnet than all other IP addresses, addresses VIP and public SCAN
    Role:
    The goal is the availability of the applications before clients establish communication with CARS and make the whole of the Cluster completely transparent.
    IP SCANNER is a new 'layer' (oracle) with high availability network that allows to modify the characteristics of your cluster (IE add/remove nodes) without having to change the configuration in their concept of customers 'grid '.
    >

    2. What is the relationship between IP SCAN and virtual IPs?

    IP SCANNER is used to receive new connection requests and redirects to the VIP IP.
    The virtual IP address sets and allow failover of connections after connection is established.

    When the client requests a connection, Oracle Client 11 GR 2 find for IP addresses and create a list of all IP SCAN available for this host-scan, the first attempt to connect to RAC uses one of the available SCAN IP addresses.
    The listener ANALYSIS will receive this connection and re - direct to one of the available using LOCAL_LISTENER nodes from that time the connection is made by using the virtual IP (VIP).

    All SCAN/VIP must be resolved by the DNS.

    The customer knows that there is only the Hostname SCAN, which is configured in the connection string.
    Once the connection is requested Oracle Clusterware redirects the connection to one of the VIP host name must be resolved by the DNS.

    Kind regards
    Levi Pereira

  • Cannot connect to share on another server with a short name only

    • We are having a problem with a SCCM server on windows 2008 R2 enterpeise and trying to connect to another Server 2003 \\aush-pen-xxx01\c$ and gets the error message the specified network name is no longer available. I can do a nslookup and ping the server very well. can map using the ip address and the fully qualified name fine. Can get to other thin servers. and also connect to other servers to the server aush-feather end. This works if the server, then it stops again. No errors in the event log. Tried to get other disks on the server and the same issue. I created another share with permisions for all and always the same question.

      Any ideas?

      • This is the C$ which is the part of the administrator and I can access other servers. I created a test share and get the same question even if share and security permissions are at the world. When I restart the SCCM server, it's good for a while, then I get the error again. I need for SCCM to access this share. Maybe some kind of smb or implementing caching perhaps?

    Hello mrdamo,

    Your question of Windows Server is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the IT Pro TechNet public.

    Please ask your question in the Technet Windows Server General category.
    http://social.technet.Microsoft.com/forums/en-us/winservergen/threads

    Thank you

    Marilyn

  • Error on image from the server and display streaming

    Hi all

    Im trying to read an Image that origin of the server and displays on a screen

    Here's the code I'm using to broadcast the image.

    It is streaming on my Simulator as well as on some devices.

    But on some devices, it's not streaming and throw an exception.

    public UrlToEncodedImage(String url)
    {
    HttpConnection connection = null;
    InputStream inputStream = null;
    byte[] dataArray = null;
    
    try
    {
    connection = (HttpConnection) Connector.open(url+getConnectionString(), Connector.READ, true);
    inputStream = connection.openInputStream();
    byte[] responseData = new byte[10000];
    int length = 0;
    StringBuffer rawResponse = new StringBuffer();
    while (-1 != (length = inputStream.read(responseData)))
    {
    rawResponse.append(new String(responseData, 0, length));
    }
    int responseCode = connection.getResponseCode();
    if (responseCode != HttpConnection.HTTP_OK)
    {
    throw new IOException("HTTP response code: "+ responseCode);
    } 
    
    final String result = rawResponse.toString();
    dataArray = result.getBytes();
    }
    catch (final Exception ex)
    { }
    
    finally
    {
    try
    {
    inputStream.close();
    inputStream = null;
    connection.close();
    connection = null;
    }
    catch(Exception e){}
    } 
    
    bitmap = EncodedImage.createEncodedImage(dataArray, 0,dataArray.length);
    // this will scale your image acc. to your height and width of bitmapfield
    
    int multH;
    int multW;
    int currHeight = bitmap.getHeight();
    int currWidth = bitmap.getWidth();
    if(currHeight>350&&currWidth>350){
        bitmap=scaleToFactor(bitmap,currWidth,currHeight,Display.getWidth()-20,250);
    }
    
    }
    public EncodedImage getEncodedImage()
    {
    return bitmap;
    }
    public  EncodedImage scaleToFactor(EncodedImage encoded, int curWidth, int curHeight, int newWidth,
            int newHeight)
    {
         int numerator_width = Fixed32.toFP(curWidth);
         int denominator_width = Fixed32.toFP(newWidth);
         int scale_width = Fixed32.div(numerator_width, denominator_width);
    
         int numerator_height = Fixed32.toFP(curHeight);
         int denominator_height = Fixed32.toFP(newHeight);
         int scale_height = Fixed32.div(numerator_height, denominator_height);
    
         return encoded.scaleImage32(scale_width, scale_height);
    }
    private static String getConnectionString()
    {
        String connectionString = null;
        if(DeviceInfo.isSimulator())
        {
                if(UrlToEncodedImage.USE_MDS_IN_SIMULATOR)
                {
                       connectionString = ";deviceside=false";
                }
                else
                {
                       connectionString = ";deviceside=true";
                }
        }
        else if(WLANInfo.getWLANState() == WLANInfo.WLAN_STATE_CONNECTED)
        {
           connectionString = ";interface=wifi";
        }
    
        else if((CoverageInfo.getCoverageStatus() & CoverageInfo.COVERAGE_DIRECT) == CoverageInfo.COVERAGE_DIRECT)
        {
            String carrierUid = getCarrierBIBSUid();
            if(carrierUid == null)
            {
             connectionString = ";deviceside=true";
            }
            else
            {
               connectionString = ";deviceside=false;connectionUID="+carrierUid + ";ConnectionType=";
            }
        }                
    
       else if((CoverageInfo.getCoverageStatus() & CoverageInfo.COVERAGE_MDS) == CoverageInfo.COVERAGE_MDS)
        {
          connectionString = ";deviceside=false";
        }
    
       else if(CoverageInfo.getCoverageStatus() == CoverageInfo.COVERAGE_NONE)
        {}
        else
        { connectionString = ";deviceside=true";} 
    
        return connectionString;
    }
    private static String getCarrierBIBSUid()
    {
        ServiceRecord[] records = ServiceBook.getSB().getRecords();
        int currentRecord;
    
        for(currentRecord = 0; currentRecord < records.length; currentRecord++)         {             if(records[currentRecord].getCid().toLowerCase().equals("ippp"))             {                 if(records[currentRecord].getName().toLowerCase().indexOf("bibs") >= 0)
                {
                    return records[currentRecord].getUid();
                }
            }
        }
    
        return null;
    }
    

    The underlined part of the code is where the uid is sent as public _.

    Please, look in the code and let me know where the error is, or is there a better way to disseminate the image.

    In the hope that you hear.

    Thank you & best regards

    Krishnan

    Hello

    I found the error.

    It's in the URL sent by the server.

    The URL consisted of http://google.com

    But the format required to retrieve the image on several device would be http://www.google.com.

    Thanks for anyone who tried to help him.

    Krishnan.

  • Must I declare and place my first private methods and attributes?

    Hello

    Just a general question about programming style, as I'm a bit unsure what is the best practice...

    I wrote an Application made up of 11 classes as part of an assignment and I am it will soon... However, I started noticing that my classes are involved with public and private methods and began to wonder if there is no consensus, just if it is best to declare and place all private at the beginning of the trace class methods of those public or vice versa, and is at its best to declare and set instance variables and attributes at the beginning or end of the class , or maybe even, just before the method where they serve first?

    Would be grateful and advice or suggestions so that i can keep my code tidy and neat as possible...

    Many ways

    Patrick

    Published by: 839854 on February 25, 2011 07:23

    839854 wrote:
    .. If there is no consensus about whether it is better to declare and place all private at the beginning of the class methods will be followed by the public...

    That's what I tend to do. It is also one of the options provided in Eclipse 'code' cleaning options.

    and at its best to declare and set instance variables and attributes at the beginning

    Again, this is what I do; but that's probably because I come from a background of language of proceedings.

    or end of the class

    I tend to find that a little confusing.

    or perhaps even, just before the method where they serve first?

    A lot of people who prefer, and I can understand the arguments for it.

    Would be grateful and advice or suggestions so that i can keep my code tidy and neat as possible...

    Certain order is mandated by the DG JLS, especially when it comes to static members, but the rest is largely "in the eye of the beholder." Indentation practices and documentation (learn how to use the Javadoc) can also help a lot.

    But, in my opinion, the more important to make readable programs part is design them well.
    As Einstein said (paraphrasing): "as simple as possible, but not simpler."
    It is amazing how many programmers forget that old chestnut.

    But it is good to know that you are worried about it. Here there were more like you around.

    Winston

  • Why VIP and public IP must be in the listener.ora file

    Hi all

    I was all confused as why it must configure the listener with VIP and IP public as shown below.
    SID_LIST_LISTENER_ABCD =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = PLSExtProc)
          (ORACLE_HOME = /usr/local/opt/oracle/product/10.2.0)
          (PROGRAM = extproc)
        )
      )
    
    LISTENER_ABCD =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = TCP)(HOST = abcd-vip)(PORT = 1521)(IP = FIRST))
          (ADDRESS = (PROTOCOL = TCP)(HOST = 10........)(PORT = 1521)(IP = FIRST))
        )
      )
    Why the public IP address is required for listener?

    -Yasser

    Published by: YasserRACDBA on May 10, 2010 13:18

    The name of the node indicates the status of the connection.

    For example:
    Node1 - vip:1521 (LISTEN)

    This means that host node1-vip open tcp port 1521 and is listening for connections to the port. The process it takes place, it is likely that the Oracle local listener.

    Example:
    Node1 - vip:1521-> node1.ttn.com:64662 (ESTABLISHED)

    This shows a connection established. Note that this does not show who is the client and server. It can be assumed (correctly in most cases) with the registered or well-known port is the server, and one with dynamic or private ports is the customer.

    So, using this approach, the client node1.ttn.com is connected to port 1521 (registered port) on the server of node1-vip. The client uses port 64662 (private port).

    The process owner is probably a dispatcher or a dedicated server process.

    As far as TCP goes, there are two basic for a TCP socket States. The socket is connected to another socket- and communication socket can be made between here and somewhere else. In other words, it is a connection established between a client and a server.

    A socket may also not be be connected to another socket. This Jack is created as an end of listening. There is to listen to the customers login requests.

  • Thunderbird can recover emails on a private server?

    I have a private server, dovecot, set up and I am trying to configure Thunderbird to retrieve her email via IMAP on port 143. I intend to set up TLS encryption at some point, but for now I just try to get the two to talk. I don't have a domain name, so when you create account I enter the IP address of the server to tuberculosis [TB02.png]. This audit has never ends by the way no matter what I put in the password field, but I don't know if TB is in contact with the ISP database mentioned here (https://support.mozilla.org/en-US/kb/automatic-account-configuration) or if it's the mark actually provided IP address. Now I can bypass this check by clicking on the Advanced Settings button (once I manually configured the SMTP options), but when TB tries to retrieve the mail from the server, I get the "Failed to connect to server" notification [TB03.png] as if dovecot is not yet running.
    I checked that server-side works by using an email client different (Mail Simple extension for Firefox) and the dovecot logs indicate that he received these authentication attempts (and the server will listen on port 143, so that rules out TB and simple mail using different protocols or ports). The server also running exim4 to handle SMTP connections, but he only listen on the loopback interface, so TB won't be able to use it as outgoing server. I do not know if that plays a role in the creation of an account or not, so I thought I should mention.
    So my main problem is that I don't know what Thunderbird did and I could not find any documentation that deals with private messaging servers, everything I found said something to the effect of "just put your email address and it will take care of everything for you!
    Thanks to anyone who decides to try to offer some insight.

    Why the main points on the domain name server?

    Your user name must the full email address including the domain? I'm not familiar with loft.

  • Open a local copy or move on the server, and then disconnect while the task is running until the end

    RNOS6 running on RNDU600 +.

    Looking to start a local copy or move of the large collection of files on the server, and then disconnect the PC while the task is running until the end. For example, to move a branch of several hundreds of GB of small files from one share to another, or copy them to a share.

    Seems to make my PC (in wireless) is inefficient as each file seems to have sent to the PC first, then return to the NAS.

    Is there a way of ordering on the NAS, so that it can continue the operation even if the PC is disconnected?

    Have you tried to make using the web administration page?

  • Convert VI from the private to the public

    Try to make a public private VI. I clicked open the class explore and moved the file from the private to the public. Then I moved it physically dir private to the public. Access to a class now, said public, saved from the class. When I try to put in a block diagram, it is always private. What should I do?

    Thank you

    JVH

  • My computer is connected to the Windows 2008 R2 server and some of the users on this computer receive their network drive mapped on group policy and some do not.

    My computer is connected to the Windows 2008 R2 server and some of the users on this computer receive their network drive mapped on group policy and some do not.  I find nothing in Event Viewer that shows that there is a problem.  Please let me know what to do to get the disks appears

    Original title: Network Networking file sharing file sharing file sharing file sharing discovery sharing Fileshare share shared

    Hi,

    The question you posted would be better suited in the TechNet Forums. I would recommend posting your query in the TechNet Forums.

    TechNet Forum

    http://social.technet.Microsoft.com/forums/en-us/category/WindowsServer

     

    Hope this information helps.

  • launching a private server

    I put a site together for a friend, and I asked him to find a host. I had used the name cheap in the past and suggested the same thing.

    He told me that it it works from his private server of brother-in-laws.

    What can I expect when I go to start?

    What will take to his sister-in-law bro?

    I'm kinda a newbie-

    Thank you-

    Hello pixelfixel,

    Please check this doc - Upload a site Muse to a third-party free hosting of images , export to HTML, and then download the filezilla website or any third-party FTP client will be a good option for your.

    Let me know if it helps.

    Thank you

    Ankush

  • What "unmapped user access" for NFS share in Windows Server 2008 R2?

    In the beginning, I followed this Youtube video to set up an NFS share in Windows Server 2008 R2:

    https://www.YouTube.com/watch?v=BQ8Q_vsiksg

    Please note that the default option to allow to access Unix unmapped user is not changed (to about 1 min 57 sec).

    Then I found another article at http://www.vmwarearena.com/2012/07/create-nfs-datastore-for-esx-in-windows.html

    But in this article, I like to select allow anonymous access (instead of allow access Unix unmapped user).

    So who is correct?  Or both are correct (which means that this 'unmapped user access' is not serious)?

    And why should we have to allow root access (in the NFS share permissions dialog box)?  What a security risk?

    Thanks in advance.

    Have you tried to run through the steps taken from the blog of VMware?

    How to enable NFS on Windows 2008 and currently at ESX | Insider - Articles from VMware VMware support

    Also, there are 3 KB articles to know in case of potential problems

    1. http://kb.vmware.com/kb/1004490

    2. http://kb.vmware.com/kb/1003967

    3. http://technet.microsoft.com/en-us/library/cc753302 (WS.10) .aspx

    Noting in particular this section

    Share the folder of Windows for NFS

    To share the folder of Windows for NFS:

    1. Right click on the local folder you want to share via NFS.
    2. Click NFS share.
    3. Type the name for the share. For example, NFS-VMFS01.
    4. Delete to allow anonymous access.
    5. Click on permissions.
    6. Change the type of access in reading + writing and select allow root Access.
  • Impossible to connect to the smtp server and send an email using javamail.

    Hi all

    I am struggling with sending e-mail with javamail api.

    I've visited a few forums but not be able to solve the problem then post here.

    Details of the situation are:

    1 SMTP - to which we are able to connect with telnet and able to send emails that work even between the firewall.

    2 tried to disable IPV6 from my windows machine 7 after reading something - java tries to connect to smtp with IPV6 and it should be disabled so that javamail work.

    3 has tried to run the same code to a linux environment. in this environment, we are also able to connect to the smtp with telnet server and send mail

    the code I have tried is below.

    import java.util.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    
    public class SendEmail
    {
    public static void main(String [] args){
    String to = "[email protected]";//change accordingly
    String from = "[email protected]";//change accordingly
    String host = "smtp.somthing.com";//or IP address
    
    //Get the session object
    Properties properties = System.getProperties();
    properties.setProperty("mail.debug", "true");
    properties.setProperty("mail.smtp.host", host);
    properties.put("mail.smtp.starttls.enable", "false");
    //properties.put("mail.smtp.port", "25"); //commented as its by default takes 25
    Session session = Session.getDefaultInstance(properties);
    
    ////compose the message
    try{
    MimeMessage message = new MimeMessage(session);
    message.setFrom(new InternetAddress(from));
    message.addRecipient(Message.RecipientType.TO,new InternetAddress(to));
    message.setSubject("Ping");
    message.setText("Hello, this is example of sending email  ");
    
    // Send message
    Transport.send(message);
    System.out.println("message sent successfully....");
    
    }catch (MessagingException mex) {mex.printStackTrace();}
    }
    }
    

    I get the errors are

    DEBUG: JavaMail version 1.4.7
    DEBUG: successfully loaded resource: /META-INF/javamail.default.providers
    DEBUG: Tables of loaded providers
    DEBUG: Providers Listed By Class Name: {com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle], com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle]}
    DEBUG: Providers Listed By Protocol: {imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle]}
    DEBUG: successfully loaded resource: /META-INF/javamail.default.address.map
    DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle]
    DEBUG SMTP: useEhlo true, useAuth false
    DEBUG SMTP: trying to connect to host "smtp.something.com", port 25, isSSL false
    Exception in thread "main" java.lang.RuntimeException: javax.mail.MessagingException: Could not connect to SMTP host: smtp.something.com, port: 25;
      nested exception is:
        java.net.ConnectException: Connection timed out: connect
        at emailer.SendMail.main(SendMail.java:64)
    Caused by: javax.mail.MessagingException: Could not connect to SMTP host: smtp.something.com, port: 25;
      nested exception is:
        java.net.ConnectException: Connection timed out: connect
        at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1961)
        at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:654)
        at javax.mail.Service.connect(Service.java:295)
        at javax.mail.Service.connect(Service.java:176)
        at emailer.SendMail.main(SendMail.java:58)
    Caused by: java.net.ConnectException: Connection timed out: connect
        at java.net.DualStackPlainSocketImpl.connect0(Native Method)
        at java.net.DualStackPlainSocketImpl.socketConnect(Unknown Source)
        at java.net.AbstractPlainSocketImpl.doConnect(Unknown Source)
        at java.net.AbstractPlainSocketImpl.connectToAddress(Unknown Source)
        at java.net.AbstractPlainSocketImpl.connect(Unknown Source)
        at java.net.PlainSocketImpl.connect(Unknown Source)
        at java.net.SocksSocketImpl.connect(Unknown Source)
        at java.net.Socket.connect(Unknown Source)
        at java.net.Socket.connect(Unknown Source)
        at com.sun.mail.util.SocketFetcher.createSocket(SocketFetcher.java:321)
        at com.sun.mail.util.SocketFetcher.getSocket(SocketFetcher.java:237)
        at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1927)
        ... 4 more
    

    someone had a problem like this?

    suggestions are welcome...

    The server I used was not accessible from the telnet command or java code.
    However when I telnet to the server it was implicitly redirected to another server that I failed to notice.

    My sincere apologies to all
    I'll take more precautions before posting and check the facts in more detail.

  • For applications, hosted on a private server, users have to reinstall the application to see the updates to the App Builder?

    For applications, hosted on a private server, users have to reinstall the application to see the updates to the App Builder? Let's say that I was updating a banner of right or a library style...

    If you change the .zip offline banner or a library style that is part of a .zip file that you specify in DPS App Builder, then Yes, you must change the app and make it available for users to update. But if you change the style of banner or library that is hosted on a server, the changes appear immediately without any modification to the application.

  • CF 11 Enterprise install App Server and IIS 8.5 on Web server (different material)

    Hi all.

    Facing a problem of configuration to set up here.  We have the application inside the firewall server and we will have on the DMZ Web server and this web server has to forward the requests to the server see

    I installed cfusion instance HTTP Port 8500 remote Port 8010 host is a local host, with no cluster.  We will have other forums as a result of a port in addition to HTTP and distance on the line.

    So now the question is how to run the connector.  If I run the embedded {cfroot}/cfusion/runtime/bin/wsconfig.exe, it shows localhost as server applications, well, the web server must be IIS, but on another IP address NOT this server, so that the OK button remains grey.

    You would think that you would need to run the connector on the Web server, right?  Well, I do not have CF installed on it, nor do I intend install on my web server, so how do I get on the Web server connector.

    I read a post on taking a wsconfig.jar and pulling the DLL and others, but it is with JRun 8 CF, CF 11 and not IIS 8.5.  Maybe it's the method that I need to follow, but seems to be the new land that has never been displayed in the CF community.  I like to think I'm 'special' but really?  I'm the first to have this set up the configuration, and no one has posted a BLOG about it.  Looks strange OR I'm totally missing something.

    Please let me know any suggestions on how to move forward.

    Running on window server 2012 R2 for CF Application Server and the Web server.  CF 11 E update 3.

    ColdFusion 11 environment distributed for connector with all sites:

    1. install ColdFusion11 on the other server.

    2. Once you install CF11, then copy the jar file "wsconfig.jar" from this location C:\ColdFusion11\cfusion\runtime\lib on the IIS server.

    3. configure IIS in the other server. You need to enable the following features at the IIS level only.

    ISAPI extensions

    ISAPI filters

    CGI

    ASP .NET

    5 ColdFusion11 server to connect to the Web server via the Port connector, which is located in the server.xml file. You can find this file in the C:\ColdFusion11\cfusion\runtime\conf, once you open the file server.xml, this is the port that you want.

    Example: -.

    6. Once you check everything in ColdFusion server, then return to the IIS Web server computer.

    7. the wsconfig.jar file which you copied in this server, rename the .jar to .zip file extension an excerpt it.

    [8. create a file with the same structure here magic C:\ColdFusion11\config\wsconfig\{Magic_Number}--[nombre would be 1, 2, 3... n]

    {9. now go to the extracted folder wsconfig and check this isapi_redirect.dll, copy the DLL to the folder C:\ColdFusion11\config\wsconfig\{Magic_Number}. If you have 32-bit 32-bit copy if you have 64-bit DLL and then copy 64 bit DLL.

    Location of the DLL in the extracted folder

    The 64-bit IIS DLL is located in connector\isapi\intel-win64\prebuilt\amd64\isapi_redirect.dll

    The 32-bit IIS DLL is in connector\isapi\intel-win\prebuilt\isapi_redirect.dll

    10. in the same folder of magic_number create a 'isapi_redirect.properties' file and copy this content. Now, the location and the magic_number might be different.

    extension_uri = /jakarta/isapi_redirect.dll

    Log_file = C:\ColdFusion11\config\wsconfig\1\isapi_redirect.log

    LOG_LEVEL = info

    worker_file = C:\ColdFusion11\config\wsconfig\1\workers.properties

    worker_mount_file = C:\ColdFusion11\config\wsconfig\1\uriworkermap.properties

    iis_buffer_enable = true

    ip_restriction_file = C:\ColdFusion11\config\wsconfig\1\iprestriction.properties

    AUTH_COMPLETE = 1

    11. create another file 'uriworkermap.properties' and copy the content slot

    / cfformgateway / * = cfusion

    / CFFormGateway / * = cfusion

    / flex2gateway / * = cfusion

    /flex2gateway = cfusion

    / cffileservlet / * = cfusion

    / CFFileServlet / * = cfusion

    / cfform-internal / * = cfusion

    / flashservices/gateway / * = cfusion

    / flex-internal / * = cfusion

    rest / / * = cfusion

    /*. CFML / * = cfusion

    /*. MXML = cfusion

    /*. As = cfusion

    *.cfm = cfusion

    /*. Ft3/min = cfusion

    /*. Ft3/min = cfusion

    / * .cfm / * = cfusion

    *.swc = cfusion

    /*. CFML = cfusion

    /*. CFML = cfusion

    /*. CFML = cfusion

    /*. CFC = cfusion

    /*. CFC = cfusion

    /*. CFC = cfusion

    / * .cfc / * = cfusion

    /*. CFR = cfusion

    *.cfswf = cfusion

    /*. SWS = cfusion

    *.jsp = cfusion

    *.hbmxml = cfusion

    12. create another file "workers.properties" and copy this content

    Worker.List = cfusion

    Worker.cfusion.type = ajp13

    Worker.cfusion.Host = localhost

    Worker.cfusion.port = 8014

    Worker.cfusion.max_reuse_connections = 250

    13. now go to a folder that is C:\ColdFusion11\config\wsconfig and copy the "cfwin32.dll". Location

    wsconfig\connectors\installers\intel-win\prebuilt\cfwin32.dll

    wsconfig\connectors\installers\intel-win64\prebuilt\cfwin32.dll

    14 create a file 'wsconfig.properties' and copy the sub content. Number of bits could be changes to 32 bit if you use the 32-bit environment, this file contains site information and the IIS connector. I created this article that you configure the connector with ALL IIS sites, so set below will work.

    1 = IIS, 0, true, "", bitness64 "

    1.SRV = localhost, cfusion

    15. now that we have created all the files and folders. We will add the IP address of the machine ColdFusion11 if IIS can communicate with CF11. There are 2 places to add the IP address.

    a. "workers.properties" file, where is written "localhost" replaced by the IP address and

    b. "wsconfig.properties" where is also said to replace localhost with the IP address of the machine ColdFusion11.

    16. now we must work on IIS services manager, then start the IIS Manager. We will make any changes to the IIS server and when we restart IIS, it inherits all the mappings Manager and filter ISAPI in all sites.

    17. click on the server and then click handler mapping. Add a script mapping and Add .cfm, .cfc, .cfml, .cfr, and .cfswf managers and then point it to this DLL. C:\ColdFusion11\config\wsconfig\1\isapi_redirect.dll.

    Click request restrictions, select Invoke and select the files and folders, and Ok. In the right pane, click Edit feature authorization select run.

    Example: Ask the path:-*.cfm

    Executable:-C:\ColdFusion11\config\wsconfig\1\isapi_redirect.dll

    Name:-cfmHandler

    NOTE: Add these Manager you will use not all add them.

    18. click on IIS server and select default Document and add index.cfm as default document.

    19. click on IIS server and select ISAPI and CGI Restriction, select Add and 'ISAPI and CGI path' 'C:\ColdFusion11\config\wsconfig\1\isapi_redirect.dll', Description "tomcat_All". Check Allow extension path to run and press Ok.

    Click on change the function parameter in the right panel and check both boxes.

    20. click on IIS server and select the ISAPI filters and add a filter name 'tomcat' and the executable file "C:\ColdFusion11\config\wsconfig\1\isapi_redirect.dll".

    21 now, add you a virtual directory to each site else it won't work. To add a directory virtual right click on your Web site and add a virtual directory. Alias name "jakarta" and the physical path "C:\ColdFusion11\config\wsconfig\1\isapi_redirect.dll" press Ok.

    Follow this step with the same Alias and path even to all Web sites.

    22 restart the IIS service, and run any ColdFusion page. It will work.

Maybe you are looking for

  • I'm not able to use my credits video iTunes.

    I have 2 video credits on my account, it says 2 video credits. I've heard that I need to buy videos for $3.99 or less, I did, but the credits never get used, my credit card is simply responsible for all the movies I rent. If don't know how to use the

  • Error with parallel while loops

    Hello I need to connect 6 different instruments gpib. I am using parallel loops, but the problem is when I try to open 2 or 3 Subvi simultaneously (the intstrument drivers), I just open one because of everything in a loop to run the Subvi. The progra

  • Traveling abroad and my account has been hacked

    I am Canadian and have a hotmail account was "hacked and locked.  I suupose to select a country and then put my cell in their send security code however, I AM IN New Zealand and is not an option.  Please help someone!

  • Pairing bluetooth speaker

    Blackweb Soundbrick bluetooth speaker.  I turn it on - voice ad power-pairing. BlueLight flashes quickly and the music playing on my laptop cannot be heard from the speaker if I connect it with the cable supplied with the speaker. I click on the Blue

  • What are the wbem logs?

    In the system32 folder there is a folder named wbem that contains news. He is the one who is called [wmiprov] and reads the files have been deleted and replaced I think. There is one that indicates that binary data has been changed. It is a line {eve