Adding 0.0.0.0/32 in /etc/exports does not seem to work. Is there some other configuration option that can be used for this?
Adding 0.0.0.0/32 in /etc/exports does not seem to work. Is there some other configuration option that can be used for this?
Try
You might also try reading
man exports
, which has a set of examples at the bottom from which the above is derived. You may also wish to note that0.0.0.0/32
means "only the IP address 0.0.0.0". It is possible that you wwanted0.0.0.0/0
, which means "any IP address", instead, but*
should do as well.You should also set permissions with the share:
If you do not specify a subnet restriction, then there isn't one. E.g.:
Will allow anything to mount
ro
. Think carefully about whether you want to allowrw
orroot
to anything on the network. (You may, but ... well, think about it first)