# Different Host Names for Different Network Adapters on Linux
In `/etc/dhcp/dhclient.conf`, replace `send host-name = gethostname();` with the following
```shell
interface "eth0" {
send host-name = "pi_lan";
}
interface "wlan0" {
send host-name = "pi_wifi";
}
```
Afterwards run `sudo dhclient`.