Re: httpd question - solved (ProutDNS)

2006-02-07 Thread paul dansing
Hello Frank,

here ya go buddy: http://www.prout.be/ProutDNS/

http://www.prout.be/ProutDNS/download/ProutDNS-0.6.2.tar.gz

Tuesday, February 7, 2006, 10:54:33 AM, you wrote:

> At 04:17 AM 2/6/06, Alexander Farber wrote:

>>And there is also ipcheck.py
>>
>>On 2/6/06, Keith Richardson <[EMAIL PROTECTED]> wrote:
>> > This will handle the pesty case of your IP changing.
>> >
>> > 1. dyndns.org - get a free subdomain to map to your IP.
>> > 2. ddclient package - updates your DNS whenever your IP changes.


> Are there scripts available to do what dyndns.org does at the server 
> side?  I have an OpenBSD box with a static ip address hosting a few 
> domains.  I'd like to setup several machines as subdomains that are behind
> dynamic ip addresses.  I'd like to install something on the system with
> static ip address to provide the same service dyndns.org does, but cannot
> seem to find thos scripts.

> Frank  




-- 
Best regards,
 paulmailto:[EMAIL PROTECTED]



Re: httpd question - solved

2006-02-07 Thread Frank Bax

At 04:17 AM 2/6/06, Alexander Farber wrote:


And there is also ipcheck.py

On 2/6/06, Keith Richardson <[EMAIL PROTECTED]> wrote:
> This will handle the pesty case of your IP changing.
>
> 1. dyndns.org - get a free subdomain to map to your IP.
> 2. ddclient package - updates your DNS whenever your IP changes.



Are there scripts available to do what dyndns.org does at the server 
side?  I have an OpenBSD box with a static ip address hosting a few 
domains.  I'd like to setup several machines as subdomains that are behind 
dynamic ip addresses.  I'd like to install something on the system with 
static ip address to provide the same service dyndns.org does, but cannot 
seem to find thos scripts.


Frank  



Re: httpd question - solved

2006-02-06 Thread MikeM
On 2/5/2006 at 11:10 PM Keith Richardson wrote:

|If you get your IP dynamically from you ISP, your IP can potentially 
|change every max-lease-time
|
|This will handle the pesty case of your IP changing.
|
|1. dyndns.org - get a free subdomain to map to your IP. 
|2. ddclient package - updates your DNS whenever your IP changes. 
|
 =

An alternative, now that domain name registrations are so cheap...

Register your own domain and use www.zoneedit.com for your name
servers.

ZoneEdit has the ability to make DNS changes based upon dynamic IP
address changes.
http://www.zoneedit.com/doc/dynamic.html?

Zoneedit is free (as in, no charge) for the typical low-usage
individual hosts.
http://www.zoneedit.com/doc/faq.html#faq6

Also, ZoneEdit's infrastructure is pretty solid.
http://www.zoneedit.com/doc/network.html


(a satisfied customer of ZoneEdit for about four years now...)



Re: httpd question - solved

2006-02-06 Thread Chris Zakelj
Alexander Farber wrote:
> And there is also ipcheck.py
>
> On 2/6/06, Keith Richardson <[EMAIL PROTECTED]> wrote:
>   
>> This will handle the pesty case of your IP changing.
>>
>> 1. dyndns.org - get a free subdomain to map to your IP.
>> 2. ddclient package - updates your DNS whenever your IP changes.
Having used both ddclient and ipcheck.py, I greatly prefer ddclient for
a couple reasons:
1. ddclient doesn't rely on crontabs or ppp.linkup scripts.  It runs as
a background perl process, checking every n seconds for a new IP
address.  Great for kernel PPPoE users.  Can run as a regular user (not
sure if that's post 3.8-RELEASE or not).
2. At least in 3.8-RELEASE, it is less likely to trigger repeat (ie,
abusive) updates.  Not sure what happened to ipcheck.py between 3.7
(used ipcheck.py here with userland PPPoE and ppp.linkup) and 3.8 to
make it abusive, but something (kernel PPPoE + crontab?) did.
3. ddclient will send you an email any time it actually does something
(true update, keep-alive update, system shutdown, error)



Re: httpd question - solved

2006-02-06 Thread Alexander Farber
And there is also ipcheck.py

On 2/6/06, Keith Richardson <[EMAIL PROTECTED]> wrote:
> This will handle the pesty case of your IP changing.
>
> 1. dyndns.org - get a free subdomain to map to your IP.
> 2. ddclient package - updates your DNS whenever your IP changes.



Re: httpd question - solved

2006-02-05 Thread Keith Richardson

I will have to update ServerName each time I get a new IP address.

Dave Feustel 
   



i have been running apache on openbsd since 2.9 on a dynamic IP and have
never had to do any of this. 


#grep ServerName /var/www/conf/httpd.conf
ServerName neotrance.dyndns.org


 

If you get your IP dynamically from you ISP, your IP can potentially 
change every max-lease-time


This will handle the pesty case of your IP changing.

1. dyndns.org - get a free subdomain to map to your IP. 
2. ddclient package - updates your DNS whenever your IP changes. 

Although the package just copies over the perl script, I add a 
user/group _ddclient.  If you are still running 3.8-release, consider 
creating a folder /etc/ddclient, chown / chgrp and move the conf , cache 
and pid file to that folder.  -current already does this for you (at 
least, the folder part.  I don't think the @newuser, @newgroup will be 
added since people not running in daemon mode don't need it)


before you ask, -current's dhclient does not support hooks. 


-Keith Richardson



Re: httpd question - solved

2006-02-04 Thread Clint M. Sand
On Sat, Feb 04, 2006 at 07:07:52PM -0500, Dave Feustel wrote:
> On Saturday 04 February 2006 16:57, L. V. Lammert wrote:
> > On Sat, 4 Feb 2006, Dave Feustel wrote:
> > 
> > > I am now starting httpd at boot. It reports that it cannot
> > > determine the fully qualified domain name and listens to
> > > only 127.0.0.1. How can I set the ip address to which httpd
> > > listens to the address assigned to me by verizon's dhcp server?
> > >
> > ahh, .. httpd.conf & ifconfig??
> > 
> > Lee
> 
> I started httpd successfully after I commented out the change
> I had made to the email address for the server administrator
> (which apparently set off DNS requests - a bad thing for a server
> with no name) and set ServerName to the ip address assigned to
>  my computer.
> 
> I will have to update ServerName each time I get a new IP address.
> 
> Dave Feustel 

i have been running apache on openbsd since 2.9 on a dynamic IP and have
never had to do any of this. 

#grep ServerName /var/www/conf/httpd.conf
ServerName neotrance.dyndns.org



Re: httpd question - solved

2006-02-04 Thread Dave Feustel
On Saturday 04 February 2006 16:57, L. V. Lammert wrote:
> On Sat, 4 Feb 2006, Dave Feustel wrote:
> 
> > I am now starting httpd at boot. It reports that it cannot
> > determine the fully qualified domain name and listens to
> > only 127.0.0.1. How can I set the ip address to which httpd
> > listens to the address assigned to me by verizon's dhcp server?
> >
> ahh, .. httpd.conf & ifconfig??
> 
>   Lee

I started httpd successfully after I commented out the change
I had made to the email address for the server administrator
(which apparently set off DNS requests - a bad thing for a server
with no name) and set ServerName to the ip address assigned to
 my computer.

I will have to update ServerName each time I get a new IP address.

Dave Feustel 

-- 
Lose, v., experience a loss, get rid of, "lose the weight"
Loose, adj., not tight, let go, free, "loose clothing"