There are several ways to automate the dynamic update process on a Mac. Here are the two most common and simple ways to set it up. We recommend using the Terminal method because it's quicker to set up and works regardless whether the user is logged in or not. GUI way takes a little longer and only works when the user is logged in, however is more user friendly if you are not comfortable with the terminal.

1. Terminal

  1. Open 'Terminal.app' from Applicatinos -> Utilities folder.
  2. Type the following command
  3. env EDITOR=nano crontab -e
  4. Add the following line. Make sure you replace the token with a real 20 character token from your control panel. 30 means your IP will be updated every 30 minutes. Please follow crontab guide here for correct format if you need to change the time.
  5. */30 *   * * *   curl -k -X PUT -d "" https://entrydns.net/records/modify/TOKEN
  6. Press 'ctrl + x' on your keyboard, then 'Y' and 'Enter'. That's it.

2. GUI

  1. Download 'Update entryDNS' script from here.
  2. Open the file with 'Script Editor.app' located in Applications -> Utilities folder.
  3. Replace the TOKEN with a real 20 character token from your control panel. You can also change the update frequency (in seconds) by editing the number next to return.
  4. Go to 'File' -> 'Export'. Choose File Format 'Application' and tick 'Stay open after run handler'.
  5. Go to 'System Preferences' -> 'Users & Groups' -> 'Login items' and add 'Update entryDNS' so it starts when you log in.
  6. (Optional) If you like to remove the dock icon, right-click Update entryDNS.app in Applications folder and choose 'Show package contents.' Open Info.plist with TextEdit and add the following two lines after "<dict>".
    <key>LSUIElement</key>
                <string>1</string>
Back to Help & Support