KMochidaです。宜しくお願い致します。 ppp0 RedHat9 eth2(192.168.1.1) | eth0(192.168.1.105) vine2.5 としています。 192.168.1.1⇔192.168.1.105 にpingは飛びます。 RedHat9をNFSサーバのディレクトリをvine2.5でdrwxrwxrwxとしてマウントしたくて [root@nfsServer]# iptables -L Chain INPUT (policy ACCEPT) target prot opt source destination Chain FORWARD (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination [root@nfsServer]# cat /etc/exports /home/user01 192.168.0.0/255.255.255.0(rw,no_root_squash) /home/user01/fat32 192.168.0.0/255.255.255.0(rw,no_root_squash) /home/user01 192.168.1.0/255.255.255.0(rw,no_root_squash) /home/user01/fat32 192.168.1.0/255.255.255.0(rw,no_root_squash) /home/user01 192.168.2.0/255.255.255.0(rw,no_root_squash) /home/user01/fat32 192.168.2.0/255.255.255.0(rw,no_root_squash) /home/user01 127.0.0.1(rw,no_root_squash) [root@nfsServer]# service portmap restart portmapperを停止中: [ OK ] portmapperを起動中: [ OK ] [root@nfsServer]# service nfslock restart NFS statdを停止中: [ OK ] NFS statdを起動中: [ OK ] [root@nfsServer]# service nfs restart NFS mountdを終了中: [ OK ] NFSデーモンを終了中: [ OK ] Shutting down NFS quotas: [ OK ] NFSサービスを終了中: [ OK ] NFSサービスを起動中: [ OK ] Starting NFS quotas: [ OK ] NFSデーモンを起動中: [ OK ] NFS mountdを起動中: [ OK ] [root@nfsServer]# ps ax | grep portmap 30461 ? S 0:00 [portmap] 24322 pts/7 S 0:00 grep portmap [root@nfsServer]# ps ax | grep nfs 3013 ? SW 0:00 [nfsd] 3014 ? SW 0:00 [nfsd] 3015 ? SW 0:00 [nfsd] 3016 ? SW 0:00 [nfsd] 3017 ? SW 0:00 [nfsd] 3018 ? SW 0:00 [nfsd] 3019 ? SW 0:00 [nfsd] 3020 ? SW 0:00 [nfsd] 24618 pts/7 S 0:00 grep nfs [root@nfsServer]# ps ax | grep mount 3204 ? S 0:00 rpc.mountd 25077 pts/7 S 0:00 grep mount [root@nfsServer]# mkdir /root/test [root@nfsServer]# mount -t nfs 127.0.0.1:/home/user01 /root/test としてマウントできました。次にvine2.5側で [root@nfsClient]# iptables -L Chain INPUT (policy ACCEPT) target prot opt source destination Chain FORWARD (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination [root@nfsClient]# ps ax | grep rpc ? S 0:00 rpc.statd 943 ? S 0:00 rpc.rquotad 948 ? S 0:00 rpc.mountd 955 ? SW 0:00 [rpciod] 1491 pts/3 S 0:00 grep rpc [root@nfsClient]# ps ax | grep nfs 953 ? SW 0:00 [nfsd] 956 ? SW 0:00 [nfsd] 957 ? SW 0:00 [nfsd] 958 ? SW 0:00 [nfsd] 959 ? SW 0:00 [nfsd] 960 ? SW 0:00 [nfsd] 961 ? SW 0:00 [nfsd] 962 ? SW 0:00 [nfsd] 1494 pts/3 S 0:00 grep nfs [root@nfsClient]# ps ax | grep portmap 555 ? S 0:00 portmap 1497 pts/3 S 0:00 grep portmap [user01@nfsClient]$ mkdir /home/user01/test [root@nfsClient]# mount -t nfs 192.168.1.1:/home/user01 /home/user01/test mount: RPC: プログラムが登録されていません となりマウントできません。NFSサーバのディレクトリをマウントするにはどうすれ ばいいのでしょうか?