Guest User!

You are not Sophos Staff.

dhcpd server for asl 2.000

Hi.

I've seen some requests for a dhcp server for astaro.

The replies coming from astaro development/marketing were not very kind. I memory serves me, someone said that astaro is not an application server but a firewall, so a dhcp server was out of question. 

In my opinion, if a computer is acting as a DNS server, a Proxy Server, a Mail Server and so on and so on, it can also serve some IP addresses on it's internal lan interface...

Anyway, I needed one and had to pack it myself. If somebody is interested, you can download it from http://astaro.comm.it/dhcpd.asl2000.tar.gz 

It's very simple and requires you to write your own dhcpd.conf file, but it's been working for the last few months here.

Regards,
Davix
Parents Reply
  • # Sample /etc/dhcpd.conf
    # (add your comments here)
    default-lease-time 1200;
    max-lease-time 9200;
    option subnet-mask 255.255.255.0;
    option broadcast-address 192.168.1.255;
    option routers 192.168.1.254;
    option domain-name-servers 192.168.1.1, 192.168.1.2;
    option domain-name "mydomain.org";
    option netbios-name-servers 192.168.1.1;
    subnet 192.168.1.0 netmask 255.255.255.0 {
    range 192.168.1.10 192.168.1.100;
    range 192.168.1.150 192.168.1.200;
    }
Children