Can't connect to the internet right after boot up

Hey guys, I have an interesting problem in which if I try to use internet right after boot up (via scripts) I can't resolve host names. However, if I try to use the internet right after boot up manually I can resolve host names. I had this problem with a script but I've since rewrote it to work around the problem; however I now seem to have this problem with openVPN and I need this to work. I'll use openVPN as my primary example but the situation was the same for my script.
Basically, openVPN starts up via systemd and it can't resolve my server's host name. Even 18 hours later. I have 'resolv-retry infinite' in my conf file which as I understand says 'if you can't resolve the host name keep trying to resolve it indefinitely'. I left my computer on overnight and openVPN still could not connect to my server, despite me being able to ping it, have MySQL get data dumps and replicate from it and other software being able to resolve the server's host name. If I restart openVPN, then it works! I rebooted the computer and let it try for a few minutes to connect and it couldn't. I restarted openVPN manually and it resolved the server's host name, 5 minutes after the computer booted up even though it couldn't connect on it's own the previous night.
Here's openVPN's status as of this post:
[email protected] - OpenVPN connection to client
Loaded: loaded (/usr/lib/systemd/system/[email protected]; enabled)
Active: active (running) since Thu 2013-05-02 14:10:02 MDT; 58min ago
Process: 248 ExecStart=/usr/sbin/openvpn --cd /etc/openvpn --config /etc/openvpn/%i.conf --daemon openvpn@%i (code=exited, status=0/SUCCESS)
Main PID: 254 (openvpn)
CGroup: name=systemd:/system/[email protected]/client
ââ254 /usr/sbin/openvpn --cd /etc/openvpn --config /etc/openvpn/client.conf --daemon openvpn@client
May 02 15:07:52 CCH001 openvpn@client[254]: RESOLVE: Cannot resolve host address: my.server.com: Name or service not known
May 02 15:07:57 CCH001 openvpn@client[254]: RESOLVE: Cannot resolve host address: my.server.com: Name or service not known
May 02 15:08:02 CCH001 openvpn@client[254]: RESOLVE: Cannot resolve host address: my.server.com: Name or service not known
May 02 15:08:07 CCH001 openvpn@client[254]: RESOLVE: Cannot resolve host address: my.server.com: Name or service not known
May 02 15:08:12 CCH001 openvpn@client[254]: RESOLVE: Cannot resolve host address: my.server.com: Name or service not known
May 02 15:08:17 CCH001 openvpn@client[254]: RESOLVE: Cannot resolve host address: my.server.com: Name or service not known
May 02 15:08:22 CCH001 openvpn@client[254]: RESOLVE: Cannot resolve host address: my.server.com: Name or service not known
May 02 15:08:27 CCH001 openvpn@client[254]: RESOLVE: Cannot resolve host address: my.server.com: Name or service not known
May 02 15:08:32 CCH001 openvpn@client[254]: RESOLVE: Cannot resolve host address: my.server.com: Name or service not known
May 02 15:08:37 CCH001 openvpn@client[254]: RESOLVE: Cannot resolve host address: my.server.com: Name or service not known
Here is my conf file:
# Sample client-side OpenVPN 2.0 config file #
# for connecting to multi-client server. #
# This configuration can be used by multiple #
# clients, however each client should have #
# its own cert and key files. #
# On Windows, you might want to rename this #
# file so it has a .ovpn extension #
# Specify that we are a client and that we
# will be pulling certain config file directives
# from the server.
client
# Use the same setting as you are using on
# the server.
# On most systems, the VPN will not function
# unless you partially or fully disable
# the firewall for the TUN/TAP interface.
;dev tap
dev tun
# Windows needs the TAP-Win32 adapter name
# from the Network Connections panel
# if you have more than one. On XP SP2,
# you may need to disable the firewall
# for the TAP adapter.
;dev-node MyTap
# Are we connecting to a TCP or
# UDP server? Use the same setting as
# on the server.
;proto tcp
proto udp
# The hostname/IP and port of the server.
# You can have multiple remote entries
# to load balance between the servers.
remote my.server.com 1194
;remote my-server-2 1194
# Choose a random host from the remote
# list for load-balancing. Otherwise
# try hosts in the order specified.
;remote-random
# Keep trying indefinitely to resolve the
# host name of the OpenVPN server. Very useful
# on machines which are not permanently connected
# to the internet such as laptops.
resolv-retry infinite
# Most clients don't need to bind to
# a specific local port number.
nobind
# Downgrade privileges after initialization (non-Windows only)
user nobody
group nobody
# Try to preserve some state across restarts.
persist-key
persist-tun
# If you are connecting through an
# HTTP proxy to reach the actual OpenVPN
# server, put the proxy server/IP and
# port number here. See the man page
# if your proxy server requires
# authentication.
;http-proxy-retry # retry on connection failures
;http-proxy [proxy server] [proxy port #]
# Wireless networks often produce a lot
# of duplicate packets. Set this flag
# to silence duplicate packet warnings.
;mute-replay-warnings
# SSL/TLS parms.
# See the server config file for more
# description. It's best to use
# a separate .crt/.key file pair
# for each client. A single ca
# file can be used for all clients.
ca ca.crt
cert host.crt
key host.key
# Verify server certificate by checking
# that the certicate has the nsCertType
# field set to "server". This is an
# important precaution to protect against
# a potential attack discussed here:
# http://openvpn.net/howto.html#mitm
# To use this feature, you will need to generate
# your server certificates with the nsCertType
# field set to "server". The build-key-server
# script in the easy-rsa folder will do this.
ns-cert-type server
# If a tls-auth key is used on the server
# then every client must also have the key.
tls-auth ta.key 1
# Select a cryptographic cipher.
# If the cipher option is used on the server
# then you must also specify it here.
;cipher x
# Enable compression on the VPN link.
# Don't enable this unless it is also
# enabled in the server config file.
comp-lzo
# Set log file verbosity.
verb 3
# Silence repeating messages
;mute 20
Anyone have any idea what could be going on? It seems to me that when a program starts up it takes a snap shot of the current network status and it then uses it, even if it's 10 minutes later and the network has been fully loaded/configured, the program uses that snap shot and can't connect to the DNS.
Last edited by anEveryDayGuy (2013-05-02 21:20:47)

'Requires=network.target' wasn't in it so I added it but nothing's changed. I've left it in because openVPN does require network.
As I said, I had this problem with a script so I don't think it's anything specific to openVPN. I had a weird occurrence this morning however. When I started the computer up this morning  openVPN worked just fine. However when the computer rebooted openVPN couldn't resolve the host address again.

Similar Messages

  • Firefox can't connect to the internet even after trying all solutions from firefox support.

    Since Firefox added a pluging or update, every time I open Firefox, it gives me an error message that says unable to connect. I have tried everything in the Firefox support page and, the problem has not been solved. I am currently using IE and, it's working fine.

    You didn't specifically mention what you have tried or which support articles you have read. The largest problem after a Firefox program update is a Firewall blocking the updated Firefox executable. <br />
    See the instructions for the Firewall in use on your PC. <br />
    http://support.mozilla.com/en-US/kb/Firewalls

  • Applications can't connect to the Internet

    Hello,
    I have problem with my Nokia  5800 XM. Some of my applications can't connect to the internet. After I run them and allow them to connect it says that I have bad internet settings, which are fine because I can use web browser and Skype. Please help me because I'm really desperate, after I tried resetting my internet settings several time I even tried to reinstall software and it still doesn't work.
    Thank you

    What are the apps?
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • After update I can't connect to the internet in no way, shape or form

    I rarely update because: 1) something always breaks when you update (like now) and 2) I don't like to deal with new crap like GNOME 3. Anyway:
    I bought a new router (TL-WR1043N) and configured it with an old Ubuntu because connecting to 192.168.1.1 didn't work on any of my Arch Linux installations. Now... here's where it all starts... I can't use the 'n' wireless on my laptop since I have to install something to use WPA, and to install that I need to update, but I don't want to deal with GNOME 3 and Firefox >3. But I gave up eventually gave up and connected my laptop to the router by Ethernet cable. Setting that up was very easy: 'ifconfig eth0 up; dhcpcd'. Voila! I updated my whole system and restarted. To see how badly I damaged my system I opened Nautilus (I use Openbox with some GNOME programs): shock and dismay, the fonts are visible from the moon. I guess I'll have to quit using GNOME programs completely now but I expected that. I used to use KDE back in the day and when KDE4 came forth from that unholy pit, I immediately abandoned it for GNOME. This time we had more time to prepare, everybody knew what GNOME 3 was going to be. I started using Openbox quite a long time ago.
    Anyway: Now to fix my wireless right? WRONG! I can't connect to the internet on cable to get the packages for wireless. I installed Windows 7 64 on the same laptop and it connects to the cable. Ubuntu 9.10 Live also connects, but due to the changes of rc.conf and network stuff I can't connect at all with Arch Linux.
    So I decided to abandon it completely and reinstall from scratch. But the Live CD also doesn't work. With all the ways I've tried it all comes down to this:
    dhcpcd always times out waiting for a carrier and 'ip addr' shows 'eth0: <NO-CARRIER, ....' if the interface is up. I'm not sure what information I should give you, but I can't paste any here since I can't connect to the damn internet on that laptop.
    About the router: the cable is plugged on port 1 and the LED for it flashes if I reboot the computer. In Windows it stops flashing while it connects and flashes again when connected. I removed 'network' from DAEMONS and it flashes till I start it with '/etc/rc.d/network start'. This hangs for a while and returns '[DONE]' even though it doesn't work and the LED never flashes again on the router.
    In rc.conf I have exactly what the example says for DHCP. In any case, it doesn't work with the Live CD either.
    EDIT 1: From lscpi: painstakingly typed:
    06:00.0 Network controller: Intel Corporation PRO/Wireless 4965 AG or AGN [Kedron] Network Connection (rev 61)
    07:00.0 Ethernet controller: Realtek Semiconducctor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 01)
    EDIT 2: Just to be clear: I can use the wireless on the laptop on the Live CD, but I want to use the cable because of the greater speed (94Mbit/s on cable 60 something on wireless n, 20 something on g) and because I rarely move the laptop.
    EDIT 3: lspci -v shows "Kernel driver in use: r8169   /   Kernel modules: r8169", so the driver is loaded.
    EDIT 4: So if I boot from the CD. ip addr shows:
    eth: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN qlen 1000
        link/ether 00:1d:92:...etc... brd ff:ff:ff:ff:ff:ff
    And  the LED flashes. When I type: "ifconfig eth0 up" it stops, never to light up again and ip addr shows: "eth: <nO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state DOWN qlen 1000
    Last edited by imtired (2011-09-08 12:36:51)

    When you're in Arch, use output redirection
    lspci >lspci.out
    then boot into Ubuntu or something where you can access the files and the BBS,  Of course, don't forget to use a new file for each command output.
    The new network config in rc.conf is not that complicated (wired anyway; never used wireless).  OTOH I've had issues on two machines where I have to restart the network daemon (rc.d restart network) or rerun netcfg (netcfg eth0) after boot to get connectivity. And I still haven't come to grips with the ip command.

  • Software Update can't connect to the internet after a new install of 10.6

    I had a clean install of 10.6 and after that the Software Update can't connect to the internet (the status bar hangs at the beginning and finally it prompts me the internet is not connected) while all my other applications can.
    Someone help me out?

    I am having exactly the same problem as well.. has anybody managed to solve this yet? I have uploaded Snow Leopard - try to connect to Software Update - the menu bar scans a little then stops and then an error saying 'Not connected to the internet'' but the connection is working fine!!
    Is this a SL issue? or just an overload with the Software Update programme? I cant do anything - no update for itunes/iphone software, etc.. most annoying.
    Look forward to seeing some good news and some answers to this one.
    Cheers
    Linda

  • After downloading IOS 8.0.2 I can not connect to the internet, any solutions?

    After downloading IOS 8.0.2 I can not connect to the internet, any solutions?

    It is not the wording but the lack of detail.
    The iPhone connects to both the phone network (3G, LTE, etc) and to WiFi networks.  Which one (or both) are you having issues with?
    If it is the phone network, go to Settings->Cellular and see if Cellular data is turned on globally AND for the apps you wish to use.
    If it is a WiFi network, go to Settings->Wi-Fi and see if you are connected to a network.  If so, touch the circled "i" next to the network name and see that you have a valid IP address, etc. (take a screen shot and post it if you don't know what to look for).

  • After updating my mac from snow leopard to mountain lion, i can not connect to the internet anymore

    After updating my mac book pro from snow leopard to mountain lion, i can not connect to the internet anymore ;(
    Anyone know what is wrong with it??
    Is something wrong with mountain lion or the wifi itself????
    HELP PLEASE!!
    I need to use the internet desperately but i cant...
    Thank you so much xxx

    Hi galleryskins,
    The article below may be able to help you with this issue.
    Click on the link below to see more details and screenshots. 
    I've quoted some helpful highlights for you:
    OS X Mountain Lion: Zoom content on the screen
    Zoom with a mouse or trackpad
    To zoom in and out, hold down the modifier key you specified while you perform the scroll gesture.
    For example, if you have a trackpad and used the default settings, zoom in by holding down the Control (^) key while you drag two fingers up on the trackpad. Zoom out by holding down the Control key while you drag two fingers down on the trackpad.
    If you chose Picture-in-picture zooming, a window appears near the mouse cursor with the magnified image. If you chose Fullscreen zooming, the entire screen displays the magnified image.
    I hope this information helps ....
    Have a great day!
    - Judy

  • HT1688 My husband's iphone can't connect to the App store after he updated to ios.7.  He updated it yesterday and he has had problems since.  He gets a message that the iphone can't connect to the app store and he has internet connection.  Please help.

    My husband's iphone can't connect to the app store after updated his phone to ios.7. and has internet connection.

    Any update will cause problems for a few users. And those users will rush here and post "the sky is falling" stories about their experience. The 99.99% of people who have no problems after an update won't bother to post here; indeed, most of them don't even know ASC exists. FWIW, I had no problems with iOS 7 on my 4S. Your problem is most likely not related to iOS 6, but you should probably update anyway. For addressing the battery issue see this outstanding article: http://www.overthought.org/blog/2014/the-ultimate-guide-to-solving-ios-battery-d rain

  • I put the BT WiFi app on my iPad Mini and now I can't connect to the internet.  Please help

    I put the Bt WiFi app on my iPad Mini  and now I can't connect to the internet.  Please Help

    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/
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    Fix WiFi Issue for 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=240
    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
    10 Ways to Boost Your Wireless Signal
    http://www.pcmag.com/article2/0,2817,2372811,00.asp
    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.
    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

  • Can't connect to the internet though my iMac thinks everything is fine

    I got my iMac connected to a router which is connected to a DSL-modem. I had this up and running for a year until I needed the router for something else and then put it back in place.
    Now I can't connect to the internet. I got a green dot for my network settings, I got a plausible IP, the router's IP is filled in correctly. When I run the assistant it tells me that there are no problems connecting to the ethernet.
    I tried switching routers, I restarted both the router and the modem (and the iMac of course), I tried entering the IP-adress manually... nothing works.
    And by the way; my old b/w G3 works just fine at the same cable. Both computers got the same settings in the network panel, but obviously something does differ, but what?
    And by the second way, I had my iMac at the workshop which charged me for checking it since it doesn't have any hardware problem.
    HELP!
    Thanks in advance! Daniel

    Naa, I really don't know any longer what to do. Now I'm sitting with my old laptop at the same cable after replacing DSL-splitter, DSL-modem, the router including power supplies, I even cut the contacts and fixed new ethernet-plugs. Works fine with this PC, works fine with the G3, and it just won't work with the iMac.
    Last chance: I'm gonna try with WLAN, probably there's something wrong with the ethernet adapter even though this repair dude couldn't find anything.
    *E D I T*
    Japp, airport is working just fine. This means that there's something wrong with my iMac, right? I'm gonna take it to my job on monday and try to connect to the LAN there, then we're gonna see.

  • Can't connect to the internet

    Ok. so i did a search and didn't come across any other problems like the one I'm having.
    Let me start off by stating that my laptop is an ibook g4 bought feb, '06 (yes the apple care just ran out).
    I'm having a problem connecting to the internet on my ibook, running through a d-link wireless router. I'm using my imac to connect to the internet currently (which works fine by the way). It also is connected through the wireless router.
    My ibook has a strange ailment. I open up Safari and all I get is a blank screen, the page is trying to load but the status bar is going no where and does the same in Firefox. So first, I opened Network diagnostics, but the computer freezes and I have to do a hard shutdown. (holding the power button). Next, I tried Disk utility. Verified Permissions, Repaired Permissions, everything is fine. I tried to Verify Disk, and again the computer freezes, will not let me force quit and I am forced to do another hard shutdown. I do the thing where you hold down some key while you're starting up to get into the disk utility so I can repair the disk. This returns clean as well. I downloaded techtool off of my Applecare disk. Did the tests, everything passes. So what's the deal?? I've tried to reset the pram. I even did the Apple Hardware test, everything passed.
    I thought it could be my Airport card? It recognizes that there is an internet connection in the top right corner, I even have great signal strength (mostly because I've tried this sitting right next to the router). But still, I can't connect to the internet. Any one have any ideas? I don't know what else to try! Please help!

    so i can't believe i didn't try to connect it directly to the router with the ethernet cord. This actually worked. But it still didn't solve my wireless problem. I'm not willing to let my laptop become a desktop. I'm already wired to a plug b/c the battery is slowly dying and has a life of about 5 minutes. I'm not willing to give up my wireless internet too.
    I guess now it's got to be the airport card? how do I confirm this? and if it is how much would a new one cost and can I install it myself??

  • Some of my Mac apps can´t connect to the internet, while Firefox can

    All of a sudden, Safari, ITunes, Software Update, can´t connect to the internet.  It happens in my office and in my house.  Have not checked other networks.  Firefox wors fine, as does Mail (for now).  What can be the problem?

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins and log in as Guest. For instructions, launch the System Preferences application, select Help from the menu bar, and enter “Set up a guest account” (without the quotes) in the search box.
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    As Guest, test. Same problem(s)?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. The instructions provided by Apple are as follows:
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup tone, hold the Shift key. The Shift key should be held as soon as possible after the startup tone, but not before the tone.
    Release the Shift key when you see the gray Apple icon and the progress indicator (looks like a spinning gear).
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on some Macs.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem(s)?
    After testing, reboot as usual (i.e., not in safe mode.) Post the results of steps 1 and 2.

  • Was always working and today I get a message that it can not connect to the internet. Internet Exployer works fine. So, I tried uninstalling the program and reinstalled. Still did not work. check out the proxy and firewall no problems there.

    I get a message can not connect to the internet when trying to open Mozzila Firefox. It was working fine until my internet service went down. Once back up it was not working. I have tried installing and uninstalling the browser. I have looked at the firewall and proxy on my computer. Still not working Internet Exployer works fine. Deleted all cookies also.

    Did you check your security software (firewall)?
    A possible cause is security software (firewall) that blocks or restricts Firefox without informing you about that, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox.
    See [[Server not found]] and [[Firewalls]] and http://kb.mozillazine.org/Firewalls

  • Why is my wi-fi signal is going strong, but I can't connect to the internet?

    Before I begin, here's my set-up:
    My wi-fi signal (on the top right side of my MacBook) is going strong (with all the bars). And a green light is lit up on my Airport Extreme. For some reason, I still can't connect to the internet/use Apple Mail/use iChat. I don't think that there's anything wrong with my MacBook, as my wife isn't able to connect to the internet with her iPad or with her laptop either.
    I'm thinking that I have the strong wi-fi signal showing up on my computer because it actually is connecting to the Airport Extreme, yet the airport extreme somehow isn't connected to or isn't able to connect to the router. Would this be correct? Any ideas of how I might fix this? I tried unplugging and replugging everything for a few seconds. However, whenever I use a hardwire ethernet connection to my MacBook, my internet and everything works.
    ALSO, of note, I just purchased an Apple Time Capsule. I just realized that it functions as a wi-fi base. Any chance that my computer, my wife's iPad and laptop are just connecting to the Time Capsule instead of the Airport Extreme?
    Any answers would be more than appreciated. Thanks!

    Deselect Proxies if selected.
    Safari > Preferences > Advanced > Proxies:
    Click "Change  Settings" button
    The network preferences window for Proxies will will show up with "Proxies"
    tab selected.
    Under "Select Protocol", uncheck any box if selected.
    Click "OK", then  "Apply"

  • My wi fi icon has disappeared from my toolbar and I can't connect to the internet

    My wi fi icon has disappeared from my toolbar and I can't connect to the internet.  How can I fix it?

    In System Preferences > on the left panel, click the + sign (bottom right) to add a new Wi-Fi service then set it up.

Maybe you are looking for