mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-28 19:52:44 +00:00
Fix incorrect command line examples.
Submitted by: Yoshihiko Sarumaru (mistral at imasy dot or dot jp) PR: docs/94158 MFC after: 2 days
This commit is contained in:
parent
999b97c5e7
commit
c0f0812202
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=156404
@ -389,17 +389,17 @@ Open a UDP connection to port 53 of hostname:
|
||||
Open a TCP connection to port 42 of example.host using 10.1.2.3 as the
|
||||
IP for the local end of the connection:
|
||||
.Pp
|
||||
.Dl "nc -E example.host 42"
|
||||
.Dl $ nc -s 10.1.2.3 example.host 42
|
||||
.Pp
|
||||
Open a TCP connection to port 42 of example.host using IPsec ESP for
|
||||
incoming and outgoing traffic.
|
||||
.Pp
|
||||
.Dl "nc -e 'out ipsec esp/transport//require' example.host 42"
|
||||
.Dl $ nc -E example.host 42
|
||||
.Pp
|
||||
Open a TCP connection to port 42 of example.host using IPsec ESP for
|
||||
outgoing traffic only.
|
||||
.Pp
|
||||
.Dl $ nc -s 10.1.2.3 example.host 42
|
||||
.Dl $ nc -e 'out ipsec esp/transport//require' example.host 42
|
||||
.Pp
|
||||
Send UDP packets to ports 20-30 of example.host, and report which ones
|
||||
responded with an ICMP packet after three seconds:
|
||||
|
Loading…
Reference in New Issue
Block a user