Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. #the domain to be accesses from outside and inside
  2. domain=mydomain.ddns.net
  3.  
  4. resolv-file=/etc/resolv.dnsmasq
  5. min-port=4096
  6.  
  7. #the static ip of my raspberry, thus defining it as a DNS Server:
  8. server=192.168.0.100
  9. #Google's DNS Server:
  10. server=8.8.8.8
  11.  
  12. # Max cache size dnsmasq can give us, and we want all of it!
  13. cache-size=10000
  14.  
  15. # Below are settings for dhcp. Comment them out if you dont want
  16. # dnsmasq to serve up dhcpd requests.
  17. dhcp-range=192.168.0.101,192.168.0.149,255.255.255.0,1440m
  18. dhcp-option=3,192.168.0.100
  19. dhcp-authoritative
  20.  
  21. 192.168.0.100 mydomain.ddns.net
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement