pygui switched netstat socket observer to use ss instead

This commit is contained in:
Blake Harnden 2020-05-03 22:01:21 -07:00
parent 0e08242128
commit 828254dccd

View file

@ -31,9 +31,9 @@ MAX_FILES = 3
OBSERVERS = { OBSERVERS = {
"List Processes": "ps", "List Processes": "ps",
"Show Interfaces": "ip address", "Show Interfaces": "ip address",
"IPV4 Routes": "ip -4 ro", "IPV4 Routes": "ip -4 route",
"IPV6 Routes": "ip -6 ro", "IPV6 Routes": "ip -6 route",
"Listening Sockets": "netstat -tuwnl", "Listening Sockets": "ss -tuwnl",
"IPv4 MFC Entries": "ip -4 mroute show", "IPv4 MFC Entries": "ip -4 mroute show",
"IPv6 MFC Entries": "ip -6 mroute show", "IPv6 MFC Entries": "ip -6 mroute show",
"Firewall Rules": "iptables -L", "Firewall Rules": "iptables -L",