All public logs

Jump to navigation Jump to search

Combined display of all available logs of I Will Fear No Evil. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 10:27, 6 February 2024 Chubbard talk contribs created page Bash ip addresses (Created page with "==Interesting bash commands working with IP Addresses== =Get routable IP address= So far this seems both the simplest and most straightforward way to reliably get our IP address.. <pre> chubbard@kvm03:~$ ip route get 1.2.3.4 | awk '{print $7}' 192.168.15.107 Details without awk: chubbard@kvm03:~$ ip route get 1.2.3.4 1.2.3.4 via 192.168.15.1 dev enp2s0f0 src 192.168.15.107 uid 1000 cache </pre> Category:Bash")