首頁 返回 繼續 最後一頁 圖形
伺服器提供的Service
DHCP, TFTP, NFS, NIS
1.DHCP server (Dynamic Host Configuration Protocol Server)
- - For distributing IP for every client
- - /etc/dhcpd.conf looks like:
- default-lease-time 21600;
- max-lease-time 21600;
- use-host-decl-names on;
- option subnet-mask 255.255.255.0;
- subnet 192.168.0.0 netmask 255.255.255.0 {
- option broadcast-address 192.168.0.255;
- option routers 192.168.0.254;
- option domain-name-servers 192.168.0.254;
- host node001 {
- hardware ethernet 00:50:BA:65:C0:58;
- fixed-address 192.168.0.1;
- filename "vmlinuz.etherboot.viarhine";
- }
- .....
- }