Differences

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

Link to this comparison view

netbsd_install_network [2013/01/15 16:25]
netbsd_install_network [2013/01/15 16:25] (current)
Line 1: Line 1:
 +  * [[NetBSD Install]]
  
 +
 +<​code>​
 +echo hostname=<​hostname>​ >> /​etc/​rc.conf
 +echo dhcpcd=YES >> /​etc/​rc.conf
 +/​etc/​rc.d/​dhcpcd start
 +</​code>​
 +
 +Add OpenSSH to startup:
 +
 +<​code>​
 +echo sshd=YES >> /​etc/​rc.conf
 +/​etc/​rc.d/​sshd start
 +</​code>​
 +
 +Setup ntp-client:
 +
 +<​code>​
 +echo ntpd=YES >> /​etc/​rc.conf
 +echo ntpdate=YES >> /​etc/​rc.conf
 +</​code>​