Apr 6, 2011 #1 raov Technical User Joined Apr 6, 2011 Messages 1 Location GB Can anyone please explain the output of the command netstat -rn? I've been trying to understand it from a long time. Thanks.
Can anyone please explain the output of the command netstat -rn? I've been trying to understand it from a long time. Thanks.
Apr 6, 2011 #2 Noway2 Programmer Joined May 28, 2009 Messages 1,406 Location US Have you tried 'man netstat' and read the man pages? Per the man pages (of Linux - I assume Solaris is similar): -r: Display the kernel routing tables. See the description in route(8) for details. netstat -r and route -e produce the same output. -n: Show numerical addresses instead of trying to determine symbolic host, port or user names Upvote 0 Downvote
Have you tried 'man netstat' and read the man pages? Per the man pages (of Linux - I assume Solaris is similar): -r: Display the kernel routing tables. See the description in route(8) for details. netstat -r and route -e produce the same output. -n: Show numerical addresses instead of trying to determine symbolic host, port or user names
Apr 6, 2011 #3 rclarke250 Technical User Joined Jun 22, 2003 Messages 2,031 Location US http://en.wikipedia.org/wiki/Netstat check this for the most common parameters by OS and their meaning. Upvote 0 Downvote
http://en.wikipedia.org/wiki/Netstat check this for the most common parameters by OS and their meaning.