NIS和NFS联合应用问题

NIS和NFS联合应用问题

两台机器,一台是NIS服务器,另一台加入到它的NIS域中了,现在NIS服务器通过NFS把/home/student目录共享出来了,此目录下是用户student1和student2的家目录,即/home/student/student1,/home/student/student2
现在要求NIS客户机当域用户登陆时通过autofs自动把服务器上/home/student挂载到本地,问题是当域用户登陆时挂载,其他人登陆。和开机时不挂载。如何实现呀
/etc/auto.master
[code:1]
/home     /etc/auto.misc          --timeout=60
[/code:1]

/etc/auto.misc
[code:1]
*     -fstype=nfs,rw      <server>:/home/&
[/code:1]

chkconfig autofs on