Rp-pppoe won't connect at boot; LCP timeout

At my college, we all have our own PPP connection to the main server. To start it at boot, I've put the 'adsl' in the daemons array in rc.conf, and this worked for a long time. Then, some time ago, the service failed to start at boot. However, once I've gotten into X, open xterm and type 'pppoe-connect' or '/etc/rc.d/adsl start', it works fine.
Here's the log of when it fails to start up at boot time:
Oct 18 10:22:44 archie PPP generic driver version 2.4.2
Oct 18 10:22:45 archie pppd[3713]: pppd 2.4.4 started by root, uid 0
Oct 18 10:22:45 archie pppd[3713]: Using interface ppp0
Oct 18 10:22:45 archie pppd[3713]: Connect: ppp0 <--> /dev/pts/0
Oct 18 10:23:16 archie pppd[3713]: LCP: timeout sending Config-Requests
Oct 18 10:23:16 archie pppd[3713]: Connection terminated.
Oct 18 10:23:16 archie pppd[3713]: Modem hangup
Oct 18 10:23:20 archie pppd[3713]: Exit
And then, once I do it manually, it works:
Oct 18 10:24:46 archie pppd[4103]: pppd 2.4.4 started by root, uid 0
Oct 18 10:24:46 archie pppd[4103]: Using interface ppp0
Oct 18 10:24:46 archie pppd[4103]: Connect: ppp0 <--> /dev/pts/1
Oct 18 10:24:46 archie pppoe[4104]: PPP session is 25 (0x19)
Oct 18 10:24:47 archie pppd[4103]: EAP: Identity prompt "Name"
Oct 18 10:24:47 archie pppd[4103]: EAP authentication succeeded
Oct 18 10:24:47 archie PPP BSD Compression module registered
Oct 18 10:24:47 archie pppd[4103]: local  IP address xxx.xxx.xxx.xxx
Oct 18 10:24:47 archie pppd[4103]: remote IP address xxx.xxx.xxx.xxx
Oct 18 10:24:47 archie pppd[4103]: primary   DNS address xxx.xxx.xxx.xxx
Oct 18 10:24:47 archie pppd[4103]: secondary DNS address xxx.xxx.xxx.xxx
Here's my rc.conf:
lo="lo 127.0.0.1"
eth1="eth1 10.0.0.1"
eth0="eth0 000.000.00.0"
INTERFACES=(lo eth0 eth1)
gateway="default gw 10.0.0.1"
ROUTES=(!gateway)
DAEMONS=(syslog-ng network @hal @cups @alsa adsl)
...and my pppoe.conf:
# Ethernet card connected to DSL modem
ETH='eth0'
# PPPoE user name.  You may have to supply "@provider.com"  Sympatico
# users in Canada do need to include "@sympatico.ca"
# Sympatico uses PAP authentication.  Make sure /etc/ppp/pap-secrets
# contains the right username/password combination.
# For Magma, use [email protected]
USER='room20'
# Bring link up on demand?  Default is to leave link up all the time.
# If you want the link to come up on demand, set DEMAND to a number indicating
# the idle time after which the link is brought down.
DEMAND=no
#DEMAND=300
# DNS type: SERVER=obtain from server; SPECIFY=use DNS1 and DNS2;
# NOCHANGE=do not adjust.
DNSTYPE=SERVER
# Obtain DNS server addresses from the peer (recent versions of pppd only)
# In old config files, this used to be called USEPEERDNS.  Changed to
# PEERDNS for better Red Hat compatibility
PEERDNS=yes
DNS1=
DNS2=
# Make the PPPoE connection your default route.  Set to
# DEFAULTROUTE=no if you don't want this.
DEFAULTROUTE=yes
### ONLY TOUCH THE FOLLOWING SETTINGS IF YOU'RE AN EXPERT
# How long pppoe-start waits for a new PPP interface to appear before
# concluding something went wrong.  If you use 0, then pppoe-start
# exits immediately with a successful status and does not wait for the
# link to come up.  Time is in seconds.
# WARNING WARNING WARNING:
# If you are using rp-pppoe on a physically-inaccessible host, set
# CONNECT_TIMEOUT to 0.  This makes SURE that the machine keeps trying
# to connect forever after pppoe-start is called.  Otherwise, it will
# give out after CONNECT_TIMEOUT seconds and will not attempt to
# connect again, making it impossible to reach.
CONNECT_TIMEOUT=30
# How often in seconds pppoe-start polls to check if link is up
CONNECT_POLL=2
# Specific desired AC Name
ACNAME=
# Specific desired service name
SERVICENAME=
# Character to echo at each poll.  Use PING="" if you don't want
# anything echoed
PING=".
# File where the pppoe-connect script writes its process-ID.
# Three files are actually used:
#   $PIDFILE       contains PID of pppoe-connect script
#   $PIDFILE.pppoe contains PID of pppoe process
#   $PIDFILE.pppd  contains PID of pppd process
CF_BASE=`basename $CONFIG`
PIDFILE="/var/run/$CF_BASE-pppoe.pid"
# Do you want to use synchronous PPP?  "yes" or "no".  "yes" is much
# easier on CPU usage, but may not work for you.  It is safer to use
# "no", but you may want to experiment with "yes".  "yes" is generally
# safe on Linux machines with the n_hdlc line discipline; unsafe on others.
SYNCHRONOUS=no
# Do you want to clamp the MSS?  Here's how to decide:
# - If you have only a SINGLE computer connected to the DSL modem, choose
#   "no".
# - If you have a computer acting as a gateway for a LAN, choose "1412".
#   The setting of 1412 is safe for either setup, but uses slightly more
#   CPU power.
CLAMPMSS=1412
#CLAMPMSS=no
# LCP echo interval and failure count.
LCP_INTERVAL=20
LCP_FAILURE=3
# PPPOE_TIMEOUT should be about 4*LCP_INTERVAL
PPPOE_TIMEOUT=80
# Firewalling: One of NONE, STANDALONE or MASQUERADE
FIREWALL=NONE
# Linux kernel-mode plugin for pppd.  If you want to try the kernel-mode
# plugin, use LINUX_PLUGIN=/etc/ppp/plugins/rp-pppoe.so
LINUX_PLUGIN=
# Any extra arguments to pass to pppoe.  Normally, use a blank string
# like this:
PPPOE_EXTRA=""
# Rumour has it that "Citizen's Communications" with a 3Com
# HomeConnect DSL Modem DualLink requires these extra options:
# PPPOE_EXTRA="-f 3c12:3c13 -S ISP"
# Any extra arguments to pass to pppd.  Normally, use a blank string
# like this:
PPPD_EXTRA=""
########## DON'T CHANGE BELOW UNLESS YOU KNOW WHAT YOU ARE DOING
# If you wish to COMPLETELY overrride the pppd invocation:
# Example:
# OVERRIDE_PPPD_COMMAND="pppd call dsl"
# If you want pppoe-connect to exit when connection drops:
# RETRY_ON_FAILURE=no

That's what I have in mine - it may not be necessary, the wiki is ambiguous on the point. It's certainly necessary if using "net-profiles" but may or may not be for net-auto-wireless. I've always added them just in case (it hasn't stopped it working).
However, you *will* need wpa_actiond installed for net-auto-wireless, if you haven't.
The other thing is, as the wiki says:
Note that wpa-config profiles does not work with net-auto-wireless. Convert them to wpa-configsection instead.
So you will probably need to switch your config profile to a configsection one (again, that's what I use and have no issue automatically connecting to any profile networks).

Similar Messages

  • Mac Mini won't connect to internet using Apple products (Safari, iTunes, AppStore). Date and time are frozen to the moment CPU is booted up. Firefox works. Cannot update.

    For the past few days my Mac Mini has been having issues.
    Safari won't connect to internet, but Firefox does.
    Time and date are frozen. Only resets when copmuter is re-booted.
    Unable to update via App Store and iTunes won't connect either.
    Please advise.

    Hi again,
    Let me ask for some better help for you that is familiar with this problem (if in fact it is a similar problem with the IP address and your ISP.
    The other topic concerning this can be found at:
    http://discussions.apple.com/thread.jspa?threadID=2725608
    It is a somewhat lengthy thread but may just apply to your situation.
    Anyways I will see if I can call on some better help for you. Hang in there. Best to arm yourself with enough info before contacting Comcast so they might know what you are dealing with fully.
    littleshouders
    edit: I have posted for some extra help for you that may have a better idea of what's going on if it is your ISP and their modem and how it handles the IP address causing Safari and iTunes not to connect. Hang in there it may take awhile but I'm sure someone will pop in to help.
    Message was edited by: littleshoulders

  • [SOLVED] Wifi won't auto connect on boot - systemd issue?

    I'm using netcfg and have a working profile for a WPA wireless network. Connecting using netcfg from the terminal works reliably.
    However, I can't get automatic wifi connection at boot to work. I've followed the wiki instructions on the netcfg page, but some thing isn't quite right.
    Last in the post is the output from:
    $ systemctl status net-auto-wireless.service
    Could this be some kind of timing / starting order issue with systemd and the network-related services?
    Any ideas anyone?
    net-auto-wireless.service - Provides automatic netcfg wireless connection
    Loaded: loaded (/usr/lib/systemd/system/net-auto-wireless.service; enabled)
    Active: active (running) since Sat, 2013-01-12 20:32:01 CET; 1min 39s ago
    Process: 1142 ExecStart=/usr/bin/netcfg-wpa_actiond $WIRELESS_INTERFACE (code=exited, status=0/SUCCESS)
    CGroup: name=systemd:/system/net-auto-wireless.service
    └─1323 /usr/sbin/wpa_actiond -p /run/wpa_supplicant -i wlan...
    Jan 12 20:32:00 carbon systemd[1]: Starting Provides automatic netcfg wireless connection...
    Jan 12 20:32:00 carbon netcfg-wpa_actiond[1142]: catland
    Jan 12 20:32:01 carbon wpa_actiond[1323]: Starting wpa_actiond session for interface 'wlan0'
    Jan 12 20:32:01 carbon systemd[1]: Started Provides automatic netcfg wireless connection.
    Jan 12 20:32:04 carbon wpa_actiond[1323]: Interface 'wlan0' connected to network 'CATLAND'
    Jan 12 20:32:04 carbon dhcpcd[1402]: version 5.6.4 starting
    Jan 12 20:32:04 carbon dhcpcd[1402]: wlan0: sending IPv6 Router Solicitation
    Jan 12 20:32:04 carbon dhcpcd[1402]: wlan0: sendmsg: Cannot assign requested address
    Jan 12 20:32:04 carbon dhcpcd[1402]: wlan0: broadcasting for a lease
    Jan 12 20:32:08 carbon dhcpcd[1402]: wlan0: send_raw_packet: Network is down
    Jan 12 20:32:08 carbon dhcpcd[1402]: wlan0: sending IPv6 Router Solicitation
    Jan 12 20:32:08 carbon dhcpcd[1402]: wlan0: sendmsg: Network is unreachable
    Jan 12 20:32:12 carbon dhcpcd[1402]: wlan0: sending IPv6 Router Solicitation
    Jan 12 20:32:12 carbon dhcpcd[1402]: wlan0: sendmsg: Network is unreachable
    Last edited by 4ZM (2013-01-14 08:16:17)

    For posterity: the problem seems to be that I hadn't enabled netcfg@<networkprofile>.service with systemd. I had only enabled my wired profile. I.e. doing 'systemctl enable [email protected]' fixed it.
    In short this was a failure to configure netcfg startup with systemd. But hey, that makes it (drum roll...) a sysytemd issue! Like most of the problems one encounters while setting up a computer; it is a configuration issue (i.e. PEBKAC). But hey, thats what the forums are for.
    @Trilby, @WonderWoofy Thank you both for your insightful, constructive and, above all, helpful comments. I hope everyone else coming to this thread for information on why their wifi won't start will find them every bit as useful as I did.

  • EA6500 won't connect PPPoE to CenturyLink Internet Service

    I've got CenturyLink 100Mb home service that came with a Zyxel FR1000Z wireless router and I would much prefer to use my Linksys given it is better, faster, etc however when I set it for PPPoE and enter my username and password it won't connect. I've called their tech support and given it isn't one of their supplied device I get little help. Should be a simple setup and not knowing what the underlying details are the Linksys is using not sure if there is an imcompatibility. Below are the details from CenturyLink if anyone knows if Linksys is using something different or what my problem could be.
    http://internethelp.centurylink.com/internethelp/modem-3rd-party-q.html

    There's no doubt that EA6500 PPPoe works. Otherwise we would see a massive number of post regarding it.
    This is more to help you figure out why PPPoe is not working for you and for this particular ISP hardware combination
    Please remember to Kudo those that help you.
    Linksys
    Communities Technical Support

  • Boot Camp: Windows won't connect to AirPort router

    I got the new AirPort router from Apple in March and since then it's been working perfectly with my Macs as well as on Windows using Boot Camp.
    A few days ago, I switched my AirPort setting to be Wireless-N ONLY so I could see some speed improvement on my Mac. The next time I used Windows, it would not connect to the network, so I then went back to my AirPort settings and switched it back to 802.11 G and N compatible. But both my Windows computers still won't connect.
    Please help me set up the correct options. Thanks.

    I just saw your post - I posted the same thing a little after you did. Did you figure out the problem? I haven't gotten any answers yet to my post.

  • Why my Mac won't connect automaticly to Wifi from boot or when waking from sleep?

    Hi!
    I have 2TB Time Capsule with bridged WiFi.
    When I reboot or wake up my MBP from sleeping it won't connect automaticly to my Home WiFi network. I allways need to connect by hand. This problem has been in the Os X Lion and Os X Mountain Lion.
    Any other WiFi networks don't have this problem, only with Time Capsule.
    Time Capsule has 7.6.1 software and also older software's had this exact same problem
    My MBP is:
    2.3GHz Intel Core i5
    8GB 1333 Mhz DDR3
    And the WiFi chip is:
    Card Type:          AirPort Extreme  (0x14E4, 0xD6) 
    Firmware Version:          Broadcom BCM43xx 1.0 (5.106.98.81.20)
    Does anybody else run in to this kind of problem?
    Oh and everything else with WiFi is working normally (Phones, iPad's etc even PC's =) )

    I was having this same issue with a brand new 2012 MacBook Air after updating to Mountain Lion and using an AirPort Extreme. Most times waking from sleep would result in a lockup as the system would continously try to find my network (the WiFi menu would just keep cycling). After going to 10.8.1 it still continued so I started looking at other possibilities. I noticed that the security setting on my AirPort Extreme (current generation) was set to WPA/WPA2. I changed it to WPA2 and the problem so far (2 days in a row) has gone away.

  • Wifi on Ipad and Iphone won't connect

    I have an iphone 4s and an ipad mini, both updated to iOS 7 and they both will not connect to wifi. They will connect when I am at home or at Starbucks etc., but not while I am at school. My phone did connect at school last year, but has not been able to connect this year. They will both say that I am connected, but when I go to use the internet it says I am not, even though it shows I am. The tech guys at my school have not been able to figure it out. Any ideas?

    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netwhttp://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are droping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    6. Potential Quick Fixes When Your iPad Won’t Connect to Your Wifi Network
    http://ipadinsight.com/ipad-tips-tricks/potential-quick-fixes-when-your-ipad-wonhttp://ipadinsight.com/ipad-tips-tricks/potential-quick-fixes-when-your-ipad-won t-connect-to-your-wifi-network/
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    Fix WiFi Issue for iOS 7
    http://ipadnerds.com/fix-wifi-issue-ios-7/http://ipadnerds.com/fix-wifi-issue-ios-7/
    iOS 6 Wifi Problems/Fixes
    Wi-Fi Fix for iOS 6
    https://discussions.apple.com/thread/4823738?tstart=240https://discussions.apple.com/thread/4823738?tstart=240
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bughttp://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading-http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    iPad: Issues connecting to Wi-Fi networks
    http://support.apple.com/kb/ts3304http://support.apple.com/kb/ts3304
    How to Boost Your Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Boost-Your-Wi-Fi-Signal.h tm
    Troubleshooting a Weak Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/Troubleshooting-A-Weak-Wi-Fi-Sig nal.htm
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    10 Ways to Boost Your Wireless Signal
    http://www.pcmag.com/article2/0,2817,2372811,00.asphttp://www.pcmag.com/article2/0,2817,2372811,00.asp
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxEhttp://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    Some Wi-Fi losses may stem from a problematic interaction between Wi-Fi and cellular data connections. Numerous users have found that turning off Cellular Data in Settings gets their Wi-Fi working again.
    You may have many apps open which can possibly cause the slowdown and possibly the loss of wifi. In iOS 4-6 double tap your Home button & at the bottom of the screen you will see the icons of all open apps. Close those you are not using by pressing on an icon until all icons wiggle - then tap the minus sign. For iOS 7 users, there’s an easy way to see which apps are open in order to close them. By double-tapping the home button on your iPhone or iPad, the new multitasking feature in iOS 7 shows full page previews of all your open apps. Simply scroll horizontally to see all your apps, and close the apps with a simple flick towards the top of the screen.
    Wi-Fi or Bluetooth settings grayed out or dim
    http://support.apple.com/kb/TS1559
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • Since the last updating of the system, my Ipad 2, it won't connect to wifi more than 5 minutes at a time unt

    Since the last updating of the system, my Ipad (model MC769C), it won't connect to wifi more than 5 minutes at a time until I reset the router.  Anyone can help ?

    iOS 6 Wifi Problems/Fixes
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting
    http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet
    http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • IPod touch turns on but won't connect or charge

    I have a 1st gen iPod touch that has suddenly stopped charging and won't connect to my iMac even though I can turn the iPod on and use it without any problems.
    When plugged in via USB it won't mount or connect to iTunes. I tried this via my USB hub and also directly into the back of my iMac. Both the hub and USB port worked with other devices plus I used two different USB cables as well so the problem is with any of those.
    The charging indicator also doesn't appear when I have it plugged it. I even tried it using a Firewire cable into a wall charger. I also tried connecting to my Mac using that Firewire cable and still no luck charging or connecting.
    The connectors must shot on the iPod, it is a 1st gen after all. I just want to make sure I've tried everything to get it back in working order.
    The other thing is that if the connection is shot how can I go about fully wiping the iPod before recycling it if I can't connect to my Mac?
    Thanks.
    Message was edited by: dugost
    P.S. Tried restarting too, no luck there either.

    http://support.apple.com/kb/TS1591
    Basic troubleshooting steps  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101
     In Memory of Steve Jobs 

  • Firefox was working on my new iMac but then, after switching on recently, won't connect to the web – whereas Safari has no problem.

    ===
    Hi
    I bought an iMac a week ago and installed Firefox via Safari. It worked fine for a while but, after a recently switching on, it won't connect to the web whereas Safari has no problems.
    I've tried following the Firefox Help, looking into the iMac firewall, but still no luck.
    I've no idea whether related or not but yesterday I had a system glitch where the iMac stated no wi-fi was installed and only connected via a physical lead to my house router. Also, there was no sound output via Safari. However, after booting up today all seems well – apart from Firefox still not working. It loads the start page but can't access the web.
    I have Little Snitch running, and wonder if that's the culprit... but it's working fine with Safari, seemingly.
    (Finally, how do I stop a dialogue box appearing on start-up saying that "To open “X” you need a Java runtime. Would you like to install one now?)
    Any ideas anyone?
    Cheers
    Rob / Sheffield / UK
    ===

    On the wireless networks that your Mac has had trouble connecting to, do you know which Wireless Security type (WEP, WPA, or WPA2) is being used?
    If it is WEP, one of the problems is that the actual standard relies on a 10 character HEX key for 40bit WEP and a 26 character HEX key for 128bit WEP.   In order to make things easier, vendors use certain algorithms to convert simple alphanumeric passwords (or passphrases) into HEX keys, thus enabling the use of simple easy to remember WEP password rather than lengthy HEX keys. The problem is that different vendors use different algorithms to generate the HEX key and therefore a ASCII password on an AEBS will be hashed differently on a non-Apple client and vice versa.   You may find the following Apple Support article helpful.

  • My iPad first gen (iOS5.1.1) won't connect to my home WiFi suddenly. It's worked fine for years but just stopped. All other devices do connect to the WiFi. Now, the iPad does connect to the WiFi at my workplace. Ideas on this?

    My iPad (first generation iOS5.1.1.1) quit connecting to my home WiFi recently after years of being able to. All other devices in my home connect fine. I have taken every step I can find to try and remedy things including restoring my iPad to factory settings. Still nothing - when it tries to connect to my network it just spins. I took my iPad to work and it connected to the WiFi there just fine. Came back home, no good. After talking with my local Mac supplier they've suggested that maybe my router is the cause. I've unplugged it several times for lengths of up to an hour but that still isn't getting things working again. Any ideas?

    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are droping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    6. Potential Quick Fixes When Your iPad Won’t Connect to Your Wifi Network
    http://ipadinsight.com/ipad-tips-tricks/potential-quick-fixes-when-your-ipad-won t-connect-to-your-wifi-network/
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    Wi-Fi Fix for iOS 6
    https://discussions.apple.com/thread/4823738?tstart=240
    iOS 6 Wifi Problems/Fixes
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    How to Boost Your Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Boost-Your-Wi-Fi-Signal.h tm
    Troubleshooting a Weak Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/Troubleshooting-A-Weak-Wi-Fi-Sig nal.htm
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • Kyocera 1320 D won't connect

    I was using my Kyocera 1320 d just fine.  Now, I went to print a document, and the computer won't connect to the printer.  In the system preferences, it won't even appear.  I restarted it, deleted the old printer, reinstalled the drivers.  I can't even add it as a new printer.
    Thanks in advance,
    Leland

    Hi Leland, is it USB or Wifi?
    Last same problem on USB was a bad USB cable.
    Mac OS X: About the Reset Printing System feature ...
    http://support.apple.com/kb/HT1341?viewlocale=en_US
    10.5/10.6/10.7 instructions...
    In System Preferences>Fax & Print, Right click or Control+click on the Printers list Sidebar, choose Reset Printing System.
    if you hold option and click the "-" tab it resets the printing system.
    http://www.macosxhints.com/article.php?story=20031215144430486
    Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions.
    Any devices that previously appeared in your Printer List and Fax List will need to be added again after resetting the printing system.
    Resetting the printing system in Mac OS X 10.5.x+++
    To use the Reset Printing System feature in Mac OS X 10.5.x, follow these steps:
    Choose System Preferences from the Apple menu.
    Choose Print & Fax from the View menu.
    Control-click on list of printers on the left side of the window, then choose "Reset printing system" from the contextual menu. If you don't see a list of printers, Control-click on the text "Click + to add a printer or fax" and select "Reset printing system..."
      As an alternative, if you currently have one or more printers listed, you can Option-click the "-" (Remove printer) button.
    http://support.apple.com/kb/ht1341
    Reboot.

  • Replacing an Airport Express with a Time Capsule but it won't connect to the internet.

    Hello, I hope somebody can help.
    I am trying to replace an Airport Express with a 2TB Time Capsule but it won't connect to the internet, via an ADSL modem.
    I have tried everything I can think of, powering down all devices, re-setting all devices, but nothing seems to solve the problem.
    When I first tried to set up the Time Capsule, there was an option to replace the Airport Express using the same settings.
    But there were repeated error messages of 'No DNS Servers' and 'PPPoE server couldn't be found'.
    I also had messages that the password for PPPoE wasn't correct, but when I plug the Airport Express back in again, everything works fine.
    What could the problem be?

    99% of issues with authentication are wrong password or wrong username.. eg it can be strange like the user name is missing the domain.. whereas the Airport Express works fine without it.
    Ring your ISP and make doubly sure you have exactly the correct username and password.
    If it still doesn't work, put the adsl modem back into router mode and try it again directly on the modem.. if it works ok on the modem but fails on the TC that is possible and can be caused by pppoe client using incorrect authentication type, CHAP or PAP which the TC does not allow you to select AFAIK.. some ISP do not give enough time to get the router to switch on auto to the correct authentication method.
    In the end run the modem as router and bridge the TC. It will work just as well for most installations in bridge as the modem in bridge.

  • After lion 10.7.3 update messed my mac had to restore from time machine now Outlook won't connect with microsoft exchange, any idea?

    after lion 10.7.3 update messed my mac had to restore from time machine now Outlook won't connect with microsoft exchange, any idea?

    I've had a similar problem.  On my first boot up after installing 10.7.4,  Firefox would not open.  Crashed every time.  Safari was not affected.  I have no idea if it was related to the flash plugin, but I did install a the latest version of that a couple of weeks ago. 
    Here's what fixed it: a second boot up.

  • IMac won't go past apple screen, keyboard won't connect

    I cannot get my iMac to boot up past the apple screen with the loading circle. I would try booting up while holding the command and R keys or those other options, but my computer stopped working the one time my keyboard died and I had to change the batteries. Now it won't connect, and therefore will not register me holding down any keys. Are there any other options?

    Restart the computer while holding down the C key. This will take several minutes to start up as it trying to start from the Install Disc. If you still cannot get it started call AppleCare immediately, the phone number is in your manual or you can
    look it up here.
    Roger

Maybe you are looking for