DSL+No STATIC IP: I'm confused HELP

I know this has been answered I am sure but, I can't seem to find the right post....
If I have a MacPro laptop and I am traveling with it and I want to connect to my home Mac G5 & G4's to control them and share files, what EXACTLY do I have to do IF...
I have a Bellsouth DSL modem at 1 home...(I do NOT think it is static IP, could be DHCP supplied) and a cable modem at another home (not STATIC IP either, DHCP supplied)
What do I need to do about telling ARD the IP addresses ...does the provider change these? Will that not be a problem in running ARD 3? Also, how secure is this for me to do this?
Thanks!

Ray, Thanks for the very helpful response.
To add to your discovery, it also appears that under system preferences/keyboard, there is a box that is defaulted "unchecked" that reads, "Use all F1, F2, etc. keys as standard function keys. When this option is selected, press the FN key to use the special features printed on each key."
That is why my keyboard is over-riding the function keys b/c it is unchecked. When I check this box the expose works as intended.
I also find that my mouse is set up to have the "side" buttons linked with expose.
Under the keyboard shortcuts, I can see where I can check/uncheck the keyboard options but not change them. Still playing around with it...but you definitely solved it for me.
I will mark as such. Good work! Thanks.

Similar Messages

  • How to implement an independent static stub client ? Please, help

    Hi everybody!
    I'm using the jwsdp1.2 and i got the static stub tutorial client to test my webservice. It works fine! However, i tried to compile the client code separately and it didn't worked. The jvm can't find the webservice class. So, the questions are:
    - How to implement an independent static stub whithout the ant help?
    - How can the client get the endpoint to create the proxy?
    - Must I use any javax.xml.rpc interface (call or service maybe) to do the job?
    - Could anybody show me some sample code?
    Well, that's it. I'm waiting for some answer. Please, help me.
    Tks in advance,
    Rodrigo.

    Can you explain what you mean by "independent static stub" ?
    JWSDP Tutorial explains all the steps required to create a static stubs client and invoke the service. In addition, https://jax-rpc.dev.java.net/whitepaper/1.1/index-part2.html#Scenario2 explains the detailed steps to achieve the same from command line.
    Hope that helps.
    Post your JAX-RPC related questions to [email protected] for a quicker resolution.
    Send an email to [email protected] to subscribe to the alias.
    Send an mail to [email protected] for a complete list of help commands.
    -Arun

  • HT201210 Hi......HELP WANTED....just trying to set up my iPad2 and all I keep getting in error 9 occured....tried following the rather confusing help section......no luck ! any simple answers welcome

    Hi....can anyone offer help in setting up my ipad 2.......followed the minimal instructions which weren't much help and ended up with a message telling nm ethat my ipad needed to be restored, but everytime I try a message saying error 9 occured.
    Tried the confusing Help section but can get no further.....

    First, start by opening up Terminal.
    Navigate to the Backups.backupdb folder: Type "cd " and drag and drop the folder onto the terminal window. Hit enter.
    Type the following command: "sudo du -sch" and hit enter. Enter your admin password.
    Wait for du to finish counting. It will prompt the actual size of the folder in GB, not counting hard links.
    Get info on "Backups.backupdb" through Finder and compair the results. If the two sizes match, then you've lost the hard links during the first copy.

  • Setup with Static IP from ISP, need help

    I'm trying to setup my WRT54G to act as my main router on my home network.  Currently, I use it as an access point behind my Sonicwall Tele3, but want to remove the Tele3 entirely because it's limited to 5 IP addresses going through it.  The trick is, I get a static IP from my ISP. 
    My Tele3 works fine and plays nice with my DSL router.  The Tele3 settings include a "WAN Gateway (Router)" address of x.x.x.49 and a "WAN IP (NAT Public)" address of x.x.x.50.  The tele3 then has a local IP address of 192.168.1.1, and so on.  What I'm struggling with is how to setup my WRT54G to act as the main router.  I've tried a Static IP setup in the "Basic Networking" section of the linksys admin console, but no matter what I try, I can't get out to the Internet.
    Thanks in advance for your advice.

    In order to setup a static WAN (Internet) IP address on your WRT54G, you will need the following info from your ISP:
    Internet IP address
    Subnet Mask
    Gateway
    and at least one DNS address
    Additionally, some users have been told that they have a "Static" Internet address, when in fact they have a PPPoE connection, and their ISP is simply giving them the same IP address each time they connect.  Please clarify with your ISP whether or not you have this.  If you have it, you will need your PPPoE
    User Name, and
    Password
    from your ISP.
    Hope this helps.
    Message Edited by toomanydonuts on 02-26-2008 01:52 AM

  • I need help fixing my ipad 2 wifi headphone jack when I play music it have a lot of static in it con anyone help?

    I have a lot of static in my headphone jack and I can't really hear the music that's playing can anyone help me? Please

    Clean out your headphone port with compressed air or a cotton swab dipped in rubbing alcohol. Does that help?

  • Java number game confused help any1!

    The following simple game is played between a player and the computer. At the
    start the player enters either the number one or two on the keyboard (the computer will also
    choose either one or two at random). Then the computer draws two numbers between one and
    one hundred at random. The human player wins if the number in position corresponding to the
    number he selected is bigger than the number in position corresponding to the number chosen by
    the computer. If the two numbers are the same (either because the player and the computer chose
    the same value or because the random numbers in the chosen positions are the same) the game
    ends in a draw. The code doen't work properly it etiher comes up with computer wins and draw at the same time! Also i need to display the numbers that are generated randomly can anyone help my code:
    import java.lang.Object;
    import java.lang.System;
    import java.io.InputStream;
    import java.util.Scanner;
    class javataex1 {
    public static void main(String[] args) {
    // declarations
    Scanner input = new Scanner (System.in);
    int human ;
    int computer;
    int Number1;
    int Number2;
    //instructions
    Number1=(int) Math.ceil(100*Math.random());
    Number2=(int) Math.ceil(100*Math.random());
    computer=(int) Math.ceil(2*Math.random());
    System.out.print("Enter number 1 or 2: ");
    human = (input.nextInt());
    if (human!=1 && human!=2)
    System.out.println("you entered wrong number");
    else
    if (human==computer)
    System.out.print("Draw");
    else
    human=Number1;
    computer=Number2;
    if (human==computer)
    System.out.print("Draw");
    else
    if (human>computer)
    System.out.print("Human wins");
    else
    if (computer>human)
    System.out.print("Computer wins");
    }

    Crosspost
    http://forum.java.sun.com/thread.jspa?threadID=5245168&tstart=0
    Only post on one forum at a time, please. I think someone answered you in the other thread anyway.
    Illu

  • RG54RS + DSL Modem = Frozen RG54RS... HELP!!!

    I'm having trouble setting up the internet on my wireless network... everything will work fine, I can change all the settings and stuff... but the moment I plug the DSL modem into the Residential Gateway, it stops responding.
    I've tried it through wireless AND wired connection, I've tried resetting the RG with the modem plugged in, I've tried resetting the modem with it plugged in... I'm out of ideas!
    Please help!
           Thanks in advance

    I have a problem with the PPPoE connection on the RG54GS. I have tried with the new firmware.
    I enter my PPPoE information correctly as the log file information shows
    "PPPoE Connect" or something like that
    "PPPoE Dropped" when I pull the cable.
    When I enter the PPPoE information incorrectly I get more detailed information about the PPPoE connection being established and failing. So it looks like I have the login information correctly.
    Anyways back to the problem. I can connect to the PPPoE connection (istop.com over bell lines (Bell Sympatico) in Canada )using Windows software and with Linux no problem.
    Using the RG54GS it seems to make the connection by putting the "OK" message in the log file. However once that happens I cannot route through the RG54GS to the outside world.
    I set the routing gateway to 192.168.1.254. I cannot ping any address in the outside world (not even the DNS server)
    I set the DNS server as an IP address on the machine and cannot do DNS lookups. No suprise as I cannot ping the DNS machine.
    So the RG54GS is happy with the PPPoE connection but I cannot seem to get any information through the box. The RG54GS is otherwise in the default setting running NAT, DHCP and low firewall operations.
    I can connect to the RG54GS and look at the setting during this time no problem.
    During this time the ADSL modem shows burst activity, big clumps, big pauses of about 1/2 second duration each. Even if I am not trying to do anything from the computer.
    Question: What does the box do after logging PPPoE OK?

  • Static IP address--still confused.   Is this correct?

    Hoping someone can check behind my work here...
    I have a Time Capsule device. I'm posting here as this involves the internet connection piece and I think that deals with the airport part of the device.
    I had a static IP address running for about a year with no problems. Then, one day about a month ago my time machine device seemed to have a meltdown. Lost my connections, had to start over, etc. Because I ran into all sorts of problems setting up the IP address again I just went with the DHCP and skipped the static IP address. I tried again this week to set it up. The related port forwarding seems to be working but my connection has slowed down dramatically, especially if connected to a bit torrent site that is downloading fairly slow (much slower than in the past).
    I guess I'm confused b/c the instructions on the net seem to talk about setting one area (under system preferences/network) but not in the airport part of the settings. Here's what I did.
    1. Went into system preferences/network, and modified the "ethernet" connection to configure IPv4 manually. The IP address is 10.0.1.10. The router shows 10.0.1.1. All the other fields are in there correctly I think. Is this controlling the router from Comcast? Do these numbers make sense?
    2. I went into Airport utility, the internet settings, and changed that IPv4 to manual as well. The IP address is 24.14.234.XX. The router address is 24.14.232.1. Is this controlling the Apple part of the router? Do these settings make sense?
    3. Under DHCP tab in airport utility, it has DHCP range of 10.0.1.2 as the beginning address and 10.0.1.200 as the ending address. Honestly, I thought my settings in # 1 and # 2 don't make sense with this from what I've read on the internet. Thoughts?
    I can connect to the internet right now but I feel like I've done this wrong and that it is sluggish.
    Any advice?
    Thanks.

    2. I went into Airport utility, the internet settings, and changed that IPv4 to manual as well. The IP address is 24.14.234.XX. The router address is 24.14.232.1. Is this controlling the Apple part of the router? Do these settings make sense?
    That is the public IP address that your ISP is giving you.
    3. Under DHCP tab in airport utility, it has DHCP range of 10.0.1.2 as the beginning address and 10.0.1.200 as the ending address. Honestly, I thought my settings in # 1 and # 2 don't make sense with this from what I've read on the internet. Thoughts?
    That means that the DHCP server running on the Time Capsule is giving out IP addresses from 10.0.1.2 to 10.0.1.200.
    1. Went into system preferences/network, and modified the "ethernet" connection to configure IPv4 manually. The IP address is 10.0.1.10. The router shows 10.0.1.1. All the other fields are in there correctly I think. Is this controlling the router from Comcast? Do these numbers make sense?
    This is the private IP address provided by the Time Capsule. If you want to configure your computer to have a static IP address, you should configure it to use an address from 10.0.1.201 to 10.0.1.254. The router should be set to 10.0.1.1 which is the LAN side IP address of the Time Capsule. The Subnet mask should be set to 255.255.255.0 and the DNS can be set to 10.0.1.1.

  • I purchased a new router and now can't connect my Iphone 4S to it.  All my other devices work fine.  How do I get the phone to connect.  It finds the router but wants IP address: CHCP/BootP/STATIC.  I am confused!!

    I purchased a new router and can not connect my IPHONE 4S to it.  All my other devices connect fine including my IPAD.  HELP!  I am not a techie!! I am a newbie

    My guess is that when you see the router on your phone, you press the blue arrow on the right - thats why you see all the IP stuff.   Don't press the blue arrow.  Press further to the left. You should be prompted for a password then.

  • When i try to sync my ipad with my pc to share pictures, i get a message to update to 11.1 or greater. when i try to download the latest version of itunes, the message says i already have a larger version. i am confused. help!

    when I try to sync my Ipad with my pc, I get a message to update to 11.1 or greater itunes version. when I tried to download the latest version of itunes, a message says i already have a greater version. can anyone help?

    Hi,
    Do you have iTunes 11 on your imac? What OS X do you have?
    Jim

  • Convert static html page to portal help needed

    I have a page here. that I need to put in portal.
    I am having trouble!
    use banner for the top image.
    use a region for the top menu links. This is "About, Registration, Security,etc...)
    Because menu bars and folders do not do horizontal alignment of items, all the links (about, registration) have to be one item. Would this be text in a folder? If a folder, can I remove the nav bar?
    One of my problems is that a lot of the content uses images. What is best practice for referring to images in content?
    If one has a lot of html content (10 lines) , why is the best element to use for this?
    Should I just use UI templates for everything?

    Hi,
    Depends. If you are going to reuse the layout, use a UI template. e.g static navigation , company branding etc.
    If you need to add Javascript/DHTML effects etc, a UI template is good, since you can call them from your portlets.
    As far as images go, don't place them in the database ! Place them on the middle tier and cache the folder
    with an Expires directive.
    hth
    If it is for one time use, use an HTML Portlet.
    I have a page here. that I need to put in portal.
    I am having trouble!
    use banner for the top image.
    use a region for the top menu links. This is "About, Registration, Security,etc...)
    Because menu bars and folders do not do horizontal alignment of items, all the links (about, registration) have to be one item. Would this be text in a folder? If a folder, can I remove the nav bar?
    One of my problems is that a lot of the content uses images. What is best practice for referring to images in content?
    If one has a lot of html content (10 lines) , why is the best element to use for this?
    Should I just use UI templates for everything?

  • Verizon Turbo Dsl plan with Westell 6100 modem? Help?

    So I have a westell 6100 modem and on the 7th I upgraded my bundle i had 1 Mbps for Internet , verizon homephone freedom essentials, and Directv. Since fios is not available were I live. And my new bundle is Verizon Dsl 7.0-1 Mbps turbo plan, verizon essentials and directv for $115.00. My question is will my modem provison the speed correct? will it still work? Or do I have to buy a new modem? Thanks!.
    Solved!
    Go to Solution.

    If you have been using the 6100 previously then the modem should sync to the new speed automatically.  If yareou still using an old style flat phone cable from the jack to the modem it may not be capable of the faster speed.  The round tan colored cable which originally was supplied with the modem would be the one to use.  I moved up recently from 3 to the turbo 7.1 via ASDL2plus and found that Verizon at my location has capped the speed at about 5.5.  Their out is to say speeds up to 7.1.

  • Two domains + two servers + one static IP address = DNS confusion

    I'll try to keep this simple:
    I have two domains, two mac mini SL servers, one airport extreme, and multiple static IPs, but only one of them pointing to the router. I've configured DNS successfully for the primary domain (example1.com) and thought that I had set up a second primary zone for the second domain (example2.com) but all external requests point to example1.com.
    So the two setups i've tried are:
    Reverse zone
    1.0.10.in-addr.arpa.
    - 10.0.1.200 - example1.com
    - 10.0.1.201 - example2.com
    Primary zone
    example1.com
    - example1.com - 10.0.1.200
    - example2.com - 10.0.1.201
    OR
    Primary zone 1
    example1.com
    - example1.com - 10.0.1.200
    Primary zone 2
    example2.com
    - example2.com - 10.0.1.201
    Does anyone know of a good tutorial for hosting multiple servers in an internal network, pointing to one name server internally? I've looked everywhere and cannot make sense of the issue.
    Thanks in advance.

    After sleeping on it, I came up with a much easier solution that works better for what I'd planned in the first place. I hung a spare router off my gateway and set up a completely different network for the second server and everything is great now. I knew there was a reason I'd signed up for five IPs...
    In any event, I don't think I would've been able to accomplish what I was trying to do while using the Airport Extreme as my firewall. I wanted to have separate static IPs for each of the boxes and obviously I couldn't do that with the airport, although it took a while for me to recognize that.
    thanks for the suggestion, though. I think I'm going to use that for some subdomains.

  • Ipod Mini has a static wall outlet screen **Please Help**

    So here's the story. My sister had a pc that she used her Ipod with. I just bought her an ibook and we tried to reformat the mini to have mac software. I ran the updater and chose "restore" to erase all the old contents and install a fresh system. That went fine until it prompted me to plug the ipod into the wall to reset the firmware. I did just that and nothing happened. And it still prompts me to plug it into the wall which I do. I must of done it 15 times already. I tried getting it to disk mode, but all I get is that icon of the wall outlet and the plug. Any suggestions? Thanks in advance for the help.
    Enrico

    Yes, and I still get the same response.

  • Expose keyboard shortcuts seem to already be taken; i'm confused; help?

    Hello,
    I'm a mac newbie. Under the mac help instructions for expose, I find these instructions:
    xposé provides a quick way to see all open application windows and switch between them. Press the F9 key to see all the windows you have open, or press the F10 key to see the open windows in the application you are currently using. To hide all open windows so you can see the desktop, press F11.
    What I find is that f9, f10, and f11 are taken with other shortcuts on the keyboard and I can never get the expose shortcuts to work. I've played around and find no way around this.
    What am I doing wrong?
    Thanks.

    Ray, Thanks for the very helpful response.
    To add to your discovery, it also appears that under system preferences/keyboard, there is a box that is defaulted "unchecked" that reads, "Use all F1, F2, etc. keys as standard function keys. When this option is selected, press the FN key to use the special features printed on each key."
    That is why my keyboard is over-riding the function keys b/c it is unchecked. When I check this box the expose works as intended.
    I also find that my mouse is set up to have the "side" buttons linked with expose.
    Under the keyboard shortcuts, I can see where I can check/uncheck the keyboard options but not change them. Still playing around with it...but you definitely solved it for me.
    I will mark as such. Good work! Thanks.

Maybe you are looking for

  • SAP BW 3.5 Certification Material  required ? -- Urgent plz

    Hi , I  registered for SAP BW 3.5 examination on 10 aug. I  desparately in need of TBW10, TBW20, TBW30, TBW40, BWD35 (Delta - Reporting WHM, Extraction, SAP BW 3.0 – 3.5), TBW45 (Business Planning and Simulation) material. If any have kindly send it

  • Homebrew WiFi Antenna (Proper Cable, LMR-195 GR-58?)

    Hey, I don't know if this is the best forum for my questions, and if not please direct me to one that better suits my needs. I was simply referred to this forum through another one. Anyhow, me and my friend are attempting to build our own wifi antenn

  • Solution Manager generated link

    Hello, Solution Manager has a "generate" button that generates a URL for documents within the Solution Manager structure. Below is an example of a URL that are generated from Solution Manager. http://sapbsp02.weyer.com:08005/sap/bc/solman/SolmanDocum

  • HT1918 Need assistance with billing methods, I've tried 3 credit cards and non work.

    Why are 3 of my credit card not supported/accpeted by Itunes account?

  • Video conferencing help

    Hi Guys, Im extremely new to java, im trying to find out how to go about setting up a peer to peer video conferencing on my website. So that users that are logged into my site can chat to each other. Does anyone know of any tutorials around that can