DHCP domain-search-list option 119
Mikrotik не поддерживает из коробки 119 DHCP опцию, пришлось найти и написать скрипты:
Реализация на bash:
#!/bin/sh
chr() {
[ "$1" -lt 256 ] || return 1
printf "\\$(printf %o "$1")"
}
ord() {
# If the leading character is a single-quote or double-quote,
# the value shall be the numeric value in the underlying codeset
# of …