What is being exported is part of the server's filesystem. Whatever it is that you want to share.
That example is just to make a sample export. So, what you want is to edit /etc/exports to have: /sharedroot/folder 192.168.1.1/24(fsid=root,rw,insecure,no_subree_check,async)
Notes:
192.168.1.1/24 to your LAN's address/netmask. This makes it so that only clients on that network can connect the the NFS server. The firewall should also prevent outside connections, but I like to be safe.
Using async basically says allow the server to tell the client any operation succeeded before it gets written out to disk. It is a slight risk of data corruption if the server crashes in the middle of file transfers, but in my experience it's no more risky than a crash itself and not using it hobbles performance so badly it's not worth using NFS. But if you want absolute data safety, change async to sync
Once that's done, you don't need the exportfs command. Just do: /etc/init.d/nfsd restart
Once that is done, on the client you want to do this: mount -t nfs 192.168.1.1:/ /local/mountpoint -o async,soft,nfsvers=4
Notes:
192.168.1.1 - change to the server's address of course
The async is different on the client than on the server. On the client it means it delays sending writes on the network until memory constraints require it to. Basically it means to cache writes as long as possible. Good for performance and on a good LAN pretty safe
nfsvers=4 causes the client to use NFS version 4. Don't use v3 - I have found on every OpenWrt device I have ever tried it on that NFS v3 is prone to causing the network stack to hang under load. NFS v4 is slightly less performant than v3, but much more stable.
soft causes the client to fail with an error if it looses connection, as opposed to hard' which will cause it to basically wait forever if the connection drops. Word of warning, don't ever use hardif the client will be automounting the remote filesystem with its fstab, or else if the remote isn't available you can lose the ability to boot. TBH, I never recommendhard` in any practical circumstance.
At some point you'll prolly want to add the mount to your client's fstab. Just shout out if you want a hand with that.
Sounds like there is a stale mount somewhere. Perhaps it was mounted and the client reset. I would suggest restarting the nfs server and trying again. \etc\init.d\nfsd restart