!Questions index : **Scopes : ** * What is a scope ? * How do I make a scope of freely available ip addresses for dhcp client ? * How to give a static ip address ? **Options :*** What is an option ? * Which options does Anemon Server support ? * How do I create an option ? **Relations : ** * What is relations ? !Scopes ** What is a scope ? ** Scopes are ranges of one or more ip addresses in the same subnet. ** How do I make a scope of freely available ip addresses for dhcp client ?** insert into scopes (subnet,first,last) values(\'192.168.2.0/24\',\'192.168.2.30\',\'192.168.2.40\'); This line distributes ip between 192.168.2.30 and 192.168.2.40 in the subnet 192.168.2.0/24. ** How to give a static ip address ? ** Static addressing for a single host is a \"single ip address scope\" like this : insert into scopes (subnet,first,last,chaddr) values(\'192.168.2.0/24\',\'192.168.2.234\',\'192.168.2.234\', \'00:ac:ac:01:02:03\'); The chaddr is the mac-address field. You can use client-identifier based static host with the \"identifier\" field in scopes table like this : insert into scopes (subnet,first,last,identifier) values(\'192.168.2.0/24\',\'192.168.2.123\',\'192.168.2.123\', \'my identifier string\'); ! Options ** What is an option ? ** Clients need more than an ip address to work. You probably want to send to your clients informations like gateway, dns server, netmask, etc... These are optional in the dhcp protocol and called \"option\" in anemon dhcp server. ** Which options does Anemon Server support ? ** Theoricaly all option in RFC 2131 and RFC 2132. ** How do I create an option ? ** insert insert into options(subnet,parameter,value) values(\'192.168.2.0/24\',\'router\',\'192.168.2.2\'); insert insert into options(subnet,parameter,value) values(\'192.168.2.0/24\',\'netmask\',\'255.255.255.0\'); or for a single host : insert insert into options(subnet,parameter,value) values(\'192.168.2.18\',\'netmask\',\'255.255.255.0\'); ! Relations ** What is relations ? ** Relations are no more. It came from a previous obsolete release of anemon server.