diff options
author | ru <ru@FreeBSD.org> | 2001-06-07 12:35:53 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2001-06-07 12:35:53 +0000 |
commit | 056e449b05cd8204b5c17c524f98d1d085355385 (patch) | |
tree | aa4b8ede8e27965feef7270733276079a4bddecd /usr.sbin/arp/arp.8 | |
parent | 08c505f1583b0af1214197fea359a1863bd7a953 (diff) | |
download | FreeBSD-src-056e449b05cd8204b5c17c524f98d1d085355385.zip FreeBSD-src-056e449b05cd8204b5c17c524f98d1d085355385.tar.gz |
- Renamed the ``proxy'' modifier of the -d flag to ``pub'',
to be consistent with the -s flag. Updated documentation
on what this modifier does.
- Added the ``only'' keyword to the -s and -S flags, that
could be used to created "proxy-only" published entries.
Previously, arp(8) created an entry of this type only
in the absence of the route to a destination.
PR: bin/12357
MFC after: 1 week
Diffstat (limited to 'usr.sbin/arp/arp.8')
-rw-r--r-- | usr.sbin/arp/arp.8 | 35 |
1 files changed, 27 insertions, 8 deletions
diff --git a/usr.sbin/arp/arp.8 b/usr.sbin/arp/arp.8 index 80fcae5..985f2ef 100644 --- a/usr.sbin/arp/arp.8 +++ b/usr.sbin/arp/arp.8 @@ -47,18 +47,18 @@ .Fl a .Nm .Fl d Ar hostname -.Op Cm proxy +.Op Cm pub .Nm .Fl d .Fl a .Nm .Fl s Ar hostname ether_addr .Op Cm temp -.Op Cm pub +.Op Cm pub Op Cm only .Nm .Fl S Ar hostname ether_addr .Op Cm temp -.Op Cm pub +.Op Cm pub Op Cm only .Nm .Fl f Ar filename .Sh DESCRIPTION @@ -86,10 +86,17 @@ A super-user may delete an entry for the host called with the .Fl d flag. -The -.Cm proxy -keyword is sometimes required when deleting published ARP entries. -This flag may be combined with the +It the +.Cm pub +keyword is specified, only +.Dq published +.Tn ARP +entry +for this host will be deleted. +.Pp +Alternatively, the +.Fl d +flag may be combined with the .Fl a flag to delete all entries. .It Fl n @@ -109,7 +116,9 @@ The entry will be permanent unless the word is given in the command. If the word .Cm pub -is given, the entry will be "published"; i.e., this system will +is given, the entry will be +.Dq published ; +i.e., this system will act as an .Tn ARP server, @@ -123,6 +132,16 @@ can be given as in which case the interfaces on this host will be examined, and if one of them is found to occupy the same subnet, its Ethernet address will be used. +If the +.Cm only +keyword is also specified, this will create a +.Dq "published (proxy only)" +entry. +This type of entry is created automatically if +.Nm +detects that the routing table entry for +.Ar hostname +already exists. .It Fl S Ar hostname ether_addr Is just like .Fl s |