Sull'altra mia discussione stavo parlando di alcune cose interessanti sulla politica e gli stati di iptables , ora vorrei capire di più su come funziona il DHCP e su come iptables lo capisce.
ETH0 è collegato al mio switch principale che riceve l'ip dinamico dal mio router per ottenere non solo l'accesso a Internet ma anche l'accesso alla mia rete esterna.
ETH1 è la scheda interna collegata a uno switch interno in cui X client ricevono il proprio IPS da questo server
La rete ETH1 è 192.168.1.0/255.255.255.0 dove l'ip del server è 192.168.1.254.
Da quello che ho capito, dhcp è un protocollo di bootp, quindi anche se si hanno i criteri del firewall per DROP tutto, la rete riceverebbe comunque il DHCP, che nei test che ho fatto sembrava essere vero.
Da tcpdump:
root@test:~# tcpdump -i eth1 port 67 or 68
tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
listening on eth1, link-type EN10MB (Ethernet), capture size 96 bytes
11:34:03.943928 IP 192.168.1.2.bootpc > 255.255.255.255.bootps: BOOTP/DHCP, Request from 00:0c:29:29:52:8b (oui Unknown), length 303
11:34:03.957647 IP 192.168.1.254.bootps > 192.168.1.2.bootpc: BOOTP/DHCP, Reply, length 300
11:34:06.492153 IP 192.168.1.2.bootpc > 192.168.1.254.bootps: BOOTP/DHCP, Request from 00:0c:29:29:52:8b (oui Unknown), length 303
11:34:06.506593 IP 192.168.1.254.bootps > 192.168.1.2.bootpc: BOOTP/DHCP, Reply, length 300
Ho creato una semplice regola di registro per vedere cosa fa iptables:
root@test:~# tail -f /var/log/syslog
Oct 15 11:30:58 test kernel: IN=eth1 OUT= MAC=ff:ff:ff:ff:ff:ff:00:0c:29:29:52:8b:08:00 SRC=192.168.1.2 DST=255.255.255.255 LEN=331 TOS=0x00 PREC=0x00 TTL=128 ID=9527 PROTO=UDP SPT=68 DPT=67 LEN=311
Oct 15 11:31:43 test kernel: IN=eth1 OUT= MAC=ff:ff:ff:ff:ff:ff:00:0c:29:29:52:8b:08:00 SRC=192.168.1.2 DST=255.255.255.255 LEN=331 TOS=0x00 PREC=0x00 TTL=128 ID=9529 PROTO=UDP SPT=68 DPT=67 LEN=311
Oct 15 11:33:32 test kernel: IN=eth1 OUT= MAC=ff:ff:ff:ff:ff:ff:00:0c:29:29:52:8b:08:00 SRC=192.168.1.2 DST=255.255.255.255 LEN=331 TOS=0x00 PREC=0x00 TTL=128 ID=9531 PROTO=UDP SPT=68 DPT=67 LEN=311
Oct 15 11:34:03 test kernel: IN=eth1 OUT= MAC=ff:ff:ff:ff:ff:ff:00:0c:29:29:52:8b:08:00 SRC=192.168.1.2 DST=255.255.255.255 LEN=331 TOS=0x00 PREC=0x00 TTL=128 ID=9533 PROTO=UDP SPT=68 DPT=67 LEN=311
Ecco le mie regole iptables al momento:
# deny all traffic
$IPT -P INPUT DROP
$IPT -P FORWARD DROP
$IPT -P OUTPUT DROP
# Use stateful inspection feature to only allow incoming connections
# related to connections I have already established myself
$IPT -A INPUT -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
$IPT -A OUTPUT -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
# allow all traffic on lo interface
$IPT -A INPUT -i lo -j ACCEPT
$IPT -A OUTPUT -o lo -j ACCEPT
Quindi, anche con la POLITICA predefinita per eliminare tutto, ottengo ancora il DHCP sulla mia rete mentre ci vuole molto più tempo per rinnovare un IP e simili.
Se aggiungo la seguente regola al mio firewall:
$IPT -I OUTPUT -o $INTIF -p udp --dport 67:68 --sport 67:68 -j ACCEPT
Occorrerà molto meno tempo per aggiornare qualsiasi client dhcp.
Considerando quanto sopra:
- perché ci vuole davvero più tempo per aggiornarlo anche se non viene bloccato?
- è possibile DROP il server dhcp senza spegnerlo?
- è possibile ACCETTARE il server dhcp all'interno di iptables con BOOTP? come è fatto?
Se conosci buoni collegamenti non mi dispiacerebbe prenderne molto :)
Are you monitoring the network interface in promiscuous mode
sto ancora imparando ...