From Fedora Project Wiki

< Tools

Revision as of 13:38, 19 September 2012 by Pavlix (talk | contribs)

IPv4 DHCP example:

option domain-name "example.org";
option domain-name-servers 10.0.255.1;

authoritative;

subnet 10.0.15.0 netmask 255.255.255.0 {
    range 10.0.15.100 10.0.15.120;
    option routers 10.0.15.1;
}

IPv4 static IP example:

host station {
    hardware ethernet 52:54:ab:15:02:22;
    fixed-address 10.0.15.2;
}