View | Details | Raw Unified | Return to bug 94158
Collapse All | Expand All

(-)nc.1 (-3 / +3 lines)
Lines 389-405 Link Here
389
Open a TCP connection to port 42 of example.host using 10.1.2.3 as the
389
Open a TCP connection to port 42 of example.host using 10.1.2.3 as the
390
IP for the local end of the connection:
390
IP for the local end of the connection:
391
.Pp
391
.Pp
392
.Dl "nc -E example.host 42"
392
.Dl $ nc -s 10.1.2.3 example.host 42
393
.Pp
393
.Pp
394
Open a TCP connection to port 42 of example.host using IPsec ESP for
394
Open a TCP connection to port 42 of example.host using IPsec ESP for
395
incoming and outgoing traffic.
395
incoming and outgoing traffic.
396
.Pp
396
.Pp
397
.Dl "nc -e 'out ipsec esp/transport//require' example.host 42"
397
.Dl $ nc -E example.host 42
398
.Pp
398
.Pp
399
Open a TCP connection to port 42 of example.host using IPsec ESP for
399
Open a TCP connection to port 42 of example.host using IPsec ESP for
400
outgoing traffic only.
400
outgoing traffic only.
401
.Pp
401
.Pp
402
.Dl $ nc -s 10.1.2.3 example.host 42
402
.Dl $ nc -e 'out ipsec esp/transport//require' example.host 42
403
.Pp
403
.Pp
404
Send UDP packets to ports 20-30 of example.host, and report which ones
404
Send UDP packets to ports 20-30 of example.host, and report which ones
405
responded with an ICMP packet after three seconds:
405
responded with an ICMP packet after three seconds:

Return to bug 94158