tcppm.8 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. .TH tcppm "8" "January 2016" "3proxy 0.8" "Universal proxy server"
  2. .SH NAME
  3. .B tcppm
  4. \- TCP port mapper
  5. .SH SYNOPSIS
  6. .BR "tcppm " [ -d ]
  7. .IB \fR[ -l \fR[ \fR[ @ \fR] logfile \fR]]
  8. .IB \fR[ -i internal_ip\fR]
  9. .IB \fR[ -e external_ip\fR]
  10. .I local_port remote_host remote_port
  11. .SH DESCRIPTION
  12. .B tcppm
  13. forwards connections from local to remote TCP port
  14. .SH OPTIONS
  15. .TP
  16. .B -I
  17. Inetd mode. Standalone service only.
  18. .TP
  19. .B -d
  20. Daemonise. Detach service from console and run in the background.
  21. .TP
  22. .B -t
  23. Be silenT. Do not log start/stop/accept error records.
  24. .TP
  25. .B -e
  26. External address. IP address of interface proxy should initiate connections
  27. from.
  28. By default system will deside which address to use in accordance
  29. with routing table.
  30. .TP
  31. .B -i
  32. Internal address. IP address proxy accepts connections to.
  33. By default connection to any interface is accepted. It\'s usually unsafe.
  34. .TP
  35. .B -l
  36. Log. By default logging is to stdout. If
  37. .I logfile
  38. is specified logging is to file. Under Unix, if
  39. .RI \' @ \'
  40. preceeds
  41. .IR logfile ,
  42. syslog is used for logging.
  43. .SH ARGUMENTS
  44. .TP
  45. .I local_port
  46. - port tcppm accepts connection
  47. .TP
  48. .I remote_host
  49. - IP address of the host connection is forwarded to
  50. .TP
  51. .I remote_port
  52. - remote port connection is forwarded to
  53. .SH CLIENTS
  54. Any TCP based application can be used as a client. Use
  55. .I internal_ip
  56. and
  57. .I local_port
  58. as a destination in client application. Connection is forwarded to
  59. .IR remote_host : remote_port
  60. .SH BUGS
  61. Report all bugs to
  62. .BR 3proxy@3proxy.ru
  63. .SH SEE ALSO
  64. 3proxy(8), proxy(8), ftppr(8), socks(8), pop3p(8), udppm(8), syslogd(8),
  65. .br
  66. http://3proxy.ru/
  67. .SH AUTHORS
  68. 3proxy is designed by Vladimir 3APA3A Dubrovin
  69. .RI ( 3proxy@3proxy.ru )