tcppm.8 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. .TH tcppm "8" "January 2019" "3proxy 10" "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. .TP
  44. .B -S
  45. Increase or decrease stack size. You may want to try something like -S8192 if you experience 3proxy
  46. crashes.
  47. .SH ARGUMENTS
  48. .TP
  49. .I local_port
  50. - port tcppm accepts connection
  51. .TP
  52. .I remote_host
  53. - IP address of the host connection is forwarded to
  54. .TP
  55. .I remote_port
  56. - remote port connection is forwarded to
  57. .SH CLIENTS
  58. Any TCP based application can be used as a client. Use
  59. .I internal_ip
  60. and
  61. .I local_port
  62. as a destination in client application. Connection is forwarded to
  63. .IR remote_host : remote_port
  64. .SH BUGS
  65. Report all bugs to
  66. .BR 3proxy@3proxy.ru
  67. .SH SEE ALSO
  68. 3proxy(8), proxy(8), ftppr(8), socks(8), pop3p(8), udppm(8), syslogd(8),
  69. .br
  70. https://3proxy.org/
  71. .SH AUTHORS
  72. 3proxy is designed by Vladimir 3APA3A Dubrovin
  73. .RI ( 3proxy@3proxy.ru )