1LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
2
3STRINGTABLE
4BEGIN
5    IDS_USAGE "\nDisplays current TCP/IP protocol statistics and network connections.\n\n\
6NETSTAT [-a] [-b] [-e] [-n] [-o] [-p proto] [-r] [-s] [-t] [-v] [interval]\n\n\
7  -a            Displays all connections and listening ports.\n\
8  -b            FIXME (Accepted option though unimplemented feature).\n\
9  -e            Displays Ethernet statistics. May be combined with -s\n\
10                option.\n\
11  -n            Displays address and port numbers in numeric form.\n\
12  -o            Displays the process ID for each connection.\n\
13  -p proto      Shows connections for protocol 'proto' TCP or UDP.\n\
14                If used with the -s option to display\n\
15                per-protocol statistics, 'proto' may be TCP, UDP, or IP.\n\
16  -r            Displays the current routing table.\n\
17  -s            Displays per-protocol statistics. By default, Statistics are\n\
18                shown for IP, ICMP, TCP and UDP;\n\
19                the -p option may be used to specify a subset of the default.\n\
20  -t            FIXME (Accepted option though unimplemented feature).\n\
21  -v            FIXME (Accepted option though unimplemented feature).\n\
22  interval      Redisplays selected statistics every 'interval' seconds.\n\
23                Press CTRL+C to stop redisplaying. By default netstat will\n\
24                print the current information only once.\n"
25    IDS_DISPLAY_THEADER "\n  Proto  Local Address          Foreign Address        State"
26    IDS_DISPLAY_PROCESS "       Process\n"
27    IDS_ACTIVE_CONNECT "\nActive Connections\n"
28END
29
30STRINGTABLE
31BEGIN
32    IDS_IP4_STAT_HEADER "\nIPv4 Statistics\n\n"
33    IDS_IP_PACK_REC            "  Packets Received                   = %lu\n"
34    IDS_IP_HEAD_REC_ERROR      "  Received Header Errors             = %lu\n"
35    IDS_IP_ADDR_REC_ERROR      "  Received Address Errors            = %lu\n"
36    IDS_IP_DATAG_FWD           "  Datagrams Forwarded                = %lu\n"
37    IDS_IP_UNKNOWN_PRO_REC     "  Unknown Protocols Received         = %lu\n"
38    IDS_IP_REC_PACK_DISCARD    "  Received Packets Discarded         = %lu\n"
39    IDS_IP_REC_PACK_DELIVER    "  Received Packets Delivered         = %lu\n"
40    IDS_IP_OUT_REQUEST         "  Output Requests                    = %lu\n"
41    IDS_IP_ROUTE_DISCARD       "  Routing Discards                   = %lu\n"
42    IDS_IP_DISCARD_OUT_PACK    "  Discarded Output Packets           = %lu\n"
43    IDS_IP_OUT_PACKET_NO_ROUTE "  Output Packet No Route             = %lu\n"
44    IDS_IP_REASSEMBLE_REQUIRED "  Reassembly Required                = %lu\n"
45    IDS_IP_REASSEMBLE_SUCCESS  "  Reassembly Successful              = %lu\n"
46    IDS_IP_REASSEMBLE_FAILURE  "  Reassembly Failures                = %lu\n"
47    IDS_IP_DATAG_FRAG_SUCCESS  "  Datagrams Successfully Fragmented  = %lu\n"
48    IDS_IP_DATAG_FRAG_FAILURE  "  Datagrams Failing Fragmentation    = %lu\n"
49    IDS_IP_DATAG_FRAG_CREATE   "  Fragments Created                  = %lu\n"
50END
51
52STRINGTABLE
53BEGIN
54    IDS_ICMP4_STAT_HEADER "\nICMPv4 Statistics\n\n"
55    IDS_ICMP_THEADER             "                            Received    Sent\n"
56    IDS_ICMP_MSG                 "  Messages                  %-11lu %-10lu\n"
57    IDS_ICMP_ERROR               "  Errors                    %-11lu %-10lu\n"
58    IDS_ICMP_DEST_UNREACH        "  Destination Unreachable   %-11lu %-10lu\n"
59    IDS_ICMP_TIME_EXCEED         "  Time Exceeded             %-11lu %-10lu\n"
60    IDS_ICMP_PARAM_PROBLEM       "  Parameter Problems        %-11lu %-10lu\n"
61    IDS_ICMP_SRC_QUENCHES        "  Source Quenches           %-11lu %-10lu\n"
62    IDS_ICMP_REDIRECT            "  Redirects                 %-11lu %-10lu\n"
63    IDS_ICMP_ECHO                "  Echos                     %-11lu %-10lu\n"
64    IDS_ICMP_ECHO_REPLY          "  Echo Replies              %-11lu %-10lu\n"
65    IDS_ICMP_TIMESTAMP           "  Timestamps                %-11lu %-10lu\n"
66    IDS_ICMP_TIMESTAMP_REPLY     "  Timestamp Replies         %-11lu %-10lu\n"
67    IDS_ICMP_ADDRESSS_MASK       "  Address Masks             %-11lu %-10lu\n"
68    IDS_ICMP_ADDRESSS_MASK_REPLY "  Address Mask Replies      %-11lu %-10lu\n"
69END
70
71STRINGTABLE
72BEGIN
73    IDS_TCP4_HEADER         "\nTCP Statistics for IPv4\n\n"
74    IDS_TCP_ACTIVE_OPEN     "  Active Opens                        = %lu\n"
75    IDS_TCP_PASS_OPEN       "  Passive Opens                       = %lu\n"
76    IDS_TCP_FAIL_CONNECT    "  Failed Connection Attempts          = %lu\n"
77    IDS_TCP_RESET_CONNECT   "  Reset Connections                   = %lu\n"
78    IDS_TCP_CURRENT_CONNECT "  Current Connections                 = %lu\n"
79    IDS_TCP_SEG_RECEIVE     "  Segments Received                   = %lu\n"
80    IDS_TCP_SEG_SENT        "  Segments Sent                       = %lu\n"
81    IDS_TCP_SEG_RETRANSMIT  "  Segments Retransmitted              = %lu\n"
82END
83
84STRINGTABLE
85BEGIN
86    IDS_UDP_IP4_HEADER    "\nUDP Statistics for IPv4\n\n"
87    IDS_UDP_DATAG_RECEIVE "  Datagrams Received    = %lu\n"
88    IDS_UDP_NO_PORT       "  No Ports              = %lu\n"
89    IDS_UDP_RECEIVE_ERROR "  Receive Errors        = %lu\n"
90    IDS_UDP_DATAG_SEND    "  Datagrams Sent        = %lu\n"
91END
92
93STRINGTABLE
94BEGIN
95    IDS_ETHERNET_INTERFACE_STAT     "Interface Statistics\n\n"
96    IDS_ETHERNET_THEADER            "                           Received            Sent\n\n"
97    IDS_ETHERNET_BYTES              "Bytes                %14lu %15lu\n"
98    IDS_ETHERNET_UNICAST_PACKET     "Unicast packets      %14lu %15lu\n"
99    IDS_ETHERNET_NON_UNICAST_PACKET "Non-unicast packets  %14lu %15lu\n"
100    IDS_ETHERNET_DISCARD            "Discards             %14lu %15lu\n"
101    IDS_ETHERNET_ERROR              "Errors               %14lu %15lu\n"
102    IDS_ETHERNET_UNKNOWN            "Unknown protocols    %14lu\n"
103END
104
105STRINGTABLE
106BEGIN
107    IDS_ERROR_WSA_START "ERROR: WSAStartup() failed: %d\n"
108    IDS_ERROR_ROUTE "ERROR: Cannot find 'route.exe'\n"
109    IDS_ERROR_TCP_SNAPSHOT "ERROR: Failed to snapshot TCP endpoints.\n"
110    IDS_ERROR_UDP_ENDPOINT "ERROR: Failed to snapshot UDP endpoints.\n"
111    IDS_ERROR_UDP_ENDPOINT_TABLE "ERROR: Failed to snapshot UDP endpoints table.\n"
112END
113