ad34f5a438
Submitted by: Philippe Charnier <charnier@xp11.frmug.org>
12 lines
183 B
Bash
Executable File
12 lines
183 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $Id: 420.status-network,v 1.1.1.1 1997/08/16 17:04:01 pst Exp $
|
|
#
|
|
|
|
if [ -x /usr/bin/netstat ] ; then
|
|
echo ""
|
|
echo "Network interface status:"
|
|
|
|
netstat -i
|
|
fi
|