From Fedora Project Wiki
No edit summary
No edit summary
 
Line 1: Line 1:
IPv4 DHCP example:
See [[Networking/Addressing#Dynamic_IPv4_configuration]].
 
<pre>
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;
}
</pre>
 
IPv4 static IP example:
 
<pre>
host station {
    hardware ethernet 52:54:ab:15:02:22;
    fixed-address 10.0.15.2;
}
</pre>

Latest revision as of 10:38, 13 December 2012