|
vmware+fedora7.0,通过桥接网络连接到外网
设置好nfs服务器后,关闭iptables,外面可以正常的连接上来;但是一打开iptables ,外面就连不上了,后来研究了一下iptables ,使用了如下这样的规则,还是不能打开nfs,请教是那里有问题?
iptables -I INPUT -p tcp --dport 2049 -j ACCEPT #nfs
iptables -I INPUT -p tcp --dport 111 -j ACCEPT #portmap?
iptables -I INPUT -p tcp --dport 662 -j ACCEPT #rpc?
iptables -I INPUT -p udp --dport 2049 -j ACCEPT #nfs
iptables -I INPUT -p udp --dport 111 -j ACCEPT #portmap?
iptables -I INPUT -p udp --dport 662 -j ACCEPT #rpc?
出错提示是这样的:
...
[ 2.551259] Looking up port of RPC 100003/2 on 193.168.1.194
[ 3.510494] PHY: 0:01 - Link is Up - 100/Full
[ 3.561676] Looking up port of RPC 100005/1 on 193.168.1.194
[ 33.570365] Root-NFS: Server returned error -5 while mounting /tftpboot/rootf
s
[ 33.577960] VFS: Unable to mount root fs via NFS, trying floppy.
请教要设置怎样的规则才可以让外面的机器访问fedora7.0的nfs服务器? |
|