Hostname does not show up in router?

Tjax

There are two machines:

  1. Ubuntu Desktop (15.04) which connect to WLAN. Get IP from dhcp server (router). hostname shows up in the router properly. This machine uses Network Manager.

  2. Ubuntu Server (14.04) which connect to WLAN. Has static IP. hostname DOES NOT show up in the router at all. This machine DOES NOT use Network Manager.

Both machines have been configured to have DNS server. For Ubuntu Desktop DNS Server is on 127.0.1.1 and for Ubuntu Server is on 127.0.0.1. Both machine have hostname file containing their hostname.

I have read almost all posts related to this issue in askubuntu and some other sites, but still no hostname in the router for Ubuntu Server?

/etc/network/interfaces:

auto wlan0
iface wlan0 inet static
wpa-scan_ssid 0
address 192.168.1.200
netmask 255.255.255.0
network 192.0.0.0
broadcast 192.0.0.255
gateway 192.168.1.1
dns-nameserver 192.168.1.1
user448115

The router gets your hostname from the dhcp request. If the interface is set to static it never makes this request.

A way of getting static ip address and use dhcp requests at the same time is to

  • set a static ip address for the machine on the router and
  • use dhcp for your interface
    auto wlan0
    iface wlan0 inet dhcp
      wpa-scan_ssid 0
      hostname myhostname

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related