Tôi nghĩ rằng bạn có thể định cấu hình dhclient
thông qua tệp `/etc/dhclient.conf cho nó biết tùy chọn nào bạn muốn nó chính thức yêu cầu các giá trị từ máy chủ DHCP của bạn.
Thí dụ
request subnet-mask, broadcast-address, routers, domain-name,
domain-name-servers, host-name;
Bạn có thể tìm hiểu thêm về điều này thông qua dhclient.conf
trang người đàn ông.
đoạn trích
There is a variety of data contained in offers that DHCP servers send to
DHCP clients. The data that can be specifically requested is what are
called DHCP Options. DHCP Options are defined in dhcp-options(5).
The request statement
[ also ] request [ [ option-space . ] option ] [, ... ];
The request statement causes the client to request that any server
responding to the client send the client its values for the
specified options. Only the option names should be specified in the
request statement - not option parameters. By default, the DHCPv4 client
requests the subnet-mask, broadcast-address, time-offset, routers,
domain-search, domain-name, domain-name-servers, host-name, nis-domain,
nis-servers, ntp-servers and interface-mtu options while the DHCPv6 client
requests the dhcp6 name-servers and domain-search options. Note that if you
enter a ´request´ statement, you over-ride these defaults and these options
will not be requested.
In some cases, it may be desirable to send no parameter request list at all.
To do this, simply write the request statement but specify no
parameters:
request;
In most cases, it is desirable to simply add one option to the request list
which is of interest to the client in question. In this case, it is best to
´also request´ the additional options:
also request domain-search, dhcp6.sip-servers-addresses;
Vô hiệu hóa qua /dhclient-exit-hooks.d?
Trêu chọc bản cài đặt Ubuntu 12.10 tôi nhận thấy thư mục này, /etc/dhcp/dhclient-exit-hooks.d
với tệp này bên trong nó , ntpdate
. Nhìn vào tệp này, nó chứa một tập lệnh shell sẽ thực hiện cập nhật trên hệ thống khi hợp đồng thuê được mua hoặc phát hành qua DHCP. Bạn có thể vô hiệu hóa việc cập nhật máy chủ NTP của mình thông qua tập lệnh này, bằng cách bình luận ra tệp này:
ntp_servers_setup() {
case $reason in
BOUND|RENEW|REBIND|REBOOT)
ntp_servers_setup_add
;;
EXPIRE|FAIL|RELEASE|STOP)
ntp_servers_setup_remove
;;
esac
}
ntp_servers_setup