User Tools


Differences

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

Link to this comparison view

Both sides previous revision Previous revision
Last revision Both sides next revision
cs:ddns:start [2016/10/08 22:13]
James Irwin
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 7: Line 10:
  
 {{ :​cs:​ddns:​dnsmasq_settings.zip | current dnsmasq settings}} {{ :​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>​