“On one hand, it’s silly to complain about free software that comes with low-priced networking equipment. On the other hand, UISP isn’t the feature-packed all-in-one network management and configuration solution that Ubiquiti claims it to be. What concerns me the most is Ubiquiti’s stated goals, and their history of releasing […]
Category: OS
Debian SNMPD Logging, Connection from UDP
If you are getting those useless “Connection from UDP” from the snmpd daemon, specifically on Debian this is the fix. None of that shit you read about editing /etc/default/snmpd works, you have to edit /lib/systemd/system/snmpd.service directly since it doesn’t use /etc/default/snmpd at all. Fucking developers, package maintainers. THIS IS HOW […]
Chrony Clients to the GPS Clocks
apt-get install chrony systemctl enable chrony systemctl start chrony systemctl status chrony /etc/chrony/chrony.conf # Source servers server gps1.my.side iburst server gps2.my.side iburst pool pool.ntp.org maxsources 3 # Act as an NTP server #allow # Only allow chronyc from the localhost cmdallow 127.0.0.1 # Record the rate at which the system […]
Chrony+GPSD (PPS+GPS) on Pi
apt-get update; apt-get -y dist-upgrade; apt -y autoremove; apt clean; apt autoclean root@gps1:~# cat /etc/apt/sources.list deb http://approx.my.side/raspbian/ bullseye main contrib non-free rpi apt clean; apt update; apt upgrade; apt dist-upgrade; apt autoremove reboot apt-get install snmpd apt-get install lsof Configure remote logging ln -s /usr/share/zoneinfo/US/Central /etc/localtime Set swap to 1G […]