Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
net-tools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
net-tools
Commits
49241d20
Commit
49241d20
authored
Dec 11, 1998
by
Phil Blundell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Few random typo/documentation fixes.
(Partly taken from the Debian netbase package.) Released as 1.49
parent
b77cd76d
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
31 additions
and
13 deletions
+31
-13
README
README
+1
-1
README.ipv6
README.ipv6
+21
-7
man/en_US/arp.8
man/en_US/arp.8
+2
-2
man/en_US/netstat.8
man/en_US/netstat.8
+1
-1
man/pt_BR/netstat.8
man/pt_BR/netstat.8
+1
-1
netstat.c
netstat.c
+5
-1
No files found.
README
View file @
49241d20
...
...
@@ -84,4 +84,4 @@ may be more touchy. Feel free to send patches if you have problems.
Phil Blundell
philb@gnu.org
11th
Nov
ember 1998
11th
Dec
ember 1998
README.ipv6
View file @
49241d20
Notes for IPv6.
Notes for IPv6
--------------
If you are using libc5, you may need to edit the Makefile so that
libinet6 is linked in and your IPv6 include files are found in the
right place. The definitions in question are at about line 91.
right place. The definitions in question are at about line 91. You may
also find that the header files provided with inet6-apps are not exactly
what net-tools expects. This is not a bug in net-tools as such and will
not be fixed in future releases (though if anybody would like to contribute
a patch I would be happy to add a pointer to it here.) If you have the
option you might consider changing to glibc instead (see below) in which
case you can use the header files supplied with the C library.
If you use glibc, you should get the latest 2.1 snapshot. In this
case you do not need to edit the Makefile or apply any patches.
Version 2.0 of glibc has no support for IPv6.
If you use glibc, you should get the latest 2.1 release (or pre-release)
that you can find; look in sourceware.cygnus.com:/pub/glibc. 2.1 prereleases
have version numbers 2.0.x where x is greater than 90. With such a libc
installed there should be no need to edit the Makefile or patch net-tools.
You may find that you are missing files such as <netinet/ip6.h>. This is
not a bug in net-tools; you should find some newer include files.
Version 2.0 of glibc has no support for IPv6. Patches did exist at one
point but they are now seriously updated. Consider upgrading to glibc 2.1
instead.
BUGS
----
"ifconfig eth0 add ..." does not currently auto-load the IPv6 module.
man/en_US/arp.8
View file @
49241d20
...
...
@@ -102,8 +102,8 @@ entries the specified interface is the interface on which ARP requests will
be answered.
.br
.B NOTE:
This has to be different from the interface to w
it
ch the IP
Package
s will be routed.
This has to be different from the interface to w
hi
ch the IP
datagram
s will be routed.
.TP
.B "\-s hostname hw_addr, \-\-set hostname"
Manually create an ARP address mapping entry for host
...
...
man/en_US/netstat.8
View file @
49241d20
...
...
@@ -19,7 +19,7 @@ netstat \- Display network connections, routing tables, interface statistics, ma
.RB [ \-\-tcp | \-t ]
.RB [ \-\-udp | \-u ]
.RB [ \-\-raw | \-w ]
.RB [ \-\-unix | \-
u
]
.RB [ \-\-unix | \-
x
]
.RB [ \-\-inet | \-\-ip ]
.RB [ \-\-ax25 ]
.RB [ \-\-ipx ]
...
...
man/pt_BR/netstat.8
View file @
49241d20
...
...
@@ -20,7 +20,7 @@ mascaradas.
.RB [ \-\-tcp | \-t ]
.RB [ \-\-udp | \-u ]
.RB [ \-\-raw | \-w ]
.RB [ \-\-unix | \-
u
]
.RB [ \-\-unix | \-
x
]
.RB [ \-\-inet | \-\-ip ]
.RB [ \-\-ax25 ]
.RB [ \-\-ipx ]
...
...
netstat.c
View file @
49241d20
...
...
@@ -7,7 +7,7 @@
* NET-3 Networking Distribution for the LINUX operating
* system.
*
* Version: $Id: netstat.c,v 1.1
4 1998/12/06 16:17:46
philip Exp $
* Version: $Id: netstat.c,v 1.1
5 1998/12/11 10:48:52
philip Exp $
*
* Authors: Fred Baumgarten, <dc6iq@insu1.etec.uni-karlsruhe.de>
* Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
...
...
@@ -1188,7 +1188,9 @@ static void usage(void)
fprintf
(
stderr
,
_
(
" -r, --route display routing table
\n
"
));
/* xxx */
fprintf
(
stderr
,
_
(
" -L, --netlink display netlink kernel messages
\n
"
));
fprintf
(
stderr
,
_
(
" -i, --interfaces display interface table
\n
"
));
#if HAVE_FW_MASQUERADE
fprintf
(
stderr
,
_
(
" -M, --masquerade display masqueraded connections
\n\n
"
));
#endif
fprintf
(
stderr
,
_
(
" -v, --verbose be verbose
\n
"
));
fprintf
(
stderr
,
_
(
" -n, --numeric dont resolve names
\n
"
));
fprintf
(
stderr
,
_
(
" -e, --extend display other/more informations
\n
"
));
...
...
@@ -1217,7 +1219,9 @@ int main
{
"help"
,
0
,
0
,
'h'
},
{
"route"
,
0
,
0
,
'r'
},
{
"netlink"
,
2
,
0
,
'L'
},
#if HAVE_FW_MASQUERADE
{
"masquerade"
,
0
,
0
,
'M'
},
#endif
{
"protocol"
,
1
,
0
,
'A'
},
{
"tcp"
,
0
,
0
,
't'
},
{
"udp"
,
0
,
0
,
'u'
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment