OpenBSD NFS

2009-05-13 09:01:43来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

Skeletor configuration
NFS configuration file is
/etc/exports. There are many options that you can use in your
/etc/exports file, and it is best that you read the exports(5) man
page. Assuming the network is 10.0.0.0, we have an /etc/exports that
looks like this:
CODE# NFS exports Database
# See exports(5) for more information.  Be very careful, misconfiguration
# of this file can result in your filesystems being readable by the world.
/mda -alldirs -ro -network=10.0.0 -mask=255.255.255.0
This
means that the local filesystem /mda will be made available via NFS.
-alldirs specifies that clients will be able to mount at any point
under the /mda mount point. -ro specifies that it will only be allowed
to be mounted read-only. The last two arguments specify that only
clients within the 10.0.0.0 network using a netmask of 255.255.255.0
will be authorized to mount this filesystem. This is important for some
servers that are accessible by different networks.
portmap(8) must be running for NFS to operate. Portmap is off by default on OpenBSD 3.2 and later, so you must add the line CODEportmap=YES to rc.conf.local(8) and reboot.
Next, you should add the line CODEnfs_server=YES to /etc/rc.conf.local. This will bring up both nfsd(8) and mountd(8) when you reboot.
Beastman configuration
You should add this code to your /etc/fstab
CODE10.0.0.1:/mda /mnt nfs ro 0 0
or, if dns or /etc/hosts are configured properly,
CODEskeletor:/mda /mnt nfs ro 0 0
I
hope, you as an experienced user, know what to do with it? Such things
as mounting it all without reboot should be common to you - just start
the server manually with
CODE/sbin/nfsd -tun 4
echo -n >/var/db/mountdtab
/sbin/mountd
And mount with
CODEmount -o ro -t nfs skeletor:/mda /mnt
To restart the server, run
CODEkill -HUP `cat /var/run/mountd.pid`
Run this to see stats
CODErpcinfo -p 10.0.0.1
More details at
OpenBSD FAQ - NFS
.
               
               
               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/28922/showart_339245.html

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:vmstat

下一篇:FreeBSD下定制KDE的splash(飞溅屏幕)