NIS 客户端的设置
nis 服务器的地址 server1.example.com
nis 使用的域 example.com
nis 服务器使用的端口为866 <---可选 <-- -m state ..
设置之后,使用帐号nisuser4 登录系统,
该用户的家目录在/home/nisuser/nisuser4 (这个目录你本机肯定是不存在,这个目录仅仅存在于nis服务器)
1、使用图形命令配置NIS的相关信息
# system-config-authentication
2、配置自动挂载,实现用户家目录的自动挂载
# vim /etc/auto.master
/home/nisuser /etc/auto.home --timeout=60
# vim /etc/auto.home
* -rw,soft,intr 192.168.0.254:/home/nisuser/&
^^^
3、启动nis客户端相关的服务
# chkconfig portmap on
# chkconfig ypbind on
# chkconfig autofs on
# service portmap restart
# service ypbind restart
# service autofs restart
4、iptables的设定
iptables -I INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A INPUT -i lo -j ACCEPT
iptables -A INPUT -p tcp -m multiport --sport 111,866 -j ACCEPT
iptables -A INPUT -p udp -m multiport --sport 111,866 -j ACCEPT
注意:866这个端口,是根据服务器的设定,没有告诉就不需要添加该端口的规则,直接开放111端口就行了。一般来说,确保第一条规则存在就行了。
nis 服务器的地址 server1.example.com
nis 使用的域 example.com
nis 服务器使用的端口为866 <---可选 <-- -m state ..
设置之后,使用帐号nisuser4 登录系统,
该用户的家目录在/home/nisuser/nisuser4 (这个目录你本机肯定是不存在,这个目录仅仅存在于nis服务器)
1、使用图形命令配置NIS的相关信息
# system-config-authentication
2、配置自动挂载,实现用户家目录的自动挂载
# vim /etc/auto.master
/home/nisuser /etc/auto.home --timeout=60
# vim /etc/auto.home
* -rw,soft,intr 192.168.0.254:/home/nisuser/&
^^^
3、启动nis客户端相关的服务
# chkconfig portmap on
# chkconfig ypbind on
# chkconfig autofs on
# service portmap restart
# service ypbind restart
# service autofs restart
4、iptables的设定
iptables -I INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A INPUT -i lo -j ACCEPT
iptables -A INPUT -p tcp -m multiport --sport 111,866 -j ACCEPT
iptables -A INPUT -p udp -m multiport --sport 111,866 -j ACCEPT
注意:866这个端口,是根据服务器的设定,没有告诉就不需要添加该端口的规则,直接开放111端口就行了。一般来说,确保第一条规则存在就行了。