-
-
Save xergio/0c0c7911caf9858af4432ba161cd6911 to your computer and use it in GitHub Desktop.
Pi-hole: Configuración DHCP para Decos Movistar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Pi-hole: Configuración DHCP | |
# /etc/dnsmasq.d/03-pihole-decos.conf | |
# | |
# Este fichero está referenciado en este apunte: | |
# https://www.luispa.com/linux/2014/10/19/bridge-ethernet.html | |
# | |
# DECOS | |
# Rango | |
dhcp-range=set:decos,192.168.206.10,192.168.206.20,1h | |
# Opción A: Reconocer el vendor-class (no conseguí que funcionase) | |
#dhcp-vendorclass=set:decos,[IAL] | |
#dhcp-range=tag:!decos,192.168.206.33,192.168.206.199,1h | |
#dhcp-range=tag:decos,192.168.206.200,192.168.206.223,1h | |
# Opción B: Reconocer la MAC del Deco | |
dhcp-host=DC:A6:33:DB:DC:FE,deco206-eth,192.168.206.21,set:decos | |
# Opciones para los DECOS | |
dhcp-option=tag:decos,option:router,192.168.206.1 | |
dhcp-option=tag:decos,6,172.26.23.3 | |
dhcp-option=tag:decos,240,':::::239.0.2.10:22222:v6.0:239.0.2.30:22222' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment