Compare commits

...

1 Commits
1.0 ... main

Author SHA1 Message Date
rohhie 082be086c1 DHCPサーバーに権威を持たせるための修正
dhcpd.confにauthoritativeを追加。
テスト環境においてDHCPNAKメッセージを返すようなことはなく、指定がなくても問題ないような気がするが、明示的に設定するようにした。
もし、権威を持たせたくない場合にはnot authoritativeに変更すればよい。
2022-10-30 13:44:38 +09:00
2 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,8 @@
#-------------------------------
# Global options
#-------------------------------
authoritative;
option domain-name "hogeserver.hogeddns.jp";
option domain-name-servers 192.168.110.10;
option routers 192.168.110.10;

View File

@ -1,6 +1,8 @@
#-------------------------------
# Global options
#-------------------------------
authoritative;
option dhcp6.domain-search "hogeserver.hogeddns.jp";
option dhcp6.name-servers fdaa:aaaa:aaaa:aaaa::10;