Oct 7, 2005 #1 terrywashington Technical User Joined Jun 28, 2001 Messages 185 Location US Is there a way to configure a client running AIX 5.3 to use an NIS server that is on a different network segment?
Is there a way to configure a client running AIX 5.3 to use an NIS server that is on a different network segment?
Oct 31, 2005 #2 jonoheap IS-IT--Management Joined Feb 11, 2003 Messages 12 Location GB Do you mean a different subnet? If so then you can make updates to the /etc/rc.nfs file. Look for the line ypbind if [ -x /usr/lib/netsvc/yp/ypbind ] then start ypbind /usr/lib/netsvc/yp/ypbind fi REPLACE IT WITH if [ -x /usr/lib/netsvc/yp/ypbind ] then startsrc -s "ypbind" -a "-ypset" sleep 10 /usr/bin/ypset {NIS server name} fi I used have this solution in AIX4 and I see no reason why it would not work in AIX5. Upvote 0 Downvote
Do you mean a different subnet? If so then you can make updates to the /etc/rc.nfs file. Look for the line ypbind if [ -x /usr/lib/netsvc/yp/ypbind ] then start ypbind /usr/lib/netsvc/yp/ypbind fi REPLACE IT WITH if [ -x /usr/lib/netsvc/yp/ypbind ] then startsrc -s "ypbind" -a "-ypset" sleep 10 /usr/bin/ypset {NIS server name} fi I used have this solution in AIX4 and I see no reason why it would not work in AIX5.
Oct 31, 2005 Thread starter #3 terrywashington Technical User Joined Jun 28, 2001 Messages 185 Location US Thanks for the info! I will give that a try as soon as I get a chance. Upvote 0 Downvote