mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-04-14 22:59:19 +02:00
display Traffic also when connected via WIFI
This commit is contained in:
parent
0bddbd49cc
commit
d278282deb
@ -58,8 +58,13 @@ else
|
||||
fi
|
||||
|
||||
# get network traffic
|
||||
network_rx=$(ifconfig eth0 | grep 'RX packets' | awk '{ print $6$7 }' | sed 's/[()]//g')
|
||||
network_tx=$(ifconfig eth0 | grep 'TX packets' | awk '{ print $6$7 }' | sed 's/[()]//g')
|
||||
if ifconfig | grep -q "eth0"; then
|
||||
network_interface="eth0"
|
||||
else
|
||||
network_interface="wlan0"
|
||||
fi
|
||||
network_rx=$(ifconfig ${network_interface} | grep 'RX packets' | awk '{ print $6$7 }' | sed 's/[()]//g')
|
||||
network_tx=$(ifconfig ${network_interface} | grep 'TX packets' | awk '{ print $6$7 }' | sed 's/[()]//g')
|
||||
|
||||
# Bitcoin blockchain
|
||||
btc_path=$(command -v ${network}-cli)
|
||||
|
Loading…
x
Reference in New Issue
Block a user