This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

FYI: DynDNS / dyn.com policy change

I received an email from dyn.com (aka dyndns.org et al); apparently they're going to free require users to manually login every month or they will expire accounts.

Starting now, if you would like to maintain your free Dyn account, you must log into your account once a month. Failure to do so will result in expiration and loss of your hostname. This activity helps us eliminate hostnames that are no longer needed and/or dormant. Note that using an update client will no longer suffice for this monthly login.


(emphasis mine)

Barry


This thread was automatically locked due to age.
Parents
  • version 9.103005

    I had to change the following in order not to get any errors in the script
    1. the path for me is #!/bin/bash
    2. I had to add more "xx" (2 more) to the COOKIE/OUTPUT command  (The forum replaces the XX with * )
    COOKIE=`mktemp --tmpdir="/tmp" -t ${PROGNAME}_cookie_******X`
    OUTPUT=`mktemp --tmpdir="/tmp" -t ${PROGNAME}_output_******X`


    3. There was an extra space on the curl command and that's why I got the error before

    I am still getting the "https not supported or disabled in libcurl" error message. Removing the space before the  https://URL (as below)
    curl -s -k --location -A "$USERAGENT" -b $COOKIE -c $COOKIE -o $OUTPUT \--data "username=$USERNAME&password=$PASSWORD&iov_id=&sub mit=Log+in&multiform=$MULTIFORM" \https://account.dyn.com/
     did the trick

    output

     ./test.sh
      % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                     Dload  Upload   Total   Spent    Left  Speed
    101 11681    0 11681    0   111  17364    165 --:--:-- --:--:-- --:--:-- 17364
    Login successful
Reply
  • version 9.103005

    I had to change the following in order not to get any errors in the script
    1. the path for me is #!/bin/bash
    2. I had to add more "xx" (2 more) to the COOKIE/OUTPUT command  (The forum replaces the XX with * )
    COOKIE=`mktemp --tmpdir="/tmp" -t ${PROGNAME}_cookie_******X`
    OUTPUT=`mktemp --tmpdir="/tmp" -t ${PROGNAME}_output_******X`


    3. There was an extra space on the curl command and that's why I got the error before

    I am still getting the "https not supported or disabled in libcurl" error message. Removing the space before the  https://URL (as below)
    curl -s -k --location -A "$USERAGENT" -b $COOKIE -c $COOKIE -o $OUTPUT \--data "username=$USERNAME&password=$PASSWORD&iov_id=&sub mit=Log+in&multiform=$MULTIFORM" \https://account.dyn.com/
     did the trick

    output

     ./test.sh
      % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                     Dload  Upload   Total   Spent    Left  Speed
    101 11681    0 11681    0   111  17364    165 --:--:-- --:--:-- --:--:-- 17364
    Login successful
Children
No Data