DCHP+NIS(LINUX )
精选 转载DCHP+NIS(LINUX )
一. NIS概述:
a) NIS即网络信息系统(NETWORK INFORMATION SERVICE),是对主机帐号等系统信息提供集中管理的网络服务.
b) NIS服务最早是由SUN公司提出的,因此也称作SUN yellow pages,简称yp.
c) NIS服务器的应用结构分为NIS服务器和NIS客户机两种角色.
d) NIS服务器为NIS客户机提供的信息不仅限于用户帐户信息,在NIS服务器的数据库中包括以下几类信息:
E) NIS服务器的配置文件/etc/ypserv.conf
主机地址:网络域名:映射数据库类型:安全等级
安全等级可设置为none,port,deny关键字,
127.0.0.0/255.255.255.0 :*:*:none
192.168.1.0/255.255.255.0:*:*:none
*:*:*:deny
F)securenets安全配置文件
#vi /etc/yp/securenets
Host 127.0.0.1
255.255.255.0 192.168.1.0
1. 安装DHCP服务器软件
#vi /etc/sysconfig/network-scripts/ifcfg-eth0
(配置网卡地址为192.168.20.2)
#rpm –qa |grep dhcp
#mount /dev/cdrom /mnt
#rpm –ivh /mnt/Server/dhcp-3.0.1-12_el.i386.rpm
#vi /etc/dhcpd.conf
Ddns-update-style interim;
Ignore client-update;
Default-lease-time 21600;
Max-lease-time 43200;
Option domain-name “test.com”;
Option domain-name-servers 192.168.20.1,202.106.46.151;
Subnet 192.168.20.0 netmask 255.255.255.0{
}
2. 安装NIS服务器软件包
NIS 服务器端的配置:
添加用户
#rpm –qa |grep ^yp
#rpm –q portmap
#mount /dev/cdrom /mnt
#rpm –ivh ypserv-2.13-5.i386.rpm
#chkconfig time on
#chkconfig time-udp on
#service xinetd restart
#nisdomainname nistest
#echo ‘/bin/nisdomainname nistest’>>/etc/rc.d/rc.local
#echo ‘NISDOMAIN=nistest’>>/etc/sysconfig/network
#service portmap status
#service ypserv start
#service yppasswdd start
#chkconfig –list |grep yp
#chkconfig –level 35 ypserv on
#chkconfig –level 35 yppasswdd on
#/usr/lib/yp/ypinit –m 添加主机为服务器名LinServ
#ls /var/yp/nistest
NIS客户端的配置管理:
#rpm –qa|grep ^yp
#rpm –ql ypbind
#rpm –ql yp-tools|grep bin
#echo ‘192.168.20.2 LinServ’>>/etc/hosts
#nisdomainname nistest
#echo ‘/bin/nisdomainname nistest’>>/etc/rc.d/rc.local
#echo ‘NISDOMAIN=nistest’>>/etc/sysconfig/network
#echo ‘domain nistest server LinServ’>>/etc/yp.conf
#vi /etc/nsswitch.conf
编辑如下:
Passwd:files nis
Shadow:files nis
Group:files nis
Hosts:files nis dns
#service portmap status
#service ypbind start
#chkconfig –list |grep yp
#chkconfig –list 35 ypbind on
#chkconfig –level 35 ypbind on
#yptest
#ypwhich or ypwhich –x or ypcat –x
#mount –t nfs LinServ:/home /home
#vi /etc/fstab
添加:
192.168.20.2:/home /home nfs defaults 0 0
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Linux Server - NIS
Linux Server - NIS
Linux 职场 Server 休闲 NIS -
linux shell nis
linux shell nis
linux shell nis -
linux服务之NIS
linux服务之NIS
linux 职场 休闲 NIS