2012-10-04 09:54:40 +00:00
|
|
|
diff -up net-tools-2.0/man/en_US/netstat.8.interface net-tools-2.0/man/en_US/netstat.8
|
2014-11-24 14:15:01 +00:00
|
|
|
--- net-tools-2.0/man/en_US/netstat.8.interface 2014-11-24 14:52:45.648623478 +0100
|
|
|
|
+++ net-tools-2.0/man/en_US/netstat.8 2014-11-24 14:53:32.294972184 +0100
|
2014-10-06 08:24:02 +00:00
|
|
|
@@ -49,9 +49,9 @@ netstat \- Print network connections, ro
|
2011-12-06 18:15:09 +00:00
|
|
|
.RB [delay]
|
|
|
|
.P
|
|
|
|
.B netstat
|
|
|
|
-.RB { \-\-interfaces | \-i }
|
|
|
|
+.RB { \-\-interfaces | \-I | \-i }
|
|
|
|
.RB [ \-\-all | \-a ]
|
|
|
|
-.RB [ \-\-extend | \-e [ \-\-extend | \-e] ]
|
|
|
|
+.RB [ \-\-extend | \-e ]
|
|
|
|
.RB [ \-\-verbose | \-v ]
|
|
|
|
.RB [ \-\-program | \-p ]
|
|
|
|
.RB [ \-\-numeric | \-n ]
|
2014-10-06 08:24:02 +00:00
|
|
|
@@ -134,8 +134,8 @@ and
|
2011-12-06 18:15:09 +00:00
|
|
|
produce the same output.
|
2014-11-24 14:15:01 +00:00
|
|
|
.SS "\-\-groups, \-g"
|
2011-12-06 18:15:09 +00:00
|
|
|
Display multicast group membership information for IPv4 and IPv6.
|
|
|
|
-.SS "\-\-interfaces, \-i"
|
|
|
|
-Display a table of all network interfaces.
|
|
|
|
+.SS "\-\-interfaces=\fIiface \fR, \fB\-I=\fIiface \fR, \fB\-i"
|
|
|
|
+Display a table of all network interfaces, or the specified \fIiface\fR.
|
2014-11-24 14:15:01 +00:00
|
|
|
.SS "\-\-masquerade, \-M"
|
2011-12-06 18:15:09 +00:00
|
|
|
Display a list of masqueraded connections.
|
2014-11-24 14:15:01 +00:00
|
|
|
.SS "\-\-statistics, \-s"
|
2012-10-04 09:54:40 +00:00
|
|
|
diff -up net-tools-2.0/netstat.c.interface net-tools-2.0/netstat.c
|
2014-11-24 14:15:01 +00:00
|
|
|
--- net-tools-2.0/netstat.c.interface 2014-11-24 14:52:45.644623534 +0100
|
|
|
|
+++ net-tools-2.0/netstat.c 2014-11-24 14:52:45.652623422 +0100
|
2014-10-06 08:24:02 +00:00
|
|
|
@@ -144,6 +144,7 @@ static char *Release = RELEASE, *Signatu
|
2004-09-09 09:10:51 +00:00
|
|
|
#define E_IOCTL -3
|
|
|
|
|
|
|
|
int flag_int = 0;
|
|
|
|
+char *flag_int_name = NULL;
|
|
|
|
int flag_rou = 0;
|
|
|
|
int flag_mas = 0;
|
|
|
|
int flag_sta = 0;
|
2014-11-24 14:15:01 +00:00
|
|
|
@@ -1788,6 +1789,7 @@ static int rfcomm_info(void)
|
2004-09-09 09:10:51 +00:00
|
|
|
static int iface_info(void)
|
|
|
|
{
|
|
|
|
static int count=0;
|
|
|
|
+ struct interface *ife = NULL;
|
|
|
|
|
|
|
|
if (skfd < 0) {
|
|
|
|
if ((skfd = sockets_open(0)) < 0) {
|
2014-11-24 14:15:01 +00:00
|
|
|
@@ -1802,7 +1804,11 @@ static int iface_info(void)
|
2012-01-27 09:13:18 +00:00
|
|
|
printf(_("Iface MTU RX-OK RX-ERR RX-DRP RX-OVR TX-OK TX-ERR TX-DRP TX-OVR Flg\n"));
|
2004-09-09 09:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- if (for_all_interfaces(do_if_print, &flag_all) < 0) {
|
|
|
|
+ if (flag_int_name) {
|
|
|
|
+ ife = lookup_interface(flag_int_name);
|
|
|
|
+ do_if_print(ife, &flag_all);
|
|
|
|
+ }
|
|
|
|
+ else if (for_all_interfaces(do_if_print, &flag_all) < 0) {
|
|
|
|
perror(_("missing interface information"));
|
|
|
|
exit(1);
|
|
|
|
}
|
2014-11-24 14:15:01 +00:00
|
|
|
@@ -1828,9 +1834,10 @@ static void usage(void)
|
2004-09-09 09:10:51 +00:00
|
|
|
{
|
2011-12-06 18:15:09 +00:00
|
|
|
fprintf(stderr, _("usage: netstat [-vWeenNcCF] [<Af>] -r netstat {-V|--version|-h|--help}\n"));
|
|
|
|
fprintf(stderr, _(" netstat [-vWnNcaeol] [<Socket> ...]\n"));
|
|
|
|
- fprintf(stderr, _(" netstat { [-vWeenNac] -i | [-cnNe] -M | -s [-6tuw] } [delay]\n\n"));
|
|
|
|
+ fprintf(stderr, _(" netstat { [-vWeenNac] -I[<Iface>] | [-veenNac] -i | [-cnNe] -M | -s [-6tuw] } [delay]\n\n"));
|
2004-09-09 09:10:51 +00:00
|
|
|
|
2011-12-06 18:15:09 +00:00
|
|
|
fprintf(stderr, _(" -r, --route display routing table\n"));
|
|
|
|
+ fprintf(stderr, _(" -I, --interfaces=<Iface> display interface table for <Iface>\n"));
|
|
|
|
fprintf(stderr, _(" -i, --interfaces display interface table\n"));
|
|
|
|
fprintf(stderr, _(" -g, --groups display multicast group memberships\n"));
|
|
|
|
fprintf(stderr, _(" -s, --statistics display networking statistics (like SNMP)\n"));
|
2014-11-24 14:15:01 +00:00
|
|
|
@@ -1875,7 +1882,7 @@ int main
|
2004-09-09 09:10:51 +00:00
|
|
|
{
|
|
|
|
AFTRANS_OPTS,
|
|
|
|
{"version", 0, 0, 'V'},
|
|
|
|
- {"interfaces", 0, 0, 'i'},
|
2011-12-06 18:15:09 +00:00
|
|
|
+ {"interfaces", 2, 0, 'I'},
|
2004-09-09 09:10:51 +00:00
|
|
|
{"help", 0, 0, 'h'},
|
|
|
|
{"route", 0, 0, 'r'},
|
|
|
|
#if HAVE_FW_MASQUERADE
|
2014-11-24 14:15:01 +00:00
|
|
|
@@ -1919,7 +1926,7 @@ int main
|
2004-09-09 09:10:51 +00:00
|
|
|
getroute_init(); /* Set up AF routing support */
|
|
|
|
|
|
|
|
afname[0] = '\0';
|
2014-10-06 08:24:02 +00:00
|
|
|
- while ((i = getopt_long(argc, argv, "A:CFMacdeghilnNoprsStuUvVWw2fx64?Z", longopts, &lop)) != EOF)
|
|
|
|
+ while ((i = getopt_long(argc, argv, "A:CFMacdeghiI::lnNoprsStuUvVWw2fx64?Z", longopts, &lop)) != EOF)
|
2004-09-09 09:10:51 +00:00
|
|
|
switch (i) {
|
|
|
|
case -1:
|
|
|
|
break;
|
2014-11-24 14:15:01 +00:00
|
|
|
@@ -1960,6 +1967,13 @@ int main
|
2011-12-06 18:15:09 +00:00
|
|
|
case 'p':
|
2004-09-09 09:10:51 +00:00
|
|
|
flag_prg++;
|
|
|
|
break;
|
2011-12-06 18:15:09 +00:00
|
|
|
+ case 'I':
|
|
|
|
+ if (optarg && strcmp(optarg, "(null)"))
|
|
|
|
+ if (optarg[0] == '=') optarg++;
|
|
|
|
+ if (optarg && strcmp(optarg, "(null)"))
|
|
|
|
+ flag_int_name = strdup(optarg);
|
|
|
|
+ flag_int++;
|
|
|
|
+ break;
|
2004-09-09 09:10:51 +00:00
|
|
|
case 'i':
|
|
|
|
flag_int++;
|
|
|
|
break;
|