User Tools

Site Tools


user:jcavalu3:portfolio:eoce:0x1

This is an old revision of the document!


EOCE 0x1 Documentation


Objective


My objective in this section is to create three VMs on any of the four vmservers. I will create one server and two clients that can access that server. The server will contain:

  • At least three user accounts
    • My own.
    • wedge, password:bob
    • test1, password:test1
  • NFS (Network File System) of /home that only the clients can access
  • As well as an NIS (Network Information Service) that will serve any and all user accounts on the server.

The client VMs will contain:

  • NO local user accounts
  • configured to be an NFS client (nfs-common)
  • configured as an NIS client
  • automount (autofs5) of user home directories in /home

Down to Business

I created my server and clients using

root@vmserver01:~# xen-create-image --hostname='desired-hostname-here' --dhcp --verbose

The VMs are the following:

  • Server: srv-059 (CNAME cortana)
  • Client1: client-058 (CNAME masterchief)
  • Client2: client-059 (CNAME arbiter)

The dhcp settings are as follows for the VMs (this includes my other VMs as well):

dhcpd.conf

        ##
        ## Jawsh's VMs
        ##
        host pancake.projects.lan {
                hardware ethernet 00:16:3E:E3:96:8F;
                fixed-address pancake.projects.lan;
        }

        host arbiter.projects.lan {
                hardware ethernet 00:16:3E:23:8E:65;
                fixed-address arbiter.projects.lan;
        }

        host masterchief.projects.lan {
                hardware ethernet 00:16:3E:A3:B6:5A;
                fixed-address masterchief.projects.lan;
        }

        host cortana.projects.lan {
                hardware ethernet 00:16:3E:C9:42:89;
                fixed-address cortana.projects.lan;
        }

The DNS records are as follows (including my other VMs):

10.80.3 DNS

; jcavalu3 (50-59)
50      IN      PTR     pancake.projects.lan.
51      IN      PTR     vm-051.projects.lan.
52      IN      PTR     vm-052.projects.lan.
53      IN      PTR     vm-053.projects.lan.
54      IN      PTR     vm-054.projects.lan.
55      IN      PTR     vm-055.projects.lan.
56      IN      PTR     vm-056.projects.lan.
57      IN      PTR     arbiter.projects.lan.
58      IN      PTR     masterchief.projects.lan.
59      IN      PTR     cortana.projects.lan.
projects.lan DNS

; jcavalu3 (50-59)
;Group Pancake
pancake                 IN      A       10.80.3.50
vm-051                  IN      A       10.80.3.51
vm-052                  IN      A       10.80.3.52
vm-053                  IN      A       10.80.3.53
vm-054                  IN      A       10.80.3.54
vm-055                  IN      A       10.80.3.55
vm-056                  IN      A       10.80.3.56
client-057              IN      A       10.80.3.57
client-058              IN      A       10.80.3.58
srv-059                 IN      A       10.80.3.59
arbiter                 IN      CNAME   client-057
masterchief             IN      CNAME   client-058
cortana                 IN      CNAME   srv-059

NFS Configuration


Required packages for cortana (NFS server):

  • nfs-kernel-server
  • nfs-common
  • portmap (comes with nfs-common)

Required packages for masterchief and arbiter (clients):

  • nfs-common
  • portmap (comes with nfs-common)

After installing the nfs-kernel-server and nfs-common packages, /etc/exports is your best friend.

The /dev/exports file:

# /etc/exports: the access control list for filesystems which may be exported
#               to NFS clients. See exports(5).
#
# Example for NFSv2 and NFSv3:
/srv       masterchief(rw,sync,no_subtree_check,no_root_squash) arbiter(ro,sync,no_subtree_check,no_root_squash)
#
# Example for NFSv4:
# /srv/nfs4        gss/krb5i(rw,sync,fsid=0,crossmnt,no_subtree_check,no_root_squash)
# /srv/nfs4/homes  gss/krb5i(rw,sync,no_subtree_check,no_root_squash)
#

The uncommented line contains the client mount settings.

fstab has been configured to mount cortana:/home to the client's /home directory.



user/jcavalu3/portfolio/eoce/0x1.1399483910.txt.gz · Last modified: 2014/05/07 17:31 by jcavalu3