summaryrefslogtreecommitdiff
path: root/functions/tech-support
diff options
context:
space:
mode:
Diffstat (limited to 'functions/tech-support')
-rw-r--r--functions/tech-support22
1 files changed, 15 insertions, 7 deletions
diff --git a/functions/tech-support b/functions/tech-support
index 61422d9..4d276e0 100644
--- a/functions/tech-support
+++ b/functions/tech-support
@@ -78,7 +78,13 @@ header PCI Info
lspci
header System Info
-sudo ${vyatta_bindir}/sudo-users/dmidecode
+find -L /sys/class/dmi/id -type f 2>/dev/null | \
+ while read f; do
+ if [ -r $f ]; then
+ echo -n " $(basename $f): "
+ cat $f
+ fi
+ done
header Interfaces
show interfaces
@@ -128,8 +134,10 @@ cat /etc/apt/sources.list
header /etc/ipsec.conf
cat /etc/ipsec.conf
-header /etc/ipsec.secrets
-sudo cat /etc/ipsec.secrets
+if [ -r /etc/ipsec.secrets ]; then
+ header /etc/ipsec.secrets
+ cat /etc/ipsec.secrets
+fi
header \''ls -l /etc/rc?.d'\'
ls -l /etc/rc?.d
@@ -138,16 +146,16 @@ header /etc/rc.local
cat /etc/rc.local
header \''iptables -L -vn'\'
-sudo ${vyatta_bindir}/sudo-users/iptables -L -vn
+/sbin/iptables -L -vn
header \''iptables -t nat -L -vn'\'
-sudo ${vyatta_bindir}/sudo-users/iptables -t nat -L -vn
+/sbin/iptables -t nat -L -vn
header \''iptables -t mangle -L -vn'\'
-sudo ${vyatta_bindir}/sudo-users/iptables -t mangle -L -vn
+/sbin/iptables -t mangle -L -vn
header \''iptables -t raw -L -vn'\'
-sudo ${vyatta_bindir}/sudo-users/iptables -t raw -L -vn
+/sbin/iptables -t raw -L -vn
header \''show ip route'\'
show ip route