• SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

Recent content by pedeb04

  1. pedeb04

    AX86U_Pro packet flood

    Looking at my firewall logs on my Ubuntu Desktop - tail /var/log/ufw.log (ufw uncomplicate firewall) The log file is getting flooded with: 2025-08-23T11:01:39.285489+10:00 nuc kernel: [UFW BLOCK] IN=enp114s0 OUT= MAC=01:00:5e:00:00:01:c8:7f:54:e6:37:08:08:00 SRC=192.168.50.1 DST=224.0.0.1...
  2. pedeb04

    BACKUPMON BACKUPMON v1.9.0 -Sep 6, 2025- Backup/Restore your Router: JFFS + NVRAM + External USB Drive! CIFS/SMB/NFS! (Available in AMTM!)

    @Viktor Jaep Yes it worked, but I noticed my primary backup (USB) was saved as 230 and my secondary backup (Network) was saved as 18. Both are basic. One seems Day of year (normal) and the other Day of Month.
  3. pedeb04

    NFS mounting issues

    👍
  4. pedeb04

    NFS mounting issues

    Yes, I had read that about mountd and before I posted yesterday I did edit the /etc/nfs.conf and set a port under [mountd] restarted the nfs-server and updated the ufw But it still didn't work, so I changed it back to the default #port=0 Today, I set port=9024 for mountd and restarted the...
  5. pedeb04

    NFS mounting issues

    peter@server:/$ rpcinfo -p program vers proto port service 100000 4 tcp 111 portmapper 100000 3 tcp 111 portmapper 100000 2 tcp 111 portmapper 100000 4 udp 111 portmapper 100000 3 udp 111 portmapper 100000 2 udp...
  6. pedeb04

    NFS mounting issues

    Disabling the firewall on the server allowed me to mount the nfs share on the server.:) Port 2049 is allowed already (when I setup the nfs share) so I allowed port 111 tcp & udp on the server, but that didn't work. :( Adding insecure in the export options made no difference. I'm thinking nfsv3...
  7. pedeb04

    NFS mounting issues

    I am using Ubuntu server 24.04 and my Desktop is Ubuntu 24.04 When I mount the nfs share on the server from the desktop I notice the nfsvers=4.2 peter@nuc:~$ nfsstat -m /mnt/nfs from 192.168.50.46:/srv/nfsshared Flags...
  8. pedeb04

    NFS mounting issues

    Changed permissions to 777 on server /srv/sfsshared, nfsv3 is enabled by default on server. no change.
  9. pedeb04

    NFS mounting issues

    Can you try this: mkdir -m 755 -p "/var/lib/nfs" modprobe nfs nfsv3 portmap ...then try your mount statement Still the same, bad file descriptor. server /etc/exports I've tried /srv/nfsshared 192.168.50.0/24(rw,root_squash,anonuid=1000,anongid=1000) /srv/nfsshared...
  10. pedeb04

    NFS mounting issues

    I also tried Victa Jaep new backupmon.sh that implemented those changes curl --retry 3 "https://raw.githubusercontent.com/ViktorJp/BACKUPMON/develop/backupmon.sh" -o "/jffs/scripts/backupmon.sh" && chmod 755 "/jffs/scripts/backupmon.sh" Still error bad file descriptor. Reverted back to unchanged...
  11. pedeb04

    NFS mounting issues

    I ran the following commands on the router: 1. Created directory /var/lib/nfs 2. Loaded the nfs kernel module # modprobe nfs 3. Started portmap as user root # portmap Note did not know how to change to nobody 4. Then started the NFS daemon 3 /usr/sbin/mountd -N 2 5. mount -t nfs...
  12. pedeb04

    NFS mounting issues

    PS I am using a Ubuntu Server and Desktop. I am not familiar with linux OS Asus uses. In Ubuntu to start a service or daemon with systemctl start sevice/daemon I tried it with portmap on the router, but bad command.
  13. pedeb04

    NFS mounting issues

    No could not mount the NFS share manually. 1. Created directory /var/lib/nfs 2. modprobe nfs Then ran # lsmod | grep nfs nfs 155648 0 lockd 81920 1 nfs sunrpc 233472 2 nfs,lockd 3. Don't know how to start portmap, or how to change to user...
  14. pedeb04

    NFS mounting issues

    I tried changing the exports file on the server to /srv/nfsshared 192.168.50.0/24(rw,no_root_squash) Still error bad file descriptor Then because I am the owner of /svr/nfsshared ie uid=1000 and gid=1000 I tried the following /srv/nfsshared...
Back
Top