I am trying to setup a WiFi hotspot on Ubuntu 16.04. Everything is working, and clients are able to connect to the hotspot.
How do I change the IP address that my hotspot is assigned? Right now, I am assigned 10.42.0.1 but say I want 192.168.0.1 instead.
I tried adding the following to my /etc/network/interfaces file:
auto wlan0
iface wlan0 inet static
address 192.168.0.1
netmask 255.255.255.0
But I am still assigned the same IP address.