Seite 1 von 1
inadyn wie Plugins, ich brauche
Verfasst: So 23. Sep 2012, 12:39
von bianco_web
Hallo
Zunächst möchte ich für die Sprache zu entschuldigen, aber google hilft mir Deutsch zu sprechen, so behauptet google: p
Ich brauche Hilfe mit meinem Kathrein, habe ich neutrino im Flash und ich brauche etwas Plugin wie inadyn als mein Router nicht lassen Sie mich.
Freuen uns über jede Information, um zu versuchen, dieses Problem zu lösen.
Thank you very much.
Re: inadyn wie Plugins, ich brauche
Verfasst: So 23. Sep 2012, 13:36
von TangoCash
Hi,
just use the source to compile it for sh4
inadyn.zip
attached compiled version for sh4 (stm24)
(use gunzip)
Re: inadyn wie Plugins, ich brauche
Verfasst: So 23. Sep 2012, 13:48
von bianco_web
TangoCash hat geschrieben:Hi,
just use the source to compile it for sh4
inadyn.zip
attached compiled version for sh4 (stm24)
(use gunzip)
Vielen Dank
Ich kann Ihnen sagen, wo ich zu den Akten gelegt, wie angewiesen und booten müssen.
Vielen Dank
Re: inadyn wie Plugins, ich brauche
Verfasst: So 23. Sep 2012, 14:41
von TangoCash
bianco_web hat geschrieben:
Vielen Dank
Ich kann Ihnen sagen, wo ich zu den Akten gelegt, wie angewiesen und booten müssen.
Vielen Dank
Ihr Luftkissenfahrzeug ist voller Aale !
Re: inadyn wie Plugins, ich brauche
Verfasst: So 23. Sep 2012, 15:38
von bianco_web
hello
I have a hard time following the post on the forum.
Not if you understand what I meant.
I doubt is where I keep the files and where I think the line boot.
Thank you very much.
If these things are already spoken in the forum send me to post and I try to decipher.
TangoCash hat geschrieben:bianco_web hat geschrieben:
Vielen Dank
Ich kann Ihnen sagen, wo ich zu den Akten gelegt, wie angewiesen und booten müssen.
Vielen Dank
Ihr Luftkissenfahrzeug ist voller Aale !
Re: inadyn wie Plugins, ich brauche
Verfasst: So 23. Sep 2012, 16:01
von TangoCash
i dont really understand, what you want.
how to configure and use inadyn -> please read the readme.html in the zip archive
[*]transfer archive (inadyn.gz) to your box - e.g. /var/bin
[*]unzip it in telnet with gunzip /var/bin/inadyn.gz
[*]starting inadyn on your box somewhere in the /etc/rcS with
/var/bin/inadyn --background --update_period 600000 -u username -p password -a my.registrated.name
Re: inadyn wie Plugins, ich brauche
Verfasst: So 23. Sep 2012, 23:28
von BPanther
Hmm, that's dyndns. You can also use a simple script for updating.
Code: Alles auswählen
#!/bin/sh
URL="http://checkip.dyndns.org"
UURL2="XXXXXXX.dyndns.org"
CurrentIP=`wget -q -O /proc/self/fd/1 $URL | grep "Current IP Address:" | cut -d ":" -f 2 | cut -d " " -f 2 | cut -d "<" -f 1`
CurrIP=$CurrentIP;
NewIP2=`ping -c 1 $UURL2 | grep "$UURL2 (" | cut -d "(" -f 2 | cut -d ")" -f 1`;
if [ $CurrIP != $NewIP2 ] ; then
echo "Update of $UURL2 needed!"
### DYNDNS-Update ###
DYNDNS_LOGIN='XXXXX' # login name
DYNDNS_PW='XXXXXX' # put your setup password here
DYNDNS_HOST='members.dyndns.org' # host name
DYNDNS_DOMAIN=$UURL2 # allows us to update multiple domains
DYNDNS_WILDCARD='ON' # .
DYNDNS_MX='' # .
DYNDNS_BACKMX='NO' # .
DYNDNS_OFFLINE='NO' # Offline?
URL="http://$DYNDNS_LOGIN:$DYNDNS_PW@$DYNDNS_HOST/nic/update?system=dyndns&hostname=$DYNDNS_DOMAIN&myip=&wildcard=$DYNDNS_WILDCARD&mx=$DYNDNS_MX&backmx=$DYNDNS_BACKMX&offline=$DYNDNS_OFFLINE"
if wget -q -O /proc/self/fd/1 $URL | grep good >/dev/null; then
# logger -t DYNDNS "Update ($DYNDNS_DOMAIN) OK.";
echo "DYNDNS: Update ($DYNDNS_DOMAIN) OK."
else
# logger -t DYNDNS -s "Update ($DYNDNS_DOMAIN) NOT OK!";
echo "DYNDNS: Update ($DYNDNS_DOMAIN) NOT OK!"
fi
else
echo "NO Update of $UURL2 needed."
fi
Re: inadyn wie Plugins, ich brauche
Verfasst: Mo 24. Sep 2012, 18:50
von bianco_web
Hello
Exactly, that's what I was looking for.
Thank you very much for your help.
TangoCash hat geschrieben:i dont really understand, what you want.
how to configure and use inadyn -> please read the readme.html in the zip archive
[*]transfer archive (inadyn.gz) to your box - e.g. /var/bin
[*]unzip it in telnet with gunzip /var/bin/inadyn.gz
[*]starting inadyn on your box somewhere in the /etc/rcS with
/var/bin/inadyn --background --update_period 600000 -u username -p password -a my.registrated.name