User Tools


Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
Last revision Both sides next revision
cs:ddns:start [2016/10/08 22:10]
James Irwin created
cs:ddns:start [2016/10/08 22:44]
Brandon Kallaher
Line 1: Line 1:
 ====== Dynamic DNS Server Setup ====== ====== Dynamic DNS Server Setup ======
 +<WRAP important>​
 +This should only be done on one device on the network!
 +</​WRAP>​
  
 Need to use dnsmasq to act as dhcp/dns server: Need to use dnsmasq to act as dhcp/dns server:
Line 6: Line 9:
 Right now the sub computer acts as the dns server, should make router do this. Right now the sub computer acts as the dns server, should make router do this.
  
 +{{ :​cs:​ddns:​dnsmasq_settings.zip | current dnsmasq settings}}
 +
 +Also important is to set a static IP in /​etc/​network/​interfaces file:
 +
 +<code text>
 +auto lo etho
 +iface lo inet loopback
 +iface eth0 inet static
 +     ​address 192.168.0.7
 +     ​netmask 255.255.255.0
 +     ​gateway 192.168.0.1
 +</​code>​