Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Install and configure DHCP

Configure /etc/network/interfaces

Code Block
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
auto eth1
iface eth1 inet static
address 192.168.2.1
netmask 255.255.255.0
broadcast 192.168.2.255

 

apt-get install dhcp3-server (is supposed to be already installed)

...

Install and configure NFS

install the main packet

 

Code Block
aptitude install nfs-kernel-server

and configure the shares by adding following to /etc/exports

 

Code Block
/home 192.168.10.0/24(rw,async,no_subtree_check)

 

...