Re: nfs-kernel-server

2022-08-20 Thread Greg Wooledge
On Sat, Aug 20, 2022 at 06:21:21PM -0700, Wylie wrote: > > i am getting this error ... on a fresh install of nfs-kernel-server > >   mount.nfs: access denied by server while mounting > 192.168.42.194:/ShareName > > i'm not having this issue on other machines installed previously > i've tried re-

Re: nfs-kernel-server installation issues

2011-03-01 Thread Sascha
Good morning. The last days, i updated the dockstar to Debian Squeeze and nfs-kernel-server works without any problems. pgpTJdrliikbr.pgp Description: PGP signature

Re: nfs-kernel-server installation issues

2011-02-03 Thread Sascha
Am 03.02.2011 21:37, schrieb Horst Schleicher: > Hi Sascha, > > I got the same trouble installing the nfs-kernel-server on my dockstar > with debian squeeze install. This already happens at the apt-get install > stage and subsequent in the config. > > Here the output: > > Setting up nfs-kernel-s

Re: nfs-kernel-server installation issues

2011-02-03 Thread Horst Schleicher
Hi Sascha, I got the same trouble installing the nfs-kernel-server on my dockstar with debian squeeze install. This already happens at the apt-get install stage and subsequent in the config. Here the output: Setting up nfs-kernel-server (1:1.2.2-4) ... Starting NFS common utilities: statd. E

Re: nfs-kernel-server and firewalls

2004-07-04 Thread Tadeusz Bak
On Fri, 2 Jul 2004, Tom Allison wrote: > I guess what I should be asking is where/how do I bind specific ports? > > I can't find anything in the man pages (at least the ones I'm looking > at) to set this up. I am running the kernel based server so I may have What I had in mind was to add the o

Re: nfs-kernel-server and firewalls

2004-07-03 Thread Tom Allison
Ernest Johanson wrote: Right. It can go in /etc/init.d or in /etc/network/interfaces. Probably better in interfaces so the rules are applied as soon as the interfaces are up. I got the distinct impression that running firewall scripts using the /etc/network/if-up.d and /etc/network/if-down.d dire

Re: nfs-kernel-server and firewalls

2004-07-03 Thread Ernest Johanson
Right. It can go in /etc/init.d or in /etc/network/interfaces. Probably better in interfaces so the rules are applied as soon as the interfaces are up. On Sat, 3 Jul 2004, Tom Allison wrote: > Ernest Johanson wrote: > > Good refinement to tighten things up. > > > > > > Thanks. > > I thought it w

Re: nfs-kernel-server and firewalls

2004-07-02 Thread Tom Allison
Ernest Johanson wrote: Good refinement to tighten things up. Thanks. I thought it would be necessary to re-run rpcinfo each time I booted because I can't find anything that says these ports are a certainty. That, and I only have NFS 3 support that I have to worry about. # NFS # First you open

Re: nfs-kernel-server and firewalls

2004-07-02 Thread Ernest Johanson
Good refinement to tighten things up. On Fri, 2 Jul 2004, Tom Allison wrote: > Ernest Johanson wrote: > > Been following this thread and understand that the goal is to configure a > > firewall to control access to the ports used for NFS. If so, then suggest > > the following: > > > > #!/bin/sh >

Re: nfs-kernel-server and firewalls

2004-07-02 Thread Tom Allison
Ernest Johanson wrote: Been following this thread and understand that the goal is to configure a firewall to control access to the ports used for NFS. If so, then suggest the following: #!/bin/sh NFSPORTS=`rpcinfo -p | awk '/tcp/||/udp/ {print $4}' | sort | uniq` for PORT_NUM in $NFSPORTS do

Re: nfs-kernel-server and firewalls

2004-07-02 Thread Alvin Oga
On Fri, 2 Jul 2004, Tom Allison wrote: > /etc/exports: > /var/www192.168.1.0/24(rw,no_root_squash) > > These are identical on both machines > /etc/hosts.allow is identical on both machines (empty) to allow only certain machines to connect and disallow others on the NFS server: server

Re: nfs-kernel-server and firewalls

2004-07-02 Thread Ernest Johanson
Been following this thread and understand that the goal is to configure a firewall to control access to the ports used for NFS. If so, then suggest the following: #!/bin/sh NFSPORTS=`rpcinfo -p | awk '/tcp/||/udp/ {print $4}' | sort | uniq` for PORT_NUM in $NFSPORTS do iptables -A INPUT -j

Re: nfs-kernel-server and firewalls

2004-07-02 Thread Thomas Adam
--- [EMAIL PROTECTED] wrote: > But I'm wondering what it is that I'm missing. > Is this the difference between kernel and user nfs servers? > Are there some args to pass at modprobe time? Not in terms of options -- NFS configuration is done in the userland level usually. -- Thomas Adam = "

Re: nfs-kernel-server and firewalls

2004-07-02 Thread tallison
> On Fri, 02 Jul 2004 05:10:10 +0200, Tom Allison wrote: >> Portmapper sits on one port, but it's redirecting the nfs connection all >> over the place. I can't seem to nail it down to one set of ports. > > The only way I can think of sorting this out would be to allow any > packets between the ser

Re: nfs-kernel-server and firewalls

2004-07-02 Thread Stephen Patterson
On Fri, 02 Jul 2004 05:10:10 +0200, Tom Allison wrote: > Portmapper sits on one port, but it's redirecting the nfs connection all > over the place. I can't seem to nail it down to one set of ports. The only way I can think of sorting this out would be to allow any packets between the server and

Re: nfs-kernel-server and firewalls

2004-07-02 Thread Tom Allison
Tadeusz Bak wrote: On Thu, 1 Jul 2004, Tom Allison wrote: Portmapper sits on one port, but it's redirecting the nfs connection all over the place. I can't seem to nail it down to one set of ports. The rpc services called by portmaper can be binded to specific ports, see man pages for details. To

Re: nfs-kernel-server and firewalls

2004-07-02 Thread Tom Allison
Tadeusz Bak wrote: On Thu, 1 Jul 2004, Tom Allison wrote: Portmapper sits on one port, but it's redirecting the nfs connection all over the place. I can't seem to nail it down to one set of ports. The rpc services called by portmaper can be binded to specific ports, see man pages for details. To

Re: nfs-kernel-server and firewalls

2004-07-01 Thread Tadeusz Bak
On Thu, 1 Jul 2004, Tom Allison wrote: > Portmapper sits on one port, but it's redirecting the nfs connection all > over the place. I can't seem to nail it down to one set of ports. The rpc services called by portmaper can be binded to specific ports, see man pages for details. To find out wha

Re: nfs-kernel-server and firewalls

2004-07-01 Thread Tom Allison
Thomas Adam wrote: --- Tom Allison <[EMAIL PROTECTED]> wrote: What are my options? Do I have to hard code the port number into the /etc/default/nfs-kernel-server and the client fstab files and the iptables script? What about changing the port that portmapper listens on? Portmapper sits on one

Re: nfs-kernel-server and firewalls

2004-07-01 Thread Thomas Adam
--- Tom Allison <[EMAIL PROTECTED]> wrote: > What are my options? > > Do I have to hard code the port number into the > /etc/default/nfs-kernel-server and the client fstab files and the > iptables script? What about changing the port that portmapper listens on? -- Thomas Adam = "The Lin

Re: nfs-kernel-server with tcp

2002-08-30 Thread Nick Traxler
This one time, at band camp, Jean-Michel Besnard said: > Is there a way I could have tcp as well for nfsd ? Read the NFS-HOWTO at: http://www.ibiblio.org/pub/Linux/docs/HOWTO/NFS-HOWTO It tells you there is a patch for kernel 2.4.17 and later to support NFS over TCP. Section 2.5 of that documen

Re: nfs-kernel-server

2000-11-19 Thread Ethan Benson
On Sun, Nov 19, 2000 at 06:04:11PM +1100, Bek Oberin wrote: > I can't seem to start the nfsd stuff. Here's my /etc/exports: > > /home 196.168.1.20(rw) 192.168.1.21(rw) > > And here's what I get when I try to start the daemon: > > [EMAIL PROTECTED] /etc/init.d# ./nfs-kernel-server start > Export

Re: nfs-kernel-server problem: nfssvc: Function not implemented

2000-01-22 Thread Chris Baker
Tapio Lehtonen <[EMAIL PROTECTED]> writes: > Hello, > > Help, please. I'm running kernel 2.2.14 i386, compiled with kernel > autofs and nfs support. When I try to start nfs-kernel-server, I get > > dilbert# /etc/rc2.d/S20nfs-kernel-server start > Starting NFS kernel daemon: export nfsd nfssvc: F