Domain Re-Directs

Appologies if this is in the wrong place but i'm not really
sure where to start. I dont do a lot of web developing so wondered
if someone could answer my question.
A friend of mine has got a website but he wants to use a
domina alias.
For example
he has www.domain.com and wants people to be able to use
www.domain.com/tv The /tv part would then re-direct back to
www.domain.com . The use of the /tv would be for google ad stats.
He can do www.domain.com/tv.html but obviously for marketing
purposes wants to drop the .html.
Does anyone know how this can be achived? I'm not even sure
if its a dreamweaver thing or something the domain host should be
able to do.
Once again appologies if i'm in the wrong place but any help
would be greatly appreciated.

Create a folder named "tv" at the root of the site. Put a
file into that
folder that redirects the visitor to the root (I'd use a mod
rewrite to do
this, rather than a meta redirect). Name that file with the
default
filename specified by your host, so that when the directory
is browsed, the
default file is loaded - this could be index.htm(l), or
default.htm(l), or
home.htm(l), etc.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"ITtim" <[email protected]> wrote in message
news:fg7011$98i$[email protected]..
> Appologies if this is in the wrong place but i'm not
really sure where to
> start. I dont do a lot of web developing so wondered if
someone could
> answer my
> question.
>
> A friend of mine has got a website but he wants to use a
domina alias.
>
> For example
>
> he has www.domain.com and wants people to be able to use
www.domain.com/tv
> The /tv part would then re-direct back to www.domain.com
. The use of the
> /tv
> would be for google ad stats.
>
> He can do www.domain.com/tv.html but obviously for
marketing purposes
> wants to
> drop the .html.
>
> Does anyone know how this can be achived? I'm not even
sure if its a
> dreamweaver thing or something the domain host should be
able to do.
>
> Once again appologies if i'm in the wrong place but any
help would be
> greatly
> appreciated.
>

Similar Messages

  • Safari doesn't open new domain name .direct without www

    When I try to open a domain like "mydomain.direct" Safari opens google search, but if I try to open "www.mydomain.direct" the website opens ok. Safari also doesn't open 3rd domains like "something.mydomain.direct" and sends me to google search.

    Hi ..
    Safari doesn't recognize:   mydomanin.direct   as a URL. That's why it's triggering a Google search.
    That's why www. works.

  • Direct Access for Non Domain Machines

    Hi,
    In My IT-infra, there is multiple machines that is out my Office network & Domain..
    Can we join these machines in domain via Direct Access implementation ? or for implementing Direct Access we required to join those non domain & out of office network machine to Domain first ?
    secondly, can we implement the Direct access without any public certificate purchase, and without any IPV6 configuring in internal network,machines and in servers .currently i am using IPv4  IP on all Machines & Servers.
    I have gone through the Direct Access Technet guide but i feel very complex document there ...can you please brief me about direct access implementation in simpale way, i want to implement direct access to join the internet based client machines  to
    domain and manage via/for SCCM ...
    Shailendra Dev

    Correct, DirectAccess clients must be domain joined. Also, only Windows 7 Ultimate, Windows 7 Enterprise, or Windows 8 Enterprise clients are able to be DirectAccess connected, so that may also make a difference to your situation. I see many customers deploy
    DirectAccess for those Win7/Win8 domain-joined systems, and then make use of the traditional (RRAS) VPN on the same DirectAccess server for connecting any other operating systems or non-domain-joined machines. Those would just have to launch a manual VPN connection,
    where the DirectAccess connections are of course automatically connected.
    You don't "have" to use an SSL certificate that you purchased from a public CA, but you really should. It is definitely a best practice to use a trusted public certificate on your DirectAccess server. Further, if you have Windows 8 client computers,
    you don't even need to distribute the machine certificates inside your network, but it is also a best practice that you do this anyway, to strengthen the authentication process.
    No, you do not need IPv6 inside your network at all for DirectAccess to work.
    Sounds like you might be interested in some additional reading on DA, here are the two books available on the subject:
    https://www.packtpub.com/virtualization-and-cloud/microsoft-directaccess-best-practices-and-troubleshooting
    https://www.packtpub.com/networking-and-servers/windows-server-2012-unified-remote-access-planning-and-deployment

  • How to create a muse site in various languages with multiple domains

    I have been asked to create a website for a product. A very simple website with maybe one or two pages and one product for sale for which the client would like Paypal as the payment gateway. Simple right?
    No! This client would like to market their product into Europe, they would like to purchase multiple European domains ( .fr, .de for example).
    So how on earth can I do this? I will be using Muse for build and Business Catalyst for hosting.
    Bearing in mind the client will not want to pay for separately hosted sites. Is there a way of translating the text for each domain. Or could I assign multiple domains but direct them to different home pages within the same site?
    I haven’t a clue how to problem solve this.

    Hi,
    Some links that might be useful,
    how to set up a multilingual website with Adobe Muse and push it live to Adobe Business Catalyst
    Re: How can i create different languages for my page?
    How can i create a multilingual website?
    how to create a multilingual site
    Do let me know if you have any question.

  • DAO and Domain Object

    hi,
    Normally when i want to persist a domain object like Customer object to a database, my statements will be below,
    // code from my facade
    Customer cust = new Customer();
    cust.setFirstName("myname");
    cust.setLastName("mylastname");
    // set another attributes
    cust.create();
    with this code i have a CustomerPersistence object to handler for create this customer record to a database. Now j2ee have a DAO pattern. So my question is,
    1.where is a domain object within DAO pattern? --> because of we can reused domain object.
    2.DTO is Domain Object, isn't it?
    3.when i look at some articles about DAO, many of it will present in this way
    facade -->create DTO --> call DAO (plus something about factory pattern)
    i never see something like this
    facade --> domain object --> dao
    any suggestion?
    anurakth
    sorry for my english!!

    Hi,
    I am a bit confused about implementation of the domain model and I wondered if you could help. My main concern is that I am introducing too many layers and data holders into the mix. Here is what I am thinking.
    DTO - used to carry data between the presentation and the services layer
    Service Class - coordinates the calling of domain objects
    Domain Object - models a domain entity, service layer logic specific to this object is to be implemented here.
    Data Object - an exact representation of a database table. many to many relationship between domain object and data object.
    Hibernate DAO Class - has no properties, just methods used for read and writing the object to the database. It is passed in the Data Object for persistence. Is it wrong that the DAO contains no properties?
    Perhaps the domain object will contain each data object it is comprised of. I was originally going to keep calls to DAOs in the Services class (as recommended in http://jroller.com/page/egervari/20050109#how_to_change_services_logic ) but I am thinking that each domain object could expose a save method, and that method would co-ordinate persisting itself to the various tables it is derived from.
    Does this sound resonable? I have trouble finding a pattern on the net that clealy defines the Domain Model. I was tempted to map Domain Objects directly to database tables, and simply persist the Domain Object, but this 1-1 relationship may not always hold true.
    Thanks.

  • AD Group Membership with User From Domain Outside of Forest

    Here's one to twist your brain around -
    I have kerberos authentication using Active Directory working between a client's web browser and my web-app hosted in JBoss. I also have limited authorization working by checking group memberships using LDAP. This currently only works if all users are in the same domain. The ever-helpful adler_steven has detailed in another thread (http://forum.java.sun.com/thread.jspa?threadID=603815&tstart=15) how to do a group membership check for all Users/Groups in a single forest using the Global Context.
    I need to go beyond the domain and even beyond the forest and try to authorize a user from a trusted domain by checking if the user is a member of a group in my domain. Authentication works fine using kerberos. It's the authorization by group check I am having trouble with. I believe there are two ways to approach this:
    Approach #1
    Access the MS-specific PAC in the kerberos token from the client to get the group SIDs. The structure of the PAC is nicely defined in this article: http://appliedcrypto.com/spnego/pac/ms_kerberos_pac.html. However, I have no idea how to access the decrypted token. I pass the encrypted token that I receive from the browser to myGssContext.acceptSecContext(...) to complete the authentication.
    Question: Does anyone know how to get the decrypted kerberos ticket from there, specifically the authorization-data field?
    Approach #2
    Try to walk through the Active Directory structures in both domains using LDAP. In the domain group that I am checking, I can see a member attribute that references a foreignSecurityPrincipal object. The CN of this object happens to be the objectSID of the user I am looking for in the remote domain. Unfortunately, I have to check the remote domain server directly to verify that. The foreignSecurityPrincipal object itself does not contain any hint about what user it refers to aside from the SID (no originalDomainName attribute or something similar). It is feasible that I could walk the chain of references back to the remote domain AD server. That would require that my configuration include a list of remote domain servers to check (since I could have users from multiple trusted domains) and that my JBoss server have access to those servers.
    Question: Does anyone know of some other LDAP-related way of finding information about a user from a remote, trusted domain without having to hit the server for that domain directly?
    adTHANKSvance
    Eric

    You should be able to work back from the foreignSecurityPrincipal object :-) He says with a wry smile..
    This post prompts me to think whether one day someone will draw the entity relationship diagram for AD. Oh well, I've been procrastinating for years, a few more won't hurt !
    If it was a user from within the same forest, you should just be able to perform a search against a GC using the objectSID as the search filter. I've forgotten, but I don't think they will be represented as foreign security principals.
    Have a look at the post titled JNDI, Active Directory and SID's (Security Identifiers) available at
    http://forum.java.sun.com/thread.jspa?threadID=585031&tstart=150 that describes how to search for an object based on their SID.
    Now if it is a user from another forest, with which you have a trust relationship, then we begin the navigation excercise.
    You'll need obtain the user's SID (either from the cn or from the objectSID attributes) from the foreignSecurityPrincipal object. For example CN=S-1-5-21-3771862615-1804478405-1612909269-2143,CN=ForeignSecurityPrincipals,DC=antipodes,DC=com
    objectSID=S-S-1-5-21-3771862615-1804478405-1612909269-2143Then obtain the domain RID, eg.S-1-5-21-3771862615-1804478405-1612909269Next you will have to recurse each of the crossRef objects in the Partitions container, in the configuration naming context (which you will find listed in the RootDSE). The crossref objects that represent trusted domains or forests will have values for their trustParent attributes. A sample query would be something like//specify the LDAP search filter
    String searchFilter = "(&(objectClass=crossRef)(trustParent=*))";
    //Specify the Base for the search
    String searchBase = "CN=Partitions,CN=Configuration,DC=antipodes,DC=com";For each crossRef object, you can then use the dnsRoot attribute to determine the dns domain name of the forest/domain (if you want to later use dns to search for the dns name,ip address of the domain controllers in the trusted domains/forests), and then use the nCName attribute to determine the distinguished name of the trusted forest/domain.dnsRoot = contoso.com
    ncName = dc=contoso,dc=comPerform another bind to the ncName for the trusted domain/forest and retrieve the objectSID attribute, which will be the domain's RID. You may want to cache this information as a lookup table to match domain RID's with domain distingusihed names and dns names.String ldapURL = "ldap://contoso.com:389";
    Attributes attrs = ctx.getAttributes("dc=contoso,dc=com");
    System.out.println("Domain SID: " + attrs.get("objectSID").get());Once you find out which domain matches the RID for the foreignSecurityPrincipal, you can then perform a search for the "real user" .And then finally you should have the user object that represents the foreign security principal !
    Just one thing to note. Assume that CONTOSO and ANTIPODES are two separate forests. If you bind as CONTOSO\cdarwin against the CONTOSO domain, the tokenGroups attribute (which represents teh process token) will contain all of the group memberships of Charles Darwin in the CONTOSO domain/forest. It will not contain his memberships if any, of groups in the ANTIPODES forest. If Charles Darwin accesses a resource in ANTIPODES, then his process token used by the ANTIPODES resource will be updated with his group memberships of the ANTIPODES forest. Also you can have "orphaned foreignn security principal", where the original user object has been deleted !
    BTW, If I was doing this purely on Windows, IIRC, you just use one API call DsCrackNames, to get the "real user", and then the appropriate ImpersonateUser calls to update the process token etc..
    Good luck.

  • Oracle.jbo.domain.Number to int and back

    I have a database field that comes back as a oracle.jbo.domain.Number.
    I want to increment this by one so was trying to convert it to an int, apply the increment then turn it back into a number.
    2 questions :
    1) Can I increment oracle.jbo.domain.Number directly
    2) If not how to I turn it to an int and back
    Many thanks,
    Richard

    Convert oracle.jbo.domain.Number to int with the intValue method.
    oracle.jbo.domain.Number var;
    int intValue=var.intValue();Convert int to oracle.jbo.domain.Number with the Number (int value) constructor.
    int intValue;
    oracle.jbo.domain.Number var=new oracle.jbo.domain.Number(intValue);

  • Office 365 Direct Access SCCM

    Hi,
    Recently we deployed a bunch of laptops using SCCM (windows 8.1) but having a partial issue with Office 365 via Software Center.
    When laptops are within domain:
    - Office 365 installs during OSD
    - Office 365 installs via Software Center
    When laptops are within domain via Direct Access:
    - Office 365 downloads but fails at installing.
    "exitcode: 17002"
    "The software change returned error code 0x426A(17002)"
    <![LOG[++++++ App enforcement completed (2 seconds) for App DT "VisioProRetail" [ScopeId_538AD476-A160-422A-81FA-BE714BFAD0B1/DeploymentType_3d6a46b6-ffca-477c-b200-cc3392085b38], Revision: 2, User SID: S-1-5-21-2507967118-3678214798-1188983363-2612] ++++++]LOG]!><time="11:33:58.291-600" date="07-10-2014" component="AppEnforce" context="" type="1" thread="6188" file="appprovider.cpp:2448">
    <![LOG[+++ Starting Install enforcement for App DT "VisioProRetail" ApplicationDeliveryType - ScopeId_538AD476-A160-422A-81FA-BE714BFAD0B1/DeploymentType_3d6a46b6-ffca-477c-b200-cc3392085b38, Revision - 2, ContentPath - C:\WINDOWS\ccmcache\d, Execution Context - System]LOG]!><time="11:34:17.546-600" date="07-10-2014" component="AppEnforce" context="" type="1" thread="6188" file="appprovider.cpp:1702">
    <![LOG[ A user is logged on to the system.]LOG]!><time="11:34:17.546-600" date="07-10-2014" component="AppEnforce" context="" type="1" thread="6188" file="appprovider.cpp:2083">
    <![LOG[ Performing detection of app deployment type VisioProRetail(ScopeId_538AD476-A160-422A-81FA-BE714BFAD0B1/DeploymentType_3d6a46b6-ffca-477c-b200-cc3392085b38, revision 2) for user.]LOG]!><time="11:34:17.550-600" date="07-10-2014" component="AppEnforce" context="" type="1" thread="6188" file="appprovider.cpp:2148">
    <![LOG[+++ Application not discovered. [AppDT Id: ScopeId_538AD476-A160-422A-81FA-BE714BFAD0B1/DeploymentType_3d6a46b6-ffca-477c-b200-cc3392085b38, Revision: 2]]LOG]!><time="11:34:17.580-600" date="07-10-2014" component="AppEnforce" context="" type="1" thread="6188" file="localapphandler.cpp:291">
    <![LOG[ App enforcement environment:
    Context: Machine
    Command line: setup.exe /configure configuration.xml
    Allow user interaction: No
    UI mode: 1
    User token: not null
    Session Id: 3
    Content path: C:\WINDOWS\ccmcache\d
    Working directory: ]LOG]!><time="11:34:17.580-600" date="07-10-2014" component="AppEnforce" context="" type="1" thread="6188" file="appcontext.cpp:85">
    <![LOG[ Prepared working directory: C:\WINDOWS\ccmcache\d]LOG]!><time="11:34:17.582-600" date="07-10-2014" component="AppEnforce" context="" type="1" thread="6188" file="appcontext.cpp:189">
    <![LOG[ Prepared command line: "C:\WINDOWS\ccmcache\d\setup.exe" /configure configuration.xml]LOG]!><time="11:34:17.584-600" date="07-10-2014" component="AppEnforce" context="" type="1" thread="6188" file="appcontext.cpp:338">
    <![LOG[ Executing Command line: "C:\WINDOWS\ccmcache\d\setup.exe" /configure configuration.xml with user context]LOG]!><time="11:34:17.585-600" date="07-10-2014" component="AppEnforce" context="" type="1" thread="6188" file="appexcnlib.cpp:201">
    <![LOG[ Working directory C:\WINDOWS\ccmcache\d]LOG]!><time="11:34:17.586-600" date="07-10-2014" component="AppEnforce" context="" type="1" thread="6188" file="appexcnlib.cpp:215">
    <![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="11:34:17.615-600" date="07-10-2014" component="AppEnforce" context="" type="1" thread="6188" file="appcommon.cpp:1094">
    <![LOG[ Waiting for process 440 to finish. Timeout = 120 minutes.]LOG]!><time="11:34:17.617-600" date="07-10-2014" component="AppEnforce" context="" type="1" thread="6188" file="appexcnlib.cpp:1958">
    <![LOG[ Process 440 terminated with exitcode: 17002]LOG]!><time="11:34:19.687-600" date="07-10-2014" component="AppEnforce" context="" type="1" thread="6188" file="appexcnlib.cpp:1967">
    <![LOG[ Looking for exit code 17002 in exit codes table...]LOG]!><time="11:34:19.689-600" date="07-10-2014" component="AppEnforce" context="" type="1" thread="6188" file="appexcnlib.cpp:505">
    <![LOG[ Unmatched exit code (17002) is considered an execution failure.]LOG]!><time="11:34:19.690-600" date="07-10-2014" component="AppEnforce" context="" type="2" thread="6188" file="appexcnlib.cpp:591">
    <![LOG[++++++ App enforcement completed (2 seconds) for App DT "VisioProRetail" [ScopeId_538AD476-A160-422A-81FA-BE714BFAD0B1/DeploymentType_3d6a46b6-ffca-477c-b200-cc3392085b38], Revision: 2, User SID: S-1-5-21-2507967118-3678214798-1188983363-2612] ++++++]LOG]!><time="11:34:19.692-600" date="07-10-2014" component="AppEnforce" context="" type="1" thread="6188" file="appprovider.cpp:2448">
    I have seen some other post where they suggest it is a permission issue but in my case there are no pop up windows and the content was cached to user directory.
    Also confirming that source folder (files and file sizes) are all matching compare to local cached folder.
    Administrator full access to file (myself logged in as administrator)
    Thank you,
    Jono
    Jonathan

    Hi,
    Found out what the issue was... not really a issue to be honest.
    As I am managing SCCM at the same thing, I have office 365, Visio and Project installation as a separated package.
    When I try to run Visio and Project while Office (Lync and Outlook) are running, it will instantly fails.
    Once I turned those software off, it works like magic.
    Regards,
    Jono
    Jonathan

  • Can't access SP site by fully qualified domain name

    I am having trouble accessing my SP Foundation 2010 site by using bidssite.domain.com.  This name resolves to the correct ip address in dns.  The web browser just spins and spins but never gets to the site.
    I can get to it by using:
    bidssite
    servername
    ip address internal
    ip address external
    I have an Alternate Access Mapping set to bidssite.domain.com and it is set to Internet zone.  I have messed around with the host headers in the web site but still can't get it to work. 
    Someone help me out here.  Thanks

    Hi,
    I have some questions:
    Have you tested your name (with domain.com) directly on your server ? Just to confirm where the problem is occured (network or SharePoint Configuration)
    "bidssite" is it your servername ? Just to confirm that it's not a problem in your AAM Configuration.
    What is exactly the trouble ? To have more informations
    Could you test with fiddler the http behavior (http error code)? 
    Have you tested in another zone that internet ? 
    Mutandis mutatis
    I have tested the connection and confirmed the traffic is being port forwarded thru our firewall to the SP server. 
    bidssite is not the name of the server
    The trouble is I cannot access the server by the public url that I have setup for it.  example: bidssite.domain.com
    I am not familiar with Fiddler
    I am not sure what you are asking
    Thanks for your help.  What else can you tell me?

  • The domain users without administrative permission cannot install printers shared on printer server

    Dears
    We have a printer server that OS is Windows server 2003 .And all clinets are installed windows 7.Now,the domain users cannot installed printers shared on the printer server.When i logon the clinent computer with a domain user and access printer server by
    URL \\192.168.37.1 ,i can see all printers shared on the printer server.Then i double click on printer to install it on client computer.It will ask me to input user name and password of local administrator .  
    How to install the printers with domain user directly. Thanks

    refer step #8:
    http://blogs.msdn.com/b/7/archive/2011/07/11/allowing-standard-users-to-install-network-printers-on-windows-7-without-prompting-for-administrative-credentials.aspx
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Domain not found........!

    After a unexpected resatrt, my i web no longer opens. I get a message saying 'Domain not found'
    I reloaded my applications bundle, still the same problem. I tried to load the domain file directly from the library, also the same problem.............
    Please shed some light for me, I'm sure its a simple fix...........

    No, actually I never went to iWeb '08. I just reinstalled iLife '06 after cleaning out my HD. Earlier I'd removed iMovie, iPhoto, iDVD, etc. to save space but after I dumped all my non-English language packages ( using the Tinker Tool System ) and two old Previous Systems folders I recovered a huge amount of HD space and felt I could reinstall them. I wasn't sure how I could just reinstall the programs that I had removed from Applications so I reinstalled iLife '06.
    I tried a Spotlight search and got Apple discussions and iWeb. When I open iWeb I get a clean slate with no sites in the site organizer. But, as I've said, I have several slideshows on webpages that I have a url link to so there must be a domain out there somewhere. If I created a new webpage using iWeb what would happen to the old domain?

  • Naming your top level domain

    I am setting up a new directory server for our organization, we'll call it direct.org.
    I would like to know how you determine which way to name your top level domain.
    o=direct
    o=direct.org
    dc=direct,dc=org
    Most of the organizations around us use the "o=xxxx.org" or "o=xxxx.edu" so I set up our test server as o=direct.org. Before I put this thing into production I wanted to find out what factors are used to determine how you define the top level domain.
    We are, in a sense, an ISP. However, our only clients are educational institutions.
    I took Sun's Directory Server class last year and I asked this question in class. It seems that nobody could come up with a clear answer to this question.

    For LDAP V2 - use o=direct.org
    for LDAP V3 - use dc=direct,dc=org

  • Outlook 2010 and Authentication to Domain Controllers

    I apologize for what is probably a dumb question, but not being an Exchange Administrator and having received some conflicting information, what I want to know is if there is any requirement that the client be able to authenticate to a domain controller.
    The reason why I am asking is because we are working on a restricted VPN realm but we would like Outlook (not OWA) to work. As long as we have a domain controller directly accessible from the client, Outlook works. As soon as we restrict connections to that
    domain controller, Outlook stops working. I thought that the mail server having the Hub Transport Role would mean that the client did not authenticate directly to the DCs for Outlook but via the mail server. Again, I'm not an Exchange admin so I could be misunderstanding
    this.
    One person's thought was that maybe an add-in needed to authenticate and that might be what is causing the issue, but we're running low on ideas and I figured I would see if I could get a definitive answer here.
    Exchange version is 2010. 
    Thanks is advance!
    WB

    As long as we have a domain controller directly accessible from the client, Outlook works. As soon as we restrict connections to that domain controller, Outlook stops working. I thought that the mail server having the Hub Transport Role would mean that the
    client did not authenticate directly to the DCs for Outlook but via the mail server. Again, I'm not an Exchange admin so I could be misunderstanding this.
    Hi,
    According to your description, I am still not quite sure about your issue. If possible, could you please provide more information about "we have a domain controller directly accessible from the client" and "restrict connections to that domain
    controller"?
    Generally, when the client user setup Exchange account in Outlook by using auto setup, the Autodiscover service in Exchange server would be authenticated and connect to Exchange server. Then this service would retrieve other Exchange service from server
    side automatically.
    If your Outlook client for VPN users can't connect to Exchange server in Outlook, please make sure your VPN is configured correctly firstly. Then check whether the internal domain user can connect to Exchange account in Outlook.
    Regards,
    Winnie Liang
    TechNet Community Support

  • RV042 - direct browsing traffic to only one WAN port?

    Hi, I have a RV042 (firmware 1.3.13.02-tm). Is it possible to configure so traffic from a specific domain (incl. its sub-domains) is directed exclusively to one WAN port? If so, how can I do this? Thanks.

    Hi PAC, in a load balance environment it affects only outbound traffic which would use protocol bind to force traffic through a particular WAN port, meaning it won't affect inbound traffic.
    The access rules page only supports source interface but you may try to create an access rule that looks something like this;
    Action Allow
    Service - (Whatever service you're using)
    Source interface WAN 1
    Source IP address - Range of public IP address from the domain/sub domains
    Destination Ip address - The IP address of your subnet or specific nodes
    Now, if you're using a load balance environment, you may want to bind traffic to WAN 1 that originate from the specific hosts that make the request to the domain/sub domains to ensure the source IP address leaving the router otherwise it would be possible to have a different source IP going over the 2nd WAN.
    I'm not sure if it would work this way but to the best of my knowledge this would about be the only way to make it work since the router doesn't support telling inbound services to use a specific WAN.
    -Tom
    Please mark answered for helpful posts

  • Cant Select Users on New Domain

    I recently added a new domain to the network . I wanted to map the users from the new Domain to have them access my SharePoint 2013 Server .  I mapped the new domain successfully using the user profile service . Profiles seems to have been imported
    without any errors however when I go to my SharePoint 2013 site i'm unable to select any users from the new domain . Only users from the old domain are coming up. I went as far as to delete the old user profile service and create a brand new one pointed to
    the new domain . Still so luck. I restated and reset IIS . I waited a day to see if there was some sort of time delay with the update but still no luck .   My SharePoint Server is on the old domain . What am I doing wrong ?
    My Setup : SharePoint 2013 Enterprise 
    Domain Controller : Windows 2012 Server . 
    IT Consultant

    What form of Domain Trust is between the two domains? SharePoint must also have port access to the new Domain Controller(s) host the new domain.
    SharePoint picks people from the Domain Controller directly. The UPA is only used to append information after the user has been found in Active Directory.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

Maybe you are looking for

  • Report Engine SDK Performance

    What are the recommended settings for businessobjects xI (version 11.5) Are there any tips to improve performance and reliability of the Report Engine SDK? It is very slow. We are using a Java client to interact with the dswsbobje libraries. Calls to

  • Lsmw- retail material

    hi all i am new to lsmw and trying to create a retail material through lsmw. i chose business object method with business object as bus1001001.method is 'CLONE' everything has gone well and i could create a material too. but in unit field,(i.e the di

  • IR group by function and timestamp datatype

    Is there any limitations on the group by function e.g. based on the datatype. My problem\misunderstanding is with the IR: USING "GROUP BY"- I have a TIMESTAMP column (columnname TM_TIME) and I can schose it in the group by clause but not in the funct

  • After the upgrade to 3.6, my flash player crashes while I'm trying to play Farmville. I have tried updating the flash player. I have tried restarting the computer. Nothing is working.

    Last night, my system was still using Firefox 3.5.8. I was playing Farmville on Facebook and everything was working fine. This morning, I log onto my computer and find that I am upgraded to Firefox 3.6. I have been trying to play Farmville all mornin

  • Web intelligence error

    Hi all, I'm using BO 4.0 and I have once succeed to make Bex query as source on WebI, but next it always turned into error : The DSL Service returned an error: com.businessobjects.dsl.services.datasource.impl.DataSourceException$UniverseGenerationFai