Access a device on another subnet connected to your current network

Use a Raspberry Pi to change default IP Addresses on newly installed devices in a remote Control Panel We have many control systems out in the field connected to our office using IPSEC VPNs. Each control system needs its own subnet (usually a 192.168.x.x/24) to make this work. So, a problem arises if a new […]

Error Mounting NFS Share on Raspbian

$ sudo mount 192.168.1.4:/some-nfs-share /media/some-local-path mount.nfs: rpc.statd is not running but is required for remote locking. mount.nfs: Either use ‘-o nolock’ to keep locks local, or start statd. mount.nfs: an incorrect mount option was specified Solution: Enable the rpcbind and nfs services: $ sudo update-rc.d rpcbind enable $ sudo update-rc.d nfs-common enable Restart the rpcbind […]