On Tue, 2002-03-12 at 10:11, Walter G Osoria wrote: > saludos a todos, alguien me puede tirar un archivo de ddclient.conf > o ipcheck.py para ver como va la conexion para la ip static. Tengo > el usuario en dyndns.org pero lo logro conectar, hab�a que cambiar > la variable de ip-up.local que no recuerdo si era de $1 a $4 o al > reves ... un abrazo y graciasssss
Te env�o mi archivo ddclient.conf y el /etc/init.d/ddclient modificado
por mi para que arranque a la Debian; a mi me funciona en mi Woody
aunque faltan algunas cosas por mejorar. Si no existe, tienes que crear
el directorio /var/lock/subsys.
A ver si el fin de semana hago un paquete Debian en forma, ya que no he
visto que haya uno.
--
_
--------- / \
| | | Cronos | () |
| | | "No confies en nadie mayor de treinta" | \_/
| ----| \
| | Email: [EMAIL PROTECTED] \
| | WWW: http://www.geocities.com/cronos1_mx/ debian
---------
###################################################################### ## ## Define default global variables with lines like: ## var=value [, var=value]* ## These values will be used for each following host unless overridden ## with a local variable definition. ## ## Define local variables for a host with: ## var=value [, var=value]* host.and.domain [login] [password] ## ## Lines can be continued on the following line by ending the line ## with a \ ## ###################################################################### daemon=300 # check every 300 seconds syslog=yes # log update msgs to syslog mail=root # mail update msgs to root pid=/var/run/ddclient.pid # record PID in file. # #use=watchguard-soho, fw=192.168.111.1:80 # via Watchguard's SOHO FW #use=netopia-r910, fw=192.168.111.1:80 # via Netopia R910 FW #use=smc-barricade, fw=192.168.123.254:80 # via SMC's Barricade FW #use=netgear-rt3xx, fw=192.168.0.1:80 # via Netgear's internet FW #use=linksys, fw=192.168.1.1:80 # via Linksys's internet FW #use=maxgate-ugate3x00, fw=192.168.0.1:80 # via MaxGate's UGATE-3x00 FW #use=elsa-lancom-dsl10, fw=10.0.0.254:80 # via ELSA LanCom DSL/10 DSL Router #use=elsa-lancom-dsl10-ch01, fw=10.0.0.254:80 # via ELSA LanCom DSL/10 DSL Router #use=elsa-lancom-dsl10-ch02, fw=10.0.0.254:80 # via ELSA LanCom DSL/10 DSL Router #fw-login=admin, fw-password=XXXXXX # FW login and password # ## To obtain an IP address from FW status page (using fw-login, fw-password) #use=fw, fw=192.168.1.254/status.htm, fw-skip='IP Address' # found after IP Address # ## To obtain an IP address from Web status page (using the proxy if defined) #use=web, web=checkip.dyndns.org/, fw-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=cronos1mx # default login password=mipasswordsecreto # default password #mx=mx.for.your.host # default MX backupmx=no # host is primary MX? wildcard=no # add wildcard CNAME? ## ## dyndns.org dynamic addresses ## ## (supports variables: wildcard,mx,backupmx) ## server=members.dyndns.org, \ protocol=dyndns2 \ olimpo.homelinux.net ## ## dyndns.org static addresses ## ## (supports variables: wildcard,mx,backupmx) ## # static=yes \ # server=members.dyndns.org, \ # protocol=dyndns2 \ # your-static-host.dyndns.org ## ## ## dyndns.org custom addresses ## ## (supports variables: wildcard,mx,backupmx) ## # custom=yes \ # server=members.dyndns.org, \ # protocol=dyndns2 \ # your-domain.top-level,your-other-domain.top-level ## ## ZoneEdit (zoneedit.com) ## # server=www.zoneedit.com, \ # protocol=zoneedit1, \ # login=your-zoneedit-login, \ # password=your-zoneedit-password \ # your.any.domain,your-2nd.any.dom ## ## EasyDNS (easydns.com) ## # server=members.easydns.com, \ # protocol=easydns, \ # login=your-easydns-login, \ # password=your-easydns-password \ # your.any.domain,your-2nd.any.domain ## ## Hammernode (hn.org) dynamic addresses ## # server=dup.hn.org, \ # protocol=hammernode1, \ # login=your-hn-login, \ # password=your-hn-password \ # your-hn-host.hn.org,your-2nd-hn-host.hn.org ## ## dslreports.com dynamic-host monitoring ## # server=members.dslreports.com \ # protocol=dslreports1, \ # login=dslreports-login, \ # password=dslreports-password \ # dslreports-unique-id
#!/bin/sh
#
# ddclient This shell script takes care of starting and stopping
# ddclient.
#
# chkconfig: 2345 65 35
# description: ddclient provides support for updating dynamic DNS services.
PIDFILE=/var/run/ddclient.pid
[ -f /etc/ddclient.conf ] || exit 0
#. /etc/rc.d/init.d/functions
# See how we were called.
case "$1" in
start)
# Start daemons.
echo -n "Starting ddclient: "
touch /var/lock/subsys/ddclient
#daemon ddclient -daemon 300
start-stop-daemon --start --quiet --exec /usr/sbin/ddclient -- -daemon 300
echo
;;
stop)
# Stop daemons.
echo -n "Shutting down ddclient: "
#killproc ddclient
start-stop-daemon --stop --quiet --signal 9 --pidfile $PIDFILE --name ddclient
echo
rm -f /var/lock/subsys/ddclient
;;
restart)
$0 stop
$0 start
;;
status)
status ddclient
;;
*)
echo "Usage: ddclient {start|stop|restart|status}"
exit 1
esac
exit 0
signature.asc
Description: This is a digitally signed message part

