ddclient funzt nicht

Einrichten des lokalen Netzes, Verbindung zu anderen Computern und Diensten.
Antworten
Hypie[A.D]
Beiträge: 26
Registriert: 12.03.2004 18:29:36

ddclient funzt nicht

Beitrag von Hypie[A.D] » 01.09.2004 21:14:36

Hi,
ich habe einen DNS bei dyndns.org. Weiterhin habe ich einen ddlcient 3.6.3 installiert.
Er läuft, jedoch schickt er kein Signal an dyndns.org.
Ich habe keinen Router. Ich habe 2 Netzwerkkarten in meinem Linuxserver und gehe über PPP mit Adsl ins www.
Hier meine Configs.
/etc/ddclient.conf

Code: Alles auswählen

######################################################################
daemon=300                              # check every 300 seconds
syslog=yes                              # log update msgs to syslog
mail=root                               # mail all msgs to root
mail-failure=root                       # mail failed update msgs to root
pid=/var/run/ddclient.pid
## To obtain an IP address from Web status page (using the proxy if defined)
#use=web, web=checkip.dyndns.org/, web-skip='IP Address' # found after IP Address
#
#use=ip,                     ip=127.0.0.1       # via static IP's
#use=if,                     if=eth0            # via interfaces
#use=web                                        # via web
#
#protocol=dyndns2                               # default protocol
#proxy=fasthttp.sympatico.ca:80                 # default proxy
#server=members.dyndns.org                      # default server
#server=members.dyndns.org:8245                 # default server (bypassing proxies)

login=mylogin	                              # default login
password=mypassy                                # default password
#mx=mx.for.your.host                            # default MX
#backupmx=yes|no                                # host is primary MX?
#wildcard=yes|no                                # add wildcard CNAME?

##
## dyndns.org dynamic addresses
##
## (supports variables: wildcard,mx,backupmx)
##
 server=members.dyndns.org,             \
 protocol=dyndns2                       \
 myhome.net
etc/ppp/ip-up.local:

Code: Alles auswählen

## From the manual page for my pppd, these aguments are:
##   scriptname interface-name tty-device speed local-IP-address remote-IP-address ipparam
##
## Some people have reported that their pppd returns their
## local-IP-address as $3.  If that's also the case for you,
## you may need to change the $4 below to $3.  This may not
## be necessary if you pppd also passes the local-ip-address
## in the environment as either PPP_LOCAL or IPLOCAL.
##
######################################################################
PATH=/usr/sbin:${PATH}
IP=
IP=${IP:-$PPP_LOCAL}
IP=${IP:-$IPLOCAL}
IP=${IP:-$4}

## update the DNS server unless the IP address is a private address
## that may be used as a internal LAN address (or PPtP tunnel).

logger -t ddclient $0 $*
case "$IP" in
10.*)           ;;
172.1[6-9].* | 172.2[0-9].* | 172.3[0-1].*)     ;;
192.168.*)      ;;
"")             logger -t ddclient No local IP given so cannot update
                ;;
*)              (
                        sleep 5
                        ddclient -daemon=0 -syslog -use=if -if=$1 >/dev/null 2>&1
                ) &
                ;;
esac
Kann mir vieleicht jemand weiterhelfen ??? 8O
Ich wäre Euch echt dankbar ............................. !!!!
Hypie :roll:

edit bert: code tags eingefügt

Benutzeravatar
hacman
Beiträge: 209
Registriert: 24.04.2004 13:05:48
Wohnort: Hamburg
Kontaktdaten:

Beitrag von hacman » 01.09.2004 22:35:38

Probier doch mal ez-ipupdate. Läuft super bei mir. (Ich weiß, nicht wirklich eine Hilfe...)

Benutzeravatar
Bert
Beiträge: 3751
Registriert: 16.07.2002 14:06:52
Wohnort: Dresden
Kontaktdaten:

Beitrag von Bert » 01.09.2004 23:43:31

Du hast nicht angegeben, wie ddclient den Deine IP rausbekommt. Bei Dir müßte es wahrscheinlich

Code: Alles auswählen

use=if if=ppp0
sein.


Bert
Programmer: A biological machine designed to convert caffeine into code.
xmpp:bert@debianforum.de

Hypie[A.D]
Beiträge: 26
Registriert: 12.03.2004 18:29:36

Beitrag von Hypie[A.D] » 02.09.2004 11:53:53

ja.....es geht !!!! :D
Danke für den Tip Bert!!!!
Der Code von Dir hat funtioniert.

Code: Alles auswählen

use=if if=ppp0

:wink: Hypie

Antworten