From owner-freebsd-commit Sat Feb 24 14:11:13 1996 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id OAA22885 for freebsd-commit-outgoing; Sat, 24 Feb 1996 14:11:13 -0800 (PST) Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id OAA22869 for cvs-all-outgoing; Sat, 24 Feb 1996 14:11:05 -0800 (PST) Received: (from wpaul@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id OAA22815 Sat, 24 Feb 1996 14:10:47 -0800 (PST) Date: Sat, 24 Feb 1996 14:10:47 -0800 (PST) From: Bill Paul Message-Id: <199602242210.OAA22815@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-usrsbin Subject: cvs commit: src/usr.sbin/rpc.yppasswdd Makefile rpc.yppasswdd.8 yppasswdd_extern.h yppasswdd_main.c yppasswdd_server.c Sender: owner-commit@FreeBSD.ORG Precedence: bulk wpaul 96/02/24 14:10:46 Modified: usr.sbin/rpc.yppasswdd Makefile rpc.yppasswdd.8 yppasswdd_extern.h yppasswdd_main.c yppasswdd_server.c Log: Add securenets support (uses same access control mechanism as ypserv, also controlled by /var/yp/securenets). Add -u flag to turn off the privileged port check done by yp_access(); some commercial systems (IRIX, Solaris 2.x, HP-UX, and probably others) don't use a reserved port for submitting yppasswd updates. If we always enforce the check, these client systems will be unable to submit updates to us. Document securenets support and -u flag in man page. Like ypserv, you can compile rpc.yppasswdd to use the tcpwrapper package instead of securenets if you want to. Revision Changes Path 1.2 +2 -2 src/usr.sbin/rpc.yppasswdd/Makefile 1.2 +40 -2 src/usr.sbin/rpc.yppasswdd/rpc.yppasswdd.8 1.2 +4 -1 src/usr.sbin/rpc.yppasswdd/yppasswdd_extern.h 1.2 +21 -5 src/usr.sbin/rpc.yppasswdd/yppasswdd_main.c 1.2 +8 -2 src/usr.sbin/rpc.yppasswdd/yppasswdd_server.c