Or Asus P10S-I. A bit more money but you get more onboard LAN ports and more CPU power (and choice). Not quite so niche so not so difficult to purchase either.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: Wombat on August 18, 2018, 07:57:03 AM
Although I have bridge set up as a unmanaged switch now, I am interested if there is a more efficient way to set this up. Not sure if the unmanage switches are smart enough i that they only route traffic onto the port where the device is connected...or it 'broadcasts' it on all ports hoping one has the device with that IP is connected. May i the future need to make work smarter to reduce network loading (especially if I add a few more IP cameras).
#!/bin/bash
function age() {
local filename=$1
local changed=`stat -c %Y "$filename"`
local now=`date +%s`
local elapsed
let elapsed=now-changed
echo $elapsed
}
/root/pki/fetch.sh
# push new certs if less that 7.5d old
if [ $(age "/root/pki/cert.pem") -lt 648000 ]; then
/root/pki/push.sh
fi
#!/bin/sh
rsync --checksum -Ltve 'ssh' root@192.168.xx.yy:/etc/letsencrypt/live/[mydomain]/* /root/pki/
#!/bin/sh
echo Pushing config
scp /root/pki/*.pem root@192.168.aaa.bbb:/etc/pki/tls/letsencrypt/
scp /root/pki/*.pem root@192.168.ccc.ddd:/etc/pki/tls/letsencrypt/
[...]
echo Restarting remote services
ssh root@192.168.aaa.bbb "systemctl restart postfix"
ssh root@192.168.aaa.bbb "systemctl restart dovecot"
ssh root@192.168.ccc.ddd "systemctl restart apache2"
[...]
foo$ ./iperf3 -c 192.168.200.10
Connecting to host 192.168.200.10, port 5201
[ 4] local 192.168.1.174 port 49559 connected to 192.168.200.10 port 5201
[ ID] Interval Transfer Bandwidth
[ 4] 0.00-1.01 sec 210 KBytes 1.71 Mbits/sec
[ 4] 1.01-2.01 sec 0.00 Bytes 0.00 bits/sec
[ 4] 2.01-3.01 sec 0.00 Bytes 0.00 bits/sec
[ 4] 3.01-4.00 sec 0.00 Bytes 0.00 bits/sec
[ 4] 4.00-5.01 sec 0.00 Bytes 0.00 bits/sec
[ 4] 5.01-6.00 sec 0.00 Bytes 0.00 bits/sec
[ 4] 6.00-7.01 sec 0.00 Bytes 0.00 bits/sec
[ 4] 7.01-8.00 sec 0.00 Bytes 0.00 bits/sec
[ 4] 8.00-9.01 sec 0.00 Bytes 0.00 bits/sec
[ 4] 9.01-10.00 sec 0.00 Bytes 0.00 bits/sec
- - - - - - - - - - - - - - - - - - - - - - - - -
[ ID] Interval Transfer Bandwidth
[ 4] 0.00-10.00 sec 210 KBytes 172 Kbits/sec sender
[ 4] 0.00-10.00 sec 65.0 KBytes 53.3 Kbits/sec receiver