DynDns mudam indo para uma página web (http) no terminal

0

Eu tenho um ISP com o serviço DynDns, onde devo fazer o servidor usar http para se comunicar com os servidores DynDns no ISP. É assim:

https://[username]:[password]@dyndns.myisp.com/nic/update?hostname=[host]&myip=[ip] 

Agora aqui está o meu problema: eu não sei como fazer o meu servidor "usar" este comando http para alterar o IP. Quer dizer, eu sei sobre cronjobs e como fazer um script bash simples, mas não sei qual comando usar para fazer minha máquina "visitar" esta página.

    
por fnadde42 12.06.2014 / 18:34

1 resposta

1

Normalmente, um servidor faz exatamente isso, ele serve, supondo que você esteja falando sobre um servidor HTTP.

Na maioria dos casos, o roteador - modem DSL é responsável por fazer essas coisas. Verifique o seguinte, que pode se aplicar à sua situação:

Usuários domésticos típicos adquirem endereços IP dinâmicos de seus ISPs quase sempre que se conectam à Internet ou quando o contrato termina.

Quando esse usuário quiser hospedar um servidor doméstico disponível para a Internet, escolha entre duas soluções:

  • Pagar por um IP estático
  • Encontrar um serviço de DNS dinâmico

Ao usar a segunda solução, as seguintes ações se aplicam:

  1. O usuário mantém a natureza dinâmica dos IPs
  2. O usuário informa o serviço de DNS dinâmico cada vez que um novo IP dinâmico é atribuído a ele.
  3. O serviço de DNS dinâmico mapeia o IP do usuário para um URL.

A segunda parte do processo acima geralmente é feita pelo ueser 'router - modem DSL ou por um aplicativo daemon (serviço) em execução no computador - servidor do usuário. O serviço efetua login no provedor de DNS dinâmico e informa o provedor sobre o endereço IP atual do usuário.

Para concluir a tarefa acima, primeiro examine as configurações do modem do seu roteador - DSM, que é o método mais simples e limpo. Se o modem não suportar esse recurso, consulte o ISP se ele fornecer um aplicativo para a tarefa. Por fim, execute um script no servidor sempre que um novo IP for adquirido ou a cada n minutos (normalmente não menos de 10 minutos).

Exemplos de vários métodos para informar ao Serviço de DNS Dinâmico que um novo IP foi adquirido:

#! / bin / bash

#################################################################
## ChangeIP.com bash update script                             ##
#################################################################
## Written 3/18/09 by Tom Rinker, released to the Public Domain##
#################################################################
## This is a simple bash script to preform a dDNS update with  ##
## ChangeIP.com. It uses only bash and wget, and so should be  ##
## compatible with virtually any UNIX/Linux based system with  ##
## bash. It is intended to be executed as a cron job, and      ##
## will only execute an update of dDNS records when the IP     ##
## address changes. As ChangeIP.com dDNS records have a 5 min  ##
## Time-To-Live, it is basically pointless and wasteful to     ##
## execute it more often than every 5 minutes. This script     ##
## supports logging all activity, in 3 available log levels,   ##
## and supports simple management of log file size.            ##
#################################################################
## To use this script:                                         ##
## 1) set the variables in the script below                    ##
## 2) execute the script as a cron job                         ##
#################################################################
## WARNING: This script has two potential security holes.      ##
## First, the username and password are stored plaintext in    ##
## the script, so a system user who has read access to the     ##
## script could read them. This risk can be mitigated with     ##
## careful use of file permissions on the script.              ##
## Second, the username and password will show briefly to other##
## users of the system via ps, w, or top. This risk can be     ##
## mitigated by moving the username and password to .wgetrc    ##
## This level of security is acceptable for some installations ##
## including my own, but may be unacceptable for some users.   ##
#################################################################

################ Script Variables ###############################
IPPATH=/var/log/IP                    # IP address storage file
TMPIP=/tmp/tmpIP                      # Temp IP storage file
LOGPATH=/var/log/changeip.log         # Log file
TEMP=/tmp/temp                        # Temp storage file
CIPUSER=                              # ChangeIP.com Username
CIPPASS=                              # ChangeIP.com Password
CIPSET=1                              # ChangeIP.com recordset
LOGLEVEL=2                            # 0=off,1=normal,2=verbose
LOGMAX=500                            # Max log lines, 0=unlimited
#################################################################

# get current IP from ip.changeip.com, and store in $TEMP
wget -q -U "rinker.sh wget 1.0" -O $TEMP ip.changeip.com

# parse $TEMP for the ip, and store in $TMPIP
grep IPADDR < $TEMP | cut -d= -s -f2 | cut -d- -s -f1 > $TMPIP

# compare $IPPATH with $TMPIP, and if different, execute update
if diff $IPPATH $TMPIP > /dev/null
  then                                # same IP, no update
      if [ $LOGLEVEL -eq 2 ]
        then                          # if verbose, log no change
          echo "--------------------------------" >> $LOGPATH
          date >> $LOGPATH             
          echo "No Change" >> $LOGPATH
          echo -e "IP: \c" >> $LOGPATH
          cat $IPPATH >> $LOGPATH
      fi
  else                                # different IP, execute update
      wget -q -U "rinker.sh wget 1.0" -O $TEMP --http-user=$CIPUSER --http-password=$CIPPASS "https://nic.changeip.com/nic/update?cmd=update&set=$CIPSET"
      if [ $LOGLEVEL -ne 0 ]
        then                          # if logging, log update
          echo "--------------------------------" >> $LOGPATH
          date >> $LOGPATH             
          echo "Updating" >> $LOGPATH
          echo -e "NewIP: \c" >> $LOGPATH
          cat $TMPIP >> $LOGPATH
          if [ $LOGLEVEL -eq 2 ]
            then                      # verbose logging
              echo -e "OldIP: \c" >> $LOGPATH
              cat $IPPATH >> $LOGPATH
              cat $TEMP >> $LOGPATH   # log the ChangeIP.com update reply
          fi
      fi
      cp $TMPIP $IPPATH               # Store new IP
fi

# if $LOGMAX not equal to 0, reduce log size to last $LOGMAX number of lines
if [ $LOGMAX -ne 0 ]
  then
      tail -n $LOGMAX $LOGPATH > $TEMP
      cp $TEMP $LOGPATH
fi
    
por Stef K 13.06.2014 / 08:03