tcppm.8 1.8 KB

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