February 2018
Intermediate to advanced
426 pages
11h 3m
English
We will start by installing a DHCP server to dynamically configure the victim's IP setting:
apt install isc-dhcp-server -y
Next, configure the DHCP server by editing the configuration file at /etc/dhcp/dhcpd.conf:
authoritative;default-lease-time 600;max-lease-time 7200;subnet 10.0.0.0 netmask 255.255.255.0{ option subnet-mask 255.255.255.0; option broadcast-address 10.0.0.255; option routers 10.0.0.1; option domain-name-servers 8.8.8.8; range 10.0.0.100 10.0.0.254;}
Read now
Unlock full access