DHCP |
# nano -w /etc/default/dhcp
---
INTERFACE="eth1"
---
# nano -w /etc/dhcpd.conf
option netbios-node-type 4;
option netbios-name-servers 192.168.203.???;
option time-servers 192.168.203.???;
option ntp-servers clock.corc.uni.edu.ni;
option subnet-mask 255.255.255.0;
option domain-name-servers 192.168.203.2;
option domain-name `"matagalpa.unan.intranet`";
option routers 192.168.103.1;
#
shared-network Intranet {
subnet 192.168.203.0
netmask 255.255.255.0 {
host ejemplo1 {
hardware ethernet 00:e0:7d:ac:0d:21;
fixed-address 192.168.203.21; }
host ejemplo2 {
hardware ethernet 00:30:95:01:06:9e;
fixed-address 192.168.203.22; }
# final de subnet 192.168.203.0
}
#final de Network Intranet
}
# final de dhcpd.conf
DHCP |