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
Martin Braun edited this page Nov 17, 2022
·
2 revisions
Networking
ip -s xfrm state
//Displays established ipsec tunnels and their settings
ping -M do -s 1490
//"-M do" tells ping to not fragment packages
//"-s 1490" set the size of each package at 1490 bytes
tcpdump -i any proto TCP -nn
//"-i any" define the capturing interface as "any"
//"proto TCP" filters by TCP only packages
//"-nn" Disables IP, Protocols and Port resolution from the outcome