I would like my Raspberry Pi to act as a wireless access point. These are the current settings in /etc/network/interfaces:
auto lo
iface lo inet loopback
iface eth0 inet dhcp
allow-hotplug wlan0
iface wlan0 inet static
wireless-essid "wireless"
wireless-mode ad-hoc
wireless-channel auto
address 192.168.12.1
netmask 255.255.255.0
gateway 192.168.12.2
#wpa-psk "robotics"
Any ideas how I can turn this into a dhcp server that can give out IP addresses? I really am getting tired of changing to manual ever time on PC.
Any help will be apreciated.