I have set up a Ubuntu 10.04 LTS desktop machine with 2 interfaces (eth0
and wlan0). wlan0 acts as a wifi access point using hostapd.<br>
<br>
dnsmasq is installed OK, and everything works so that locally on that
machine DNS works fine as normal, but connections over wlan0 get
everything routed to localhost. This means for example that you can view
a website using firefox on the local machine, but connect via wlan from
a phone, for example, and you get routed to an internally hosted
website. All well and good so far.<br>
<br>
I want to add domains that will be excepted from this default behavior,
for example to allow someone connected via wlan to be able to tweet from
the internal website. I have tried using both the server and address
options in the dnsmasq.conf file, but neither work.<br>
<br>
<b>#This has no effect at all:<br>
server=/<a href="http://twitter.com/#">twitter.com/#</a><br>
<br>
#Neither does this:<br>
server=/<a href="http://twitter.com/192.168.1.254@eth0">twitter.com/192.168.1.254@eth0</a></b><br>
<br>
Where 192.168.1.254 is the IP address of the router it's attached to via
eth0 and the gateway to the internet. Nor does replacing this IP
address with the DNS lookup addresses specified in the router config. IP
address for <a href="http://twitter.com">twitter.com</a> is gives 10.0.0.2 as before, the address of
this machine via wlan0.<br>
<br>
Alternatively trying something like the following seems to resolve
addresses OK, but makes a browser on the wireless connected device (eg
phone) hang:<br>
<b><br>
address=/<a href="http://twitter.com/199.59.150.7">twitter.com/199.59.150.7</a><br>
address=/<a href="http://twimg.com/184.169.81.33">twimg.com/184.169.81.33</a><br>
address=/<a href="http://ssl.google-analytics.com/173.194.41.94">ssl.google-analytics.com/173.194.41.94</a><br>
address=/<a href="http://www.google-analytics.com/173.194.41.137">www.google-analytics.com/173.194.41.137</a></b><br>
<br>
Any ideas what is going on? Why doesn't the server option have any effect at all?<br>
<br>
Thanks.