ICS with Virtual AP DNS and Shares

I have configured ICS with an virtual AP for my WLAN adapter.
This is working well. I can connect to it and I have a internet connection.
Now my problem is that I have a Server with AD, DNS, DHCP and Shares on my network and I want that the clients have access to these.
Is it possible to configure the ICS so that the WLAN client will get in the same network as my ethernet adapter? So that they get the IP from my Server and not the local machine. If not, is possible get access to all other services of my server? And is possible
to get access to the Shares on that server?
EDIT: I have tested again and it seems everything is working only DNS is not working. I cant get that the clients has the server as DNS and not the local machine

Hi,
Did you mean you have configured ICS on your hosted network? 
How to create a wireless ad hoc for internet connection sharing in windows 8
http://microwindows8.blogspot.jp/2013/01/how-to-create-wireless-ad-hoc-to.html
Here is the guide to configure ICS.
Also I would like to know whether you have set the static DNS server as your own on the other device use the AP.
Would you please post back more detailed information you want to implement and the draft of your network structure? This will be more helpful for us to identify your issue.
Kate Li
TechNet Community Support

Similar Messages

  • Help configuring Audition with Virtual  Audio Cable and Skype

    I'm using the latest version of Audition, along with Virtual Audio Cable and Skype for my PC (Windows 7).  While I'm able to properly configure my own microphone (Edirol UA-25), to be captured by Audition on track 1, I can't seem to get track 2 configured properly to capture and record.
    I seem to be missing a step.
    Is there anyone that can help me properly configure or offer an alternative that will allow me to record my microphone and the Skype call on two separate tracks?
    Thanks in advance for your expertise!

    Others may have made it work but I've never persuaded Audition to record a mic in one channel and line out (Skype) in the other.  Since Audition it designed to work with a single ASIO audio interface, this makes sense.
    My solution is to use a little utility called the iFree Skype recorder:  Record Skype Calls with iFree Skype Recorder - Your FREE Skype call recorder software
    It works well for me, keeping the outgoing part of the call and the incoming separate for easy editing later.  It works fine with an external audio interface and good mic as long as Skype is set up to work that way.
    The only drawback is that it records in MP3 not wave but, given the quality of most Skype calls, this isn't really a deal breaker.

  • Real problems with ISP based DNS and Domain

    Hi all,
    I have an external based domain name that would like to incorpate into my new server. At the moment, the ISP (1and1) is dealing with Mail and Hosting. Ideally, I would like to run the Mail Exchanger and leave the hosting to the ISP. However, I' having some trouble configuring the whole thing!
    Firsty, I'm slightly at a loss as to what to call my DNS when setting up the server for the first time. Should this be the same as my current Domain name? If so, would htis cause conflicts running this name side by side with my ISP (even if it would just be used for file sharing etc?).
    I have a few more questions but if anyone can help me with this one I'd be most greatful. I'm fairly new to Servers (one of the reasons for getting an OS X Server as I was told of it's ease of use!!) but willing to learn!
    Cheers,
    Oli

    You can still get iTunes 9 for OS X 10.4, but you'll have to get updated to 10.4.11 first.
    Here's the download link for iTunes 9:
    http://support.apple.com/kb/DL1056
    Let's test your internet connection. Perhaps your download is being interrupted along the way and you don't quite have the entire update.
    Go here:
    http://pingtest.net/
    And let me know the results of the test.
    ~Lyssa

  • Help needed with virtual bookshelf - drag and drop between components?

    Hi there,
    Im trying to create a virtual bookshelf, where book spines are individual movie clips that can be dragged and re-ordered on the shelf.  At the moment i can drag the spines to one assigned target, but not any target or 'nudge' the position of the other books along.
    Im sorry if this is a bit vague i'm not that experienced in as3, please feel free to ask any questions and i'll do my best to answer.  Im thinking that an array is necessary which holds the positions, but im not sure how to put it all together!
    Any help greatly appreciated! The code i have so far is:
    import flash.events.MouseEvent;
    import flash.display.MovieClip;
    var dragArray:Array = [red, blue, green, purple, yellow];
    var matchArray:Array = [target1, target2, target3, target4, target5];
    var currentClip:MovieClip;
    var startX:Number;
    var startY:Number;
    for(var i:int = 0; i < dragArray.length; i++) {
    dragArray[i].buttonMode = true;
    dragArray[i].addEventListener(MouseEvent.MOUSE_DOWN, item_onMouseDown);
    matchArray[i].alpha = 0.2;
    function item_onMouseDown(event:MouseEvent):void {
    currentClip = MovieClip(event.currentTarget);
    startX = currentClip.x;
    startY = currentClip.y;
    addChild(currentClip); //bring to the front
    currentClip.startDrag();
    stage.addEventListener(MouseEvent.MOUSE_UP, stage_onMouseUp);
    function stage_onMouseUp(event:MouseEvent):void {
    stage.removeEventListener(MouseEvent.MOUSE_UP, stage_onMouseUp);
    currentClip.stopDrag();
    var index:int = dragArray.indexOf(currentClip);
    var matchClip:MovieClip = MovieClip(matchArray[index]);
    if(matchClip.hitTestPoint(currentClip.x, currentClip.y, true)) {
      //a match was made! position the clip on the matching clip:
      currentClip.x = matchClip.x;
      currentClip.y = matchClip.y;
      //make it not draggable anymore:
      currentClip.removeEventListener(MouseEvent.MOUSE_DOWN, item_onMouseDown);
      currentClip.buttonMode = false;
    } else {
      //match was not made, so send the clip back where it started:
      currentClip.x = startX;
      currentClip.y = startY;

    Morning kglad, thanks for your help yesterday. I tried the code again and still have the same problems - you cant drop over another book and it nudges that book along aswell as the others to the right. Also if you drop a book back in its originally place - sometimes - it creates a gap next to it. The book still only seem happy in their original starting positions!
    Its very close, im continuing to try fiddle with it to get it working, have the whole of today to try and do this so the coffee is on!
    Ive taken some code out that I realise this morning I didnt't need - e.g the code that stops a book being dragged once you have positioned it (they need to be able to be repositioned more than once, and the code that sends a book back to its original position if you didnt reposition it over a target. If this was foolish please tell me! I have a feeling the latter was!
    so the code im trying to get working at the moment is:
    import flash.events.MouseEvent;
    import flash.display.MovieClip;
    var dragArray:Array = [red, blue, green, purple, yellow];
    var matchArray:Array = [target1, target2, target3, target4, target5];
    var currentClip:MovieClip;
    var startX:Number;
    var startY:Number;
    for(var i:int = 0; i < dragArray.length; i++) {
    // REMOVED
    //dragArray[i].buttonMode = true;
    dragArray[i].addEventListener(MouseEvent.MOUSE_DOWN, item_onMouseDown);
    matchArray[i].alpha = 0.2;
    function item_onMouseDown(event:MouseEvent):void {
    currentClip = MovieClip(event.currentTarget);
    startX = currentClip.x;
    startY = currentClip.y;
    addChild(currentClip); //bring to the front
    currentClip.startDrag();
    stage.addEventListener(MouseEvent.MOUSE_UP, stage_onMouseUp);
    function stage_onMouseUp(event:MouseEvent):void {
    stage.removeEventListener(MouseEvent.MOUSE_UP, stage_onMouseUp);
    currentClip.stopDrag();
    var index:int = dragArray.indexOf(currentClip);
    var matchClip:MovieClip = MovieClip(matchArray[index]);
    if(matchClip.hitTestPoint(currentClip.x, currentClip.y, true)) {
      //a match was made against a target:
      currentClip.x = matchClip.x;
      currentClip.y = matchClip.y;
    //REMOVED
    //make it not draggable anymore:
      //currentClip.removeEventListener(MouseEvent.MOUSE_DOWN, item_onMouseDown);
      //currentClip.buttonMode = false;
    for(var i:int=dragArray.indexOf(currentClip)+1;i<dragArray.length;i++){
    dragArray[i].x+=currentClip.width;
      // REMOVED
      //else {
      //match was not made, so send the clip back where it started:
      //currentClip.x = startX;
      //currentClip.y = startY;

  • How to set up a mail server with a private DNS and relay over a public mail

    How to set up the mail server that we can send and pick up emails inside and outside?
    Our private network has the DNS name dnsname1.private.
    We have our privat DNS Server and he can forward requests to outside over our router.
    Our public emails are hosted by an internet provider. This dns name is dnsname2.com and dnsname2.org.
    How we have to set up our mail server that we can pick up our emails from our public dnsname2.com?
    And when we write an email how we have to set up it that the dnsname is dansname2.com and not dnsname1.private?

    If you want to move your mailservice to your own (internal) server, start by making sure you can recieve traffic on port TCP 25 (SMTP). Some ISPs blocks this port, especially on "non business" connections.
    Can you send mail from your LAN directly to where your mail is hosted using port 25 TCP or do you have to relay via your ISP?
    You have a static public IP?

  • Problem sorting list with virtual layout = false (and also with true)

    Hi,
    I've a problem sorting a list... or better... I've a problem showing the sorted list ;-)
    I've a list of xml item. The list is shown with an item renderer.
    my needs: a button to refresh data and a button to sort data.
    useVirtualLayout = false
    -> refresh works correctly, sort does not affect the view (even if the list is sorted correctly when printed with trace)
    useVirtualLayout = true
    -> sort works correctly, refresh reverse the list each time I press it (even if the list remain the same when printed with trace)
    does any one have an idea?
    thank you!!
    MXML
    <s:List dataProvider="{xmlListCollection}" width="100%" itemRenderer="myRenderer" minHeight="0" id="test" useVirtualLayout="false" >
    <s:layout>
      <s:VerticalLayout clipAndEnableScrolling="true"/>
    </s:layout>
    </s:List>
    XML example
    <unit sortField1="First Floor" sortField2="7">
      <employee>
        <id>3040684</id>
        <name>PIFFARETTI Vasco</name>
        <birthdate>20.05.1983</birthdate>
        <beginDate>2012-02-25 08:55:00</beginDate>
        <endDate>9999-12-31 00:00:00</endDate>
        <annotation/>
      </employee>
    </unit>

    You can tell when the scroll position has changed by handling the propertyChange event coming from the DataGroup:
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   creationComplete="list1.dataGroup.addEventListener('propertyChange', handle)">
        <fx:Script>
            <![CDATA[
                import mx.events.PropertyChangeEvent;
                private function handle(e:PropertyChangeEvent):void {
                    if (e.property == 'verticalScrollPosition'){
                        trace('vsp changed');               
                    if (e.property == 'horizontalScrollPosition'){
                        trace('hsp changed');               
            ]]>
        </fx:Script>
        <s:List id="list1" width="100" height="50">
            <s:layout>
                <s:VerticalLayout />
            </s:layout>
            <s:dataProvider>
                <s:ArrayList>
                    <fx:String>0</fx:String>
                    <fx:String>1</fx:String>
                    <fx:String>2</fx:String>
                    <fx:String>3</fx:String>
                    <fx:String>4</fx:String>
                    <fx:String>5</fx:String>
                    <fx:String>6</fx:String>
                    <fx:String>7</fx:String>
                </s:ArrayList>
            </s:dataProvider>
        </s:List>
    </s:Application>
    You might also want to read and consider voting for http://bugs.adobe.com/jira/browse/SDK-21357

  • Re: Virtual File System and NCP Shares

    I can confirm that VFS does not work on NCP volumes. In fact an admin volume
    is not created without NSS.
    I'm using the X-plat APIs to manage trustees on NCP volumes.
    John
    "HBware (hans)" <[email protected]> wrote in message
    news:8W6dl.1960$[email protected]..
    > Hello does anyone know how to manage the filerights on non NSS NCP shares?
    >
    > I can't do this with Virtual File System, the shares aren't available as
    > volumes there.
    > Do you have to use the "old" netware NWAddTrusteeExt for this (it works),
    or
    > is there another library?
    >
    > Thx in advance
    > Hans
    >
    >

    with fuse you can do that i think.
    but I take it your thing is not posix compliant? aren't there enough fs'es already you could use instead? or do you mostly want to learn? in that case it's cool

  • Help! My photos won't stream to the cloud and share with other devices. ( I've had the photo stream button on all the time I've had the phone.) The only way I can do it is by manually adding them to photo stream and this is very slow/ misses photos..

    Hello,
    I'm very frustrated. I need to delete photos from my iphone to increase the storage so I can update the operating system. Since first using the phone I bought extra iCloud storage and ensured the photo streaming button for the iCloud was turned on.
    Unfortunately it seems to have a mind of its own and will download and share some photos but the majority have not been downloaded.
    I've resorted to manually putting them on photo stream (the one you share with friends) so the photos will be on my iPad. It also takes ages for my iphone to put them on the photo stream. It's downloaded one album x3 ..??!!? I've tried deleting the duplicated photos but it's now frozen on me....
    I haven't dared delete the photos from my camera roll in case I loose them all and I'm therefore stuck in the situation of being unable to download the new operating system or take anymore photos/download music/apps. It *****!
    Please Help!
    Are there any other options for me to be able to  download my photos when I don't have a computer/laptop? Is there a permanent online storage option I can use?
    Thanks
    Becky

    Amazing steps you've done so far! The great news is this is very unlikely an issue with your iPhone.
    I've run into a similar issue lately as well. I narrowed it down to one song that was causing 30 songs not to sync. I removed the song from the sync list (unchecked it) and all 29 songs were able to sync.
    You may be running into a similar issue. This may be a problem with this version of iTunes, an issue with one song or a group of songs; hard to know for sure. It's important to narrow down and isolate the cause. Most imporantly get that music back on there!
    The way to narrow down the casue add just a few songs at a time (even 1, just to get that first sync finished). Manually syncing is what you'll need here.
    Plug in your iPhone, on the Summary screen (shows a picture of your iPhone, the iOS version, Restore iPhone....; etc). Under the Options area at the bottom choose to Manually Manage Videos and Music then choose Apply in the lower right. The music that's on your iPhone now should be removed from your iPhone now. You're now able to sync music manually.
    The link below explains how to drag the songs from the iTunes library on the computer on to your iPhone which will start the sync. Add just one song just to see if you can get 1 of those hundreds of songs on there. If you can, awesome! Keep adding until you find the song or group of songs that are causing this issue.
    http://support.apple.com/kb/HT1535
    Please let me know how things are going.
    Cheers!

  • What is the easiest way to create and share photo/video gallery or slide show with family via web?

    I am brand new to Lightroom (converted from Aperture) and made the conversation mainly because I thought that Adobe would bring many more options and because Apple has discontinued development of Aperture. Part of the reason I am asking this question is because there is so much information out there on this subject that it is overwhelming and actually is making it difficult to determine the best way to simply arrange my photos/videos into a slideshow and then to publish somewhat of a gallery or slideshow to show family and friends in other states. 
    I do not like publishing things to Facebook/etc.  Too public.  I just want a simple, efficient way to create a gallery with music and have a link I can send to my family (they all live in another state). 
    Any help narrowing this down for me would be greatly appreciated!
    Thanks,
    RJ Chesterton

    an airport extreme base station would do the job, it has several ethernet ports for use by non-wireless devices, allows connecting a usb printer to share, and supports both pc and mac via wireless
    config is via a dedicated set-up utility
    however, you can always connect the printer to the mac or pc and share it that way, so having this support in the base station isn't essential
    a much cheaper unit from netgear etc. (such as the netgear wgr614) would offer the other features, be far more compact, and allow configuration via web browser, which might be a factor if you need to give 'remote support'
    i've got both airport and netgear wireless devices, imho for non-technical users the netgear is simpler than the airport due to the web browser configuration

  • Create a folder on the desktop and share with everyone if it does not exist on a Windows 7 PC - No Domain

    I have a script that needs to be modified to create a folder on the desktop and share with everyone if it does not exist on a Windows 7 PC - No Domain.  Here is the script, need help at bottom
    =======================================================
    Set objShell = CreateObject("WScript.Shell")
    objComputer=objShell.ExpandEnvironmentStrings("%ComputerName%")
     IF Right(objComputer,3) = "000" Then
    Else
     strShortcut = objShell.SpecialFolders( "Desktop" )  & "\%username% Share.lnk"
      strShortcut = objShell.ExpandEnvironmentStrings(strShortcut)
    Set objLink = objShell.CreateShortcut( strShortcut )
     objComputer=objShell.ExpandEnvironmentStrings("%ComputerName%")
      objServer=Left(objComputer,7) & "-000"
     objLink.Description = objShell.ExpandEnvironmentStrings("%username% Share")
      objLink.TargetPath = objShell.ExpandEnvironmentStrings("\\" & objServer & "\Users\%username%\Desktop\%username% Share")
      objLink.Save
    End If
    =======================================================
    if "C:\Users\%username%\desktop\%username% Share" exits do nothing
    if not create the folder and share it with everyone read only
    ======================================================
    The section directly above is what I need to add, anyone have a clue how to make this work?

    Bill:  Can you suggest a site?  I am in the weeds here trying to get this done yesterday.  I have been reading code and trying to figure this out since yesterday morning.  I have to roll out this image to 2 dozen machines and
    this is holding us back.  Any idea which site I can post to for help?
    The bigger issue is that you have been given the answer to this in many different forms and, because you have no technical background, you fail to see what is being shown to you.  That is why I have repeatedly suggested that you hire a consultant.
    The link to the learning material is at the top o this page.  You can also search the web for Windows consultants.
    In the learning link you can also look up how to manage files. If, in the beginning you had chosen to use the learning materials you might not be in this bind.
    Look up and research the FileSystemObject.
    ¯\_(ツ)_/¯

  • I share a macbook with my other half and we both use it for our iphones. When syncing using the new software I now have all of her and my contacts on my phone.  I don't want her contacts! How do I get rid?

    I share a macbook with my other half and we both use it for our iphones. When syncing using the new software I now have all of her and my contacts on my phone.  I don't want her contacts! How do I get rid?

    Hi,
    You have 2 solutions:
    1 - You can use 2 differents icloud account
    2 - You use the same account but you don't sync yours contacts.
    You configure that in  Settings > icloud
    You activate or desactivate what you want.
    Have a nice day.

  • My husband and I share a new PC.  We have different music tastes and each have an iphone.  How can we both use our one computer and one itunes program with separate music libraries and separate iphones?

    My husband and I share a new PC.  We have different music tastes and each have an iphone.  How can we both use our one computer and one itunes program with separate music libraries and separate iphones?

    Each device only syncs waht you select.
    Select only what you want for each phone.

  • Can we with ligthroom  have the sofware set up on multiples computer mac and mc and share the same dat base library?

    can we with ligthroom  have the sofware set up on multiples computer mac and mc and share the same dat base library?

    No, a Lightroom catalog cannot be on a networked drive, and can only be accessed by a single user at a time.

  • I have an iPhone and iPad. I would like to get my husband an iPhone. Are we able to sync all devices and share info with both iPhones and the iPad, using a single email address?

    I have an iPhone and iPad. I would like to get my husband an iPhone. Are we able to sync all devices and share info with both iPhones and the iPad, using a single email address?

    Thanks for that. He is one of the last holdouts in IT so an email address for him would just mean I have 2 to check so that is what I am trying to avoid as we move into retirement:)

  • Can I use Icloud to store and share other files, with other Mac users?

    Hello, I was just wondering if I could use iCloud to store and share files with other Mac users over the internet? Thanks!

    I would suggest re posting in the iCloud for Mac forum where all the people in here that are experts with that hang out.  Good luck.

Maybe you are looking for

  • My address bar and menu bar are missing, unable to back up history or bookmarks..

    I unchecked menu bar then unchecked address bar. Now I can't right click and check them back to make them appear. Now I can't back up my history or my bookmarks. I have no help> or menu.

  • Plug-in 1.3.1_02  & Plug-in 1.4.0 interop issues

    I have Java Plug-in 1.3.1_02 and Java Plug-in 1.4.0 installed on Win2000 sp2. I have come across a weird problem which shows up when loading html files (with plugin tags specified), compared to web-site access. When I load a plugin 1.3.1 initially, s

  • SAP UCES (Call Center Search Mode) - Mimic functionality

    Hi, We are implementing SAP UCES 6.02(Utility Customer E-Services) which is a java based customer website for Utility Industry. UCES comes with a CSR(Customer Service Rep) Mimic functionality where by a CSR(from CRM Web IC) gets to see the same pages

  • Choosing specific key figure

    Hi all, There are 12 key figures (one for each month) and now I want select one of them in the query for output according to input value. For example, when user entry is 3, in the report will be visible column Z03, for 4 column Z04, etc. How can I ac

  • Missing Controls

    I'm using the latest version of iWeb. I dragged an MP3 fro iTunes to my webpage and then added a photo to the object. In iWeb, I get a set of controls that allows me to start/stop the music. However, when I review the page in Safari, after publishing