Selective IP filtering for multiple servers in a domain?

Is it possible to have IP filtering on for certain servers in a
domain, and not for others?
This is the situation:
I am deploying two servers in mydomain, so let's call it serverA
and serverB. I want serverA to accept all connections while
serverB accepts connections only from certain IPs. I know you
can do IP filtering using SimpleConnectionFilter in the
"Connection Filter" option in Security->General tab of the Admin
console, but this turns on IP filtering for BOTH serverA and
serverB! How do I turn it on for one, and not the other? Any
help would be greatly appreciated. Thank you.
Leon

Hi,
Yes you can have muliple servers in a domain. You can create as many managed
servers as your hardware can handle. When you added the server, did you use the
startManagedWebLogic.sh (or .cmd) script to start the server. Once you do that,
you should see the server as running.
Hope this helps,
pat
"MS" <[email protected]> wrote:
>
Hello All,
Is it possible to have multiple servers in a domain?
When I add a new server, the State is reported in the weblogic console
as "UNKNOWN".
What does this mean?
rgds
MS

Similar Messages

  • Is it possible to run one ud script to update parms for multiple servers...

    Is it possible to run one ud script to update certain parameters in mib for multiple
    servers by giving multiple occurrences of the parameter and server id. I tried
    a ud script as follows and it seem to update the parameter for only the first
    server.
    SRVCNM .MIB
    TA_CLASS T_SERVER
    TA_OPERATION SET
    TA_SRVID 101
    TA_SRVID 102
    TA_SRVID 103
    TA_CLOPT -A -r -e srv1.err --
    TA_CLOPT -A -r -e srv2.err --
    TA_CLOPT -A -r -e srv3.err --

    From the ud's output, it looks like it used only one occurrence of the fields that
    I provided.
    "james mathew" <[email protected]> wrote:
    >
    Is it possible to run one ud script to update certain parameters in mib
    for multiple
    servers by giving multiple occurrences of the parameter and server id.
    I tried
    a ud script as follows and it seem to update the parameter for only the
    first
    server.
    SRVCNM .MIB
    TA_CLASS T_SERVER
    TA_OPERATION SET
    TA_SRVID 101
    TA_SRVID 102
    TA_SRVID 103
    TA_CLOPT -A -r -e srv1.err --
    TA_CLOPT -A -r -e srv2.err --
    TA_CLOPT -A -r -e srv3.err --

  • Cannot select Get Info for multiple tracks

    I  just updated to Lion 10.7.3 and iTunes 10.6.1 and imported my Leopard iTunes Library. I can Get Info on individual tracks but when I shift select or command select multiple tracks the iTunes window turns gray and nothing can be selected. iTunes just freezes until I press the Escape key. So far, everything else works as expected - the only problem is selecting multiple tracks (which worked fine for me on previous OS and iTunes versions).
    I haven't found any reports of similar problems so maybe I'm doing it wrong.
    Any suggestions?

    I solved my own problem - the last time I used iTunes was on a two monitor system. I still have the second monitor connected but it was turned off and the iTunes Get Info window for MULTIPLE selected items was opening on the second monitor. When I did a Get Info on a single selection, the window appeared on the main monitor normally - behavior which never made me think that multiple items would show up in a different window on the turned off monitor.

  • Single RTMP Link for multiple servers

    Hi,
    can i use a single RTMP link included on FMLE with multiple servers, means, that RTMP link will do the redirection to the other RTMP links.
    with hight number of simultanous users, that feature will manage the use of  servers
    Regards,
    Morsi

    As I understand you want to publish single stream to multiple server, so that you can load balance the subscribers..
    So the answer is .. that this is possible with FMS.. FMS provides ways to scale you infrastructure.. So you might use "Multi-point publishing feature" of the FMS. This feature allows you to forward your RTMP streams from one FMS server to another FMS server..
    You may find the useful link here : http://help.adobe.com/en_US/FlashMediaServer/3.5_Deving/WS5b3ccc516d4fbf351e63e3d11a0773d5 6e-7ffb.html
    There is another way to publish the same stream to two server.. From FMLE, you can publish the same stream to at most 2 server.. In FMS you can simultaneously connect to at max two servers.. There are two connection URL edit boxes " FMS URL, and Backup URL" You may provide both for two different FMS servers..
    Let me know does the information help.. It would be really good if you can elaborate your use case.. because just for the purpose of scaling.. there are multiple options, like edge-origin server topology, DVRCast or live cast set-up, multipoint-point publishing etc.. But what to use actually depends upon the use case...

  • How to list the Cert Issuer for all servers in a Domain

    Hello,
    The objective is to list the Server name and Cert Issuer for any Cert found in the LocalMachine\My store on all servers in a Domain.
    Once I'd get to a server, probably by PS remoting, I'd issue the following:
    dir cert:\localmachine\my -recurse | ? Issuer -like '*'
    However, the output is Thumbprint and Subject, but I really need to see the Issuer, or what is displayed in the Certificates MMC under the 'Issued By' column.  What I need in my output is the following:
    ComputerName       Issuer
    Srv1                       Acme Cert Auth
    Srv2                       Host1.Acme.Com
    Any suggestions would be appreciated.
    Thanks for your help! SdeDot

    As you might suspect it is even easier than that:
    $omputers |
    ForEach-Object{
    invoke-command -ComputerName $_ -ScriptBlock {dir cert:\localmachine\my -recurse}
    } |
    select PSComputerName, Issuer
    ¯\_(ツ)_/¯
    Indeed.
    =]
    Both work great!
    Thanks for the response and help Mike and Jrv!
    Thanks for your help! SdeDot
    Cheers, you're very welcome.
    Don't retire TechNet! -
    (Don't give up yet - 13,225+ strong and growing)

  • SQL Agent jobs status for multiple servers using Powershell.

    Hi All,
    I am following website link:
    http://www.toadworld.com/platforms/sql-server/b/weblog/archive/2013/09/17/powershell-script-to-monitor-a-service-on-a-group-of-servers-html-formatted-email-output.aspx
    I require to gather status details about all the SQL Agent jobs in the environment on multiple SQL Servers.
    I tried to edit the script using:
    [void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SqlServer.SMO")
    $sqlServerName = 'localhost\developer'
    $sqlServer = New-Object Microsoft.SqlServer.Management.Smo.Server($sqlServerName)
    foreach($job in $sqlServer.JobServer.Jobs)
        $job | select Name, OwnerLoginName, IsEnabled, LastRunDate, LastRunOutcome, DateCReated, DateLastModified
    but SQL Agent jobs are not reflecting in the mail output...
    requesting help...!!
    Thanks in Advance.
    Hunt

    I've created a new script for you.  Let me know if you've any questions
    Create the function
    Function Get-SQLJobHTMLReport
    param(
    [String]$ComputerList,[string]$Outputfile,[String]$To,[String]$From,[string]$SMTPMail
    New-Item -ItemType file $Outputfile -Force
    # Function to write the HTML Header to the file
    Function writeHtmlHeader
    param($fileName)
    $date = ( get-date ).ToString(‘yyyy/MM/dd’)
    Add-Content $fileName “<html>”
    Add-Content $fileName “<head>”
    Add-Content $fileName “<meta http-equiv=’Content-Type’ content=’text/html; charset=iso-8859-1′>”
    Add-Content $fileName ‘<title>Service Status Report </title>’
    add-content $fileName ‘<STYLE TYPE=”text/css”>’
    add-content $fileName “<!–”
    add-content $fileName “td {“
    add-content $fileName “font-family: Tahoma;”
    add-content $fileName “font-size: 11px;”
    add-content $fileName “border-top: 1px solid #999999;”
    add-content $fileName “border-right: 1px solid #999999;”
    add-content $fileName “border-bottom: 1px solid #999999;”
    add-content $fileName “border-left: 1px solid #999999;”
    add-content $fileName “padding-top: 0px;”
    add-content $fileName “padding-right: 0px;”
    add-content $fileName “padding-bottom: 0px;”
    add-content $fileName “padding-left: 0px;”
    add-content $fileName “}”
    add-content $fileName “body {“
    add-content $fileName “margin-left: 5px;”
    add-content $fileName “margin-top: 5px;”
    add-content $fileName “margin-right: 0px;”
    add-content $fileName “margin-bottom: 10px;”
    add-content $fileName “”
    add-content $fileName “table {“
    add-content $fileName “border: thin solid #000000;”
    add-content $fileName “}”
    add-content $fileName “–>”
    add-content $fileName “</style>”
    Add-Content $fileName “</head>”
    Add-Content $fileName “<body>”
    add-content $fileName “<table width=’100%’>”
    add-content $fileName “<tr bgcolor=’#CCCCCC’>”
    add-content $fileName “<td colspan=’4′ height=’25′ align=’center’>”
    add-content $fileName “</td>”
    add-content $fileName “</tr>”
    add-content $fileName “</table>”
    # Function to write the HTML Header to the file
    Function writeTableHeader
    param($fileName)
    Add-Content $fileName “<tr bgcolor=#CCCCCC>”
    Add-Content $fileName “<td width=’10%’ align=’center’>ServerName</td>”
    Add-Content $fileName “<td width=’50%’ align=’center’>Name</td>”
    Add-Content $fileName “<td width=’10%’ align=’center’>OwnerLoginName</td>”
    Add-Content $fileName “<td width=’10%’ align=’center’>IsEnabled</td>”
    Add-Content $fileName “<td width=’10%’ align=’center’>LastRunDate</td>”
    Add-Content $fileName “<td width=’10%’ align=’center’>LastRunOutcome</td>”
    Add-Content $fileName “<td width=’10%’ align=’center’>DateCReated</td>”
    Add-Content $fileName “<td width=’10%’ align=’center’>DateLastModified</td>”
    Add-Content $fileName “</tr>”
    Function writeHtmlFooter
    param($fileName)
    Add-Content $fileName “</body>”
    Add-Content $fileName “</html>”
    Function writeDiskInfo
    param($filename,$Servername,$name,$OwnerLoginName,$IsEnabled,$LastRunDate,$LastRunOutcome,$DateCReated,$DateLastModified)
    Add-Content $fileName “<tr>”
    Add-Content $fileName “<td bgcolor=’#FF0000′ align=left ><b>$servername</td>”
    Add-Content $fileName “<td bgcolor=’#FF0000′ align=left ><b>$name</td>”
    Add-Content $fileName “<td bgcolor=’#FF0000′ align=left ><b>$OwnerLoginName</td>”
    Add-Content $fileName “<td bgcolor=’#FF0000′ align=left ><b>$IsEnabled</td>”
    Add-Content $fileName “<td bgcolor=’#FF0000′ align=left ><b>$LastRunDate</td>”
    Add-Content $fileName “<td bgcolor=’#FF0000′ align=left ><b>$LastRunOutcome</td>”
    Add-Content $fileName “<td bgcolor=’#FF0000′ align=left ><b>$DateCReated</td>”
    Add-Content $fileName “<td bgcolor=’#FF0000′ align=left ><b>$DateLastModified</td>”
    Add-Content $fileName “</tr>”
    writeHtmlHeader $Outputfile
    Add-Content $Outputfile “<table width=’100%’><tbody>”
    Add-Content $Outputfile “<tr bgcolor=’#CCCCCC’>”
    Add-Content $Outputfile “<td width=’100%’ align=’center’ colSpan=8><font face=’tahoma’ color=’#003399′ size=’2′><center><strong> SQL Server Agent Job Details</strong></font></td>”
    Add-Content $Outputfile “</tr>”
    writeTableHeader $Outputfile
    #Change value of the following parameter as needed
    Foreach($ServerName in (Get-Content $ComputerList))
    $sqlServer = New-Object Microsoft.SqlServer.Management.Smo.Server($ServerName)
    foreach($item in $sqlServer.JobServer.Jobs)
    Write-Host $sqlServer $item.name $item.OwnerLoginName $item.IsEnabled $item.LastRunDate $item.LastRunOutcome $item.DateCReated $item.DateLastModified
    writeDiskInfo $Outputfile $sqlServer $item.name $item.OwnerLoginName $item.IsEnabled $item.LastRunDate $item.LastRunOutcome $item.DateCReated $item.DateLastModified
    Add-Content $Outputfile “</table>”
    writeHtmlFooter $Outputfile
    Function sendEmail
    param($from,$to,$subject,$smtphost,$htmlFileName)
    [string]$receipients=”$to”
    $body = Get-Content $htmlFileName
    $body = New-Object System.Net.Mail.MailMessage $from, $receipients, $subject, $body
    $body.isBodyhtml = $true
    $smtpServer = $smtphost
    $smtp = new-object Net.Mail.SmtpClient($smtphost)
    $smtp.Send($body)
    write-output “Email Sent!!”
    $date = ( get-date ).ToString(‘yyyy/MM/dd’)
    sendEmail -from $From -to $to -subject “Service Status – $Date” -smtphost $SMTPMail -htmlfilename $Outputfile
    Get-SQLJobHTMLReport -ComputerList f:\powersql\server.txt -SMTPMail hq.abc.com -To [email protected] -From [email protected] -Outputfile F:\Powersql\jobs.htm
    --Prashanth

  • Enhancing standard (single select)search help for Multiple value selection

    Hi,
    Standard search help for Business Partner (in cProjects) allows only single value selection for input fields. I want to make this multiple selection.
    Is there a way to do it.
    I used an OVS and built a similar search but its difficult to get the standard options like saving to personal value list etc in it.
    It would be good if there is a way to modify the standard search help to allow multiple selection. Any ideas??
    Appreciate your help,
    Thanks,
    Sri
    Edited by: Sri on Sep 9, 2010 8:50 PM
    Edited by: Sri on Sep 9, 2010 8:52 PM

    As far as I know you can't make a standard ABAP dictionary search help return multiple entries - where you get this sort of functionality the searches don't use the standard Elementary search help framework (e.g. organisational structure searches)
    Given that the WDA search help relies on these dictionary based searches, I'd think very much that you couldn't enhance it to return multiple. how you could even return multiple entries into a single UI element input field is also confusing to me.
    I'd suggest creating a freely programmed value help, it would certainly take quite some effort to recreate those personal value lists etc, but it could be done - I don't like OVS, but that just me.

  • Problem with ALV filter functionality when filtered for multiple values

    Hi,
    I am facing a problem with ALV filter functionality.
    I have displayed an ALV with some columns col_A, col_B and col_C
    col_A---- col_B -
    col_C
    1----
    a -
    abc
    2----
    b -
    pqr
    3----
    c -
    lmn
    4----
    d -
    xyz
    5----
    f -
    stu
    From the settings link I am applying filter on column col_C and selected multiple values say 'pqr', 'xyz' and 'lmn'.
    Now the ALV is showing rows only for last selection i.e . results are fetched only for value 'lmn'.
    i.e. after applying the filter the ALV table looks as below:
    col_A---- col_B -
    col_C
    3----
    c -
    lmn
    But ideally it should be:
    col_A---- col_B -
    col_C
    2----
    b -
    pqr
    3----
    c -
    lmn
    4----
    d -
    xyz
    I could not find any OSS note related to this issue.
    Please help me resolve this issue.
    Thanks,
    Feroz

    Hi,
    I am facing a problem with ALV filter functionality.
    I have displayed an ALV with some columns col_A, col_B and col_C
    col_A---- col_B -
    col_C
    1----
    a -
    abc
    2----
    b -
    pqr
    3----
    c -
    lmn
    4----
    d -
    xyz
    5----
    f -
    stu
    From the settings link I am applying filter on column col_C and selected multiple values say 'pqr', 'xyz' and 'lmn'.
    Now the ALV is showing rows only for last selection i.e . results are fetched only for value 'lmn'.
    i.e. after applying the filter the ALV table looks as below:
    col_A---- col_B -
    col_C
    3----
    c -
    lmn
    But ideally it should be:
    col_A---- col_B -
    col_C
    2----
    b -
    pqr
    3----
    c -
    lmn
    4----
    d -
    xyz
    I could not find any OSS note related to this issue.
    Please help me resolve this issue.
    Thanks,
    Feroz

  • DNS set-up for multiple servers?

    I need some DNS advice....
    I am replacing our old OS Leopard server (that provided web hosting, email, file serving, dns, etc.) with four new Mac Mini Servers (Maverick) to distribute the services. We had an issue on the old machine's fileserver service that brought all services to a halt and then the employees to a halt.
    Since one machine was the central hub of everything it was easy to set-up the DNS to point to it for everything. Now that I have four machines (one of them serving the DNS) I need to know how to point to the other services. The DNS user interface only allows me to input DNS infer for that particular server. How do I add names and address in the DNS to point to the other three servers?
    Thanks in advance.
    Brian

    To add to MrHoffman's advice, as long as the two machines have different IP addresses, they will only know about each other if you tell them.
    For example, server.gilliland.com is running Leopard and is at address 172.16.0.10.  You want a new device to also be know as server.gilliland.com but don't want to shut the other one down.  Ok, give it another address, 172.16.0.11 for example and define on it DNS that points server.gilliland.com to 172.16.0.11.  As far as the new server knows, it is server.gilliland.com and is start of authority for the gilliland.com domain.  The old server thinks the same thing.  But as long as you don't tell either about the other, they will live happily in the belief that they are the one and only server.gilliland.com server.
    Now, as longs are you are already relying on DNS (meaning nothing is linked via IP), then you can completely build you entire new OD cluster while the old systems is still running.  DHCP will tell everyone to use DNS from the old server.  You new servers will be configured with new DNS and they will all be in on the new secret.  When you are ready to make the migration to the new cluster, change DHCP and push new DNS out to the clients.  As long as they connect by name (server.gilliland.com) they will not miss a beat.
    Depending on your services, this can be done with almost no downtime.  Got lots of data?  rsync it.  The biggest headache you will have is likely the mail migration.  That is a torture I wish on no one.  Make sure you have a backup plan, a regression plan, a head for the border plan, and then an alternate plan for when all of those plans fall apart.  I also suggest closing your port forwards on the firewall when you decide to move mail.  This will allow you to validate the migration without new mail coming in.  Thus, if something goes wrong, but not completely "the sky is falling" wrong, then you can restore the old server, open the firewall, and live to try again another day.
    Reid
    Apple Consultants Network
    Apple Professional Services
    Author "Mavericks Server – Foundation Services" :: Exclusively available in Apple's iBooks Store
    Author "Mavericks Server – Control and Collaboration" :: Exclusively available in Apple's iBooks Store

  • Open same port for multiple servers.

    I am sorry if this sounds rudimentary, but I wanted to make sure. I want to open up port 80 to more than one web server. I already have port 80 open on one public IP address and have another one ready to use for another server. My assumption is that I should just be able to create a policy using the additional IP address and use port 80 without any issues. Is that correct to assume? I would also like to know, how one would do this is they only had one public IP address. I believe these should be relatively easy questions for the experts here. Thanks.  

    If you have a netblock from which you can assign multiple IP addresses then, yes - just asign additional access-list entries and static NAT entries.
    If you only had a single (or limited number all in use) public IP address then you would have to use some sort of PAT (port address translation). for instance:
    server 0 is <outside address>:80
    server 1 is <outside address>:81
    server 2 is <outside address>:82
    ..etc. Your remote users would then have to specify the non-default port (80/81/82) when browsing to the site.

  • Select with like for multiple results

    Hi,
    I need to find all the rows of a table that contain the values of another query in the table.
    My problem is that the table that I want to verify may contain a list of values and I’m not been able to think on an easy way to do this!
    Performance is also an issue because my table2 will have only a short list of values to look for but the table I will search will have a few million rows.
    The field that I need to search is a “VARCHAR2(4000 BYTE)” It is not indexed but probably I will need to create an index in it in case the best solution involves it!
    My example scenario:
    CREATE TABLE TEST_TABLE
    (id number,
    COL1 CHAR(25));
    CREATE TABLE TEST_TABLE2
    (COL1 CHAR(25));
    insert into TEST_TABLE (id,COL1) values (1,'1;2;3');
    insert into TEST_TABLE (id,COL1) values (2,'1');
    insert into TEST_TABLE2 (COL1)  values ('1');
    insert into TEST_TABLE2 (COL1) values ('2');
    select id from TEST_TABLE
    where (col1) in ( select col1 from TEST_TABLE2)My results with this are:
    Results:
    ID
    2I need the results to be ( because ID 1 also contains the values from table 2):
    Results:
    ID
    1
    2Thanks 
    Ricardo Tomás

    select  id
      from  test_table t1
      where exists (
                    select  1
                      from  test_table2 t2
                      where ';' || trim(t1.col1) || ';' like '%;' || trim(t2.col1) || ';%'
            ID
             1
             2
    SQL> Why column COL1 is defined as CHAR? Since CHAR is right blank padded you will have to trim. Use VARCHAR2:
    SQL> select  id
      2    from  test_table t1
      3    where exists (
      4                  select  1
      5                    from  test_table2 t2
      6                    where ';' || t1.col1 || ';' like '%;' || t2.col1 || ';%'
      7                 )
      8  /
            ID
             1
             2
    SQL> SY.

  • Best way to configure search toplogoy for multiple servers farm??

    Hi,
    My farm environment is 2 WFE and 2 App servers. Right now i am trying to configure Search Topology. what will be the best way to configure the search topology for this farm, so that query and crawling will be working perfectly. one thing i noticed with my
    previous search application Crawl DB had grown 140 GB, i dont know why it happened. please look at the following screen shot, this the current topology but i want to distribute component to different server.
    Any help will be appreciated!!

    The best topology depends on whether you want it to be fault tolerant or not. For a fault tolerant design with this number of servers I normally create two Index Partitions 0 and 1 with each on one of the App servers.  I then create Replicas of each
    partition on the front end servers. I then put the query role on both web fronts ends and the crawl role on both Ap servers.  So I end up with the following:
    FE1 = Index Replica 0 + Query
    FE2 = Index Replica 1 + Query
    Ap1 = Index 0 + Crawl
    Ap2 = Index 1 + Crawl
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Where is selectable "go back" for multiple previous pages?

    the old 3.6 had 2 "go back" arrows, one for the last/prior page loaded and a drop-down showing the prior dozen or so from which i could select any back to the first. i'd like that feature back in 4.0

    I noticed this on my new copy of this version. Am on a mac. For me, I just click on the "back" arrow, and hold it. In a brief moment, a list of the previous dozen or so pages will appear, just as if I had used the old familiar separate arrow for this list. I can then scroll down to the desired link, as before.
    HTH,
    Gandyman

  • CSS11501 - URL Redirect for Multiple Servers For Both Ports 80 & 443

    Can the CSS rules be configured such that it can be used to direct requests to different Web servers based upon,
    URL path? 
    For Both Ports 80 & 443/HTTPS (with SSL Certificate running on the back-end servers)
    For example:
    http://app.ti.com/path1/file.html goes to Web servers A & B -> old servers
    https://app.ti.com/path1/file.html goes to Web servers A & B -> "
    http://app.ti.com/path2/file.html goes to Web servers C & D -> new servers
    https://app.ti.com/path2/file.html goes to Web servers C & D -> "
    We're trying to understand what are plans are for a phased migration from old site to new site, and if it requires new URLs ???
    Fort port 443, since the CSS is load balancing SSL encrypted traffic, is the means that the CSS can’t look at URL thus this is not possible?
    Please help, thanks.

    Hi Martin,
    1) Clients are using http://domain/, thus I need to define url "//domain/.." as you have stated.
    2) I'm still waiting for the "actual" URL paths from the application team in order to decide which method to use - Regexp vs URLQ definition - to begin testing.
    I know I have limited memory resource (as listed below) & will try not to make it complicated:
    System Resources for CSS501-SCM-INT:
    Installed Memory:   268,435,456 (256 MB)
    Free Memory:        135,414,448 (129 MB)  ****
    CPU:                0% (5Sec)     1% (1Min)     0% (5Min)
    Buffer Statistics:
    Buffer Pool: 0
       Size:2048  Total:3072  Available:2792  Failures:  0  Low Buffer Count: 2748
    Buffer Pool: 1
       Size:2048  Total:3072  Available:2800  Failures:  0  Low Buffer Count: 2800
    Buffer Pool: 2
       Size:2048  Total:2048  Available:1956  Failures:  0  Low Buffer Count: 1900
    Thanks Martin, you've been a big help!
    Diane Ly  

  • Renew Machine Certificate for multiple Servers

    Hi,
    We have Windows 2003 Enterprise CA which issues certificates to servers which are used for various purpose like Wifi Authentication, Secure RDP. We have checked that the certificates are going to expire within few weeks. We want to renew certificates before
    expiry but the number of servers is high so we cannot do it manually by logging into each server.
    We doesn't have ACRS enabled for computer certificates and even if we configure it now that will not help.
    Is there a way to renew the certificates for all the servers remotely.

    On Tue, 15 Apr 2014 11:39:43 +0000, Sukhwin08 wrote:
    We already have auto-enrolment enabled through GPO. The settings are as follows
    Automatic certificate management........ Enabled Option Setting Enroll new certificates, renew expired certificates, process pending certificate requests and remove revoked certificates .........Enabled
    Update and manage certificates that use certificate templates from Active Directory ..........Enabled
    I think that you're confusing Automatic Certificate Request Services and
    autoenrollment. In your first post in this thread you mention ACRS, however
    the above settings are for autoenrollment. ACRS is only for certificates
    that are based upon V1 certificate templates and then only for machine
    certificates. Autoenrollment on the other hand does not work for anything
    less than V2 certificates and supports both machine and user certificates.
    If you're using V1 certificate templates then you can set autoenrollment
    settings in a GPO and it will not have any impact at all.
    Paul Adare - FIM CM MVP
    Remember the signs in restaurants "We reserve the right to refuse
    service to anyone"? The spammers twist it around to say "we reserve
    the right to serve refuse to anyone." -- SPAMJAMR & Blackthorn in nanae

Maybe you are looking for