Đáp án đúng: B
The `/etc/hosts` file is used to map hostnames to IP addresses. We need to add a line that allows access to web services on the subnet. None of the options are valid.
A. Incorrect syntax. It attempts to exclude httpd, which `/etc/hosts` cannot do.
B. Incomplete IP address.
C. Incorrect syntax and uses the broadcast address, which is not appropriate for `/etc/hosts`.
D. Incorrect syntax and uses the broadcast address, which is not appropriate for `/etc/hosts`.
A correct entry would be `[IP address] [hostname]` e.g., `192.168.1.10 webserver.local`.