You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 2besorted/gdoc_linux.md
+10-11Lines changed: 10 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,17 +50,16 @@ The content below is the raw data from the Google Doc that was first used to col
50
50
|`ifconfig -a`| Show information on network interface configuration |
51
51
|`route -n`| Show routing table for all host IPs |
52
52
|`cat /etc/network/interfaces`| Show network interfaces |
53
-
|`iptables -L -n -v`| text goes here |
54
-
|`iptables -t nat -L -n -v`| text goes here |
55
-
|`ip6tables -L -n -v`| text goes here |
56
-
|`iptables-save`| text goes here |
57
-
|`netstat -anop`| text goes here |
58
-
|`netstat -r`| text goes here |
59
-
|`netstat -nltupw `| Requires root with raw sockets, text goes here |
60
-
|`arp -a`| text goes here |
61
-
|`lsof -nPi`| text goes here |
62
-
|`to resume it ? "cat /proc/net/*" (more discreet)`| text goes here |
63
-
|`what does the above mean? -> It means that all the information given by the above commands can be found by looking into the files under /proc/net , and that this approach is less likely to trigger monitoring or other stuff.`| text goes here |
53
+
|`iptables -L -n -v`| Display all iptables rules |
|`netstat -anop`| Display all open network connections and processes associated |
58
+
|`netstat -r`| Display the kernel routing tables |
59
+
|`netstat -nltupw`| Requires root with raw sockets: numeric, listening, Value of watch dog timer (requires `-i`), Limit statistics to AF_UNIX family, Display program, wait <numberofseconds> |
60
+
|`arp -a`| Shows arp table |
61
+
|`lsof -nPi`| list of what processes are listening on what ports |
62
+
|`cat /proc/net/*`| Find all information about the hosts networking using only the cat command--less likely to trigger alarms |
0 commit comments