I am trying to nfs mount a directory from a Ubuntu Linux server (its runs a nfs server) on to my client FreeBSD box (running 6.1).
I issue a commands as follows:
mount_nfs -L -r 32768 -w 32768 -t 14 -o noinet4,rw,tcp,intr fe80::21a:a0ff:feb5:7778:/home/daniel/test /mount/test
and I get an error: "tcp6: Netid not found in netconfig database"
If I tweak a little bit as follows:
mount_nfs -L -r 32768 -w 32768 -t 14 -o noinet4,rw,tcp,intr [fe80::21a:a0ff:feb5:7778]:/home/daniel/test /mount/test
I get an error: "zsh: no matches found: [fe80::21a:a0ff:feb5:7778]:/home/daniel/test"
Finally, If I give the interface name as follows:
mount_nfs -L -r 32768 -w 32768 -t 14 -o noinet4,rw,tcp,intr [fe80::21a:a0ff:feb5:7778%eth0]:/home/daniel/test /mount/test
I still get an error: "zsh: no matches found: [fe80::21a:a0ff:feb5:7778]:/home/daniel/test"
What is the correct way of mounting nfs over IPv6. Same host can seamlessly mount on IPv4.
Any insight is greatly appreciated.
thanks,
I issue a commands as follows:
mount_nfs -L -r 32768 -w 32768 -t 14 -o noinet4,rw,tcp,intr fe80::21a:a0ff:feb5:7778:/home/daniel/test /mount/test
and I get an error: "tcp6: Netid not found in netconfig database"
If I tweak a little bit as follows:
mount_nfs -L -r 32768 -w 32768 -t 14 -o noinet4,rw,tcp,intr [fe80::21a:a0ff:feb5:7778]:/home/daniel/test /mount/test
I get an error: "zsh: no matches found: [fe80::21a:a0ff:feb5:7778]:/home/daniel/test"
Finally, If I give the interface name as follows:
mount_nfs -L -r 32768 -w 32768 -t 14 -o noinet4,rw,tcp,intr [fe80::21a:a0ff:feb5:7778%eth0]:/home/daniel/test /mount/test
I still get an error: "zsh: no matches found: [fe80::21a:a0ff:feb5:7778]:/home/daniel/test"
What is the correct way of mounting nfs over IPv6. Same host can seamlessly mount on IPv4.
Any insight is greatly appreciated.
thanks,