Vim /etc/network/interfaces: Service Isc-Dhcp-Server Restart
Vim /etc/network/interfaces: Service Isc-Dhcp-Server Restart
Vim /etc/network/interfaces: Service Isc-Dhcp-Server Restart
Install Debian 6
2. Install driver
3. Konfigurasi ip / SETTING DHCP SERVER
vim /etc/network/interfaces
vim /etc/dhcp/dhcpd.conf
#. . .
# A slightly different configuration for an internal subnet.
subnet 192.168.10.0 netmask 255.255.255.0 {
range 192.168.10.100 192.168.10.200;
option domain-name-servers debian.edu;
option domain-name "debian.edu";
option routers 192.168.10.254;
option broadcast-address 192.168.10.255;
default-lease-time 600;
max-lease-time 7200;
}
#. . .
vim /etc/default/isc-dhcp-server
#. . .
# On what interfaces should the DHCP server (dhcpd) serve DHCP requests?
# Separate multiple interfaces with spaces, e.g. "eth0 eth1".
INTERFACES="eth0"
#. . .
5. Restart
service isc-dhcp-server restart
6. SETTING CLIENT
vim /etc/network/interfaces
#. . .
auto eth0
iface eth0 inet dhcp
ifconfig