OpenWRT - Adding DHCP Entry
SSH to Server
Edit
/etc/config/dhcp
Use the following template to add entry in the correct location (Ordered by IP):
# Template:
config host
option mac 'MAC Address'
option name 'Server Name'
option dns '1'
option ip 'IP Address'
# Example:
config host
option mac '84:F5:A1:21:E6:17'
option name 'Server-01'
option dns '1'
option ip '192.168.1.20'
Last updated