mirror of
https://github.com/3proxy/3proxy.git
synced 2026-04-13 00:10:11 +08:00
Compare commits
No commits in common. "bc8f7a5fc62b7268f1e9a20e9b18e1a0b3448413" and "51221207d387898fc8e84577fb2e469ad67f1a2b" have entirely different histories.
bc8f7a5fc6
...
51221207d3
71
.github/workflows/build-watcom.yml
vendored
71
.github/workflows/build-watcom.yml
vendored
@ -1,71 +0,0 @@
|
|||||||
name: C/C++ CI
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [ "test-ci" ]
|
|
||||||
paths: [ 'RELEASE', '.github/workflows/build-watcom.yml' ]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
ci:
|
|
||||||
name: "${{ matrix.target }}"
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
target:
|
|
||||||
- windows-2022
|
|
||||||
runs-on: ${{ matrix.target }}
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
# - name: configure
|
|
||||||
# run: ./configure
|
|
||||||
- name: Setup Open Watcom
|
|
||||||
uses: open-watcom/setup-watcom@v0
|
|
||||||
- name: set date
|
|
||||||
run: |
|
|
||||||
$NOW = Get-Date -Format "yyMMddHHmmss"
|
|
||||||
echo "now: $NOW"
|
|
||||||
$RELEASE = Get-Content -Path "RELEASE" -Raw
|
|
||||||
echo "release: $RELEASE"
|
|
||||||
echo "NOW=$NOW" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
|
||||||
echo "RELEASE=$RELEASE" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
|
||||||
echo "VERSION=VERSION=`"$RELEASE`"" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
|
||||||
echo "BUILDDATE=BUILDDATE=`"$NOW`"" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
|
||||||
- name: make Watcom
|
|
||||||
shell: cmd
|
|
||||||
run: |
|
|
||||||
echo "volatile char VerSion[]=^"3APA3A-3proxy-Internal-Build: 3proxy-%RELEASE%%-%NOW%\r\nCode certificate: https://3proxy.org/3proxy.cer\r\n^";" >>src/3proxy.c
|
|
||||||
nmake /F Makefile.watcom
|
|
||||||
- name: make dist dir
|
|
||||||
shell: cmd
|
|
||||||
run: |
|
|
||||||
mkdir dist
|
|
||||||
mkdir dist\3proxy
|
|
||||||
mkdir dist\3proxy\bin
|
|
||||||
mkdir dist\3proxy\cfg
|
|
||||||
mkdir dist\3proxy\cfg\sql
|
|
||||||
mkdir dist\3proxy\doc
|
|
||||||
mkdir dist\3proxy\doc\ru
|
|
||||||
mkdir dist\3proxy\doc\html
|
|
||||||
mkdir dist\3proxy\doc\html\plugins
|
|
||||||
mkdir dist\3proxy\doc\html\man3
|
|
||||||
mkdir dist\3proxy\doc\html\man8
|
|
||||||
mkdir dist\3proxy\doc\devel
|
|
||||||
copy bin\3proxy.exe dist\3proxy\bin\
|
|
||||||
copy bin\*.dll dist\3proxy\bin\
|
|
||||||
copy bin\mycrypt.exe dist\3proxy\bin\
|
|
||||||
copy cfg\*.* dist\3proxy\cfg\
|
|
||||||
copy cfg\sql\*.* dist\3proxy\cfg\sql\
|
|
||||||
copy doc\ru\*.* dist\3proxy\doc\ru\
|
|
||||||
copy doc\html\*.* dist\3proxy\doc\html\
|
|
||||||
copy doc\html\plugins\*.* dist\3proxy\doc\html\plugins\
|
|
||||||
copy doc\html\man8\*.* dist\3proxy\doc\html\man8\
|
|
||||||
copy doc\html\man3\*.* dist\3proxy\doc\html\man3\
|
|
||||||
copy doc\devel\*.rtf dist\3proxy\doc\devel\
|
|
||||||
copy copying dist\3proxy\
|
|
||||||
copy authors dist\3proxy\
|
|
||||||
copy README dist\3proxy\
|
|
||||||
copy rus.3ps dist\3proxy\
|
|
||||||
- name: Get artifact
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: "3proxy-${{ env.RELEASE }}-lite.zip"
|
|
||||||
path: dist/
|
|
||||||
48
.github/workflows/build-win32.yml
vendored
48
.github/workflows/build-win32.yml
vendored
@ -27,8 +27,15 @@ jobs:
|
|||||||
echo "RELEASE=$RELEASE" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
echo "RELEASE=$RELEASE" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
||||||
echo "VERSION=VERSION=`"$RELEASE`"" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
echo "VERSION=VERSION=`"$RELEASE`"" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
||||||
echo "BUILDDATE=BUILDDATE=`"$NOW`"" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
echo "BUILDDATE=BUILDDATE=`"$NOW`"" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
||||||
|
echo "COMMONFILES=cfg/*.* cfg/sql/*.* doc/ru/*.* doc/html/*.* doc/html/plugins/*.* doc/html/man8/*.* doc/html/man3/*.* doc/devel/*.rtf copying authors README rus.3ps" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
||||||
- name: install packages
|
- name: install packages
|
||||||
run: vcpkg install pcre2:x86-windows openssl:x86-windows
|
run: vcpkg install pcre2:x86-windows openssl:x86-windows
|
||||||
|
- name: echo variables
|
||||||
|
shell: cmd
|
||||||
|
run: |
|
||||||
|
echo builddate:%BUILDDATE% release:%RELEASE% version:%VERSION% now:%NOW%
|
||||||
|
dir "c:\program files\openssl\lib\VC"
|
||||||
|
dir "c:\vcpkg\installed"
|
||||||
- name: Add msbuild to PATH
|
- name: Add msbuild to PATH
|
||||||
uses: microsoft/setup-msbuild@v3
|
uses: microsoft/setup-msbuild@v3
|
||||||
- name: make Windows MSVC
|
- name: make Windows MSVC
|
||||||
@ -40,43 +47,6 @@ jobs:
|
|||||||
cd "D:/a/3proxy/3proxy"
|
cd "D:/a/3proxy/3proxy"
|
||||||
set "LIB=%LIB%;c:/vcpkg/installed/x86-windows/lib"
|
set "LIB=%LIB%;c:/vcpkg/installed/x86-windows/lib"
|
||||||
set "INCLUDE=%INCLUDE%;c:/vcpkg/installed/x86-windows/include"
|
set "INCLUDE=%INCLUDE%;c:/vcpkg/installed/x86-windows/include"
|
||||||
echo "volatile char VerSion[]=^"3APA3A-3proxy-Internal-Build: 3proxy-%RELEASE%%-%NOW%\r\nCode certificate: https://3proxy.org/3proxy.cer\r\n^";" >>src/3proxy.c
|
|
||||||
nmake /F Makefile.msvc
|
nmake /F Makefile.msvc
|
||||||
- name: make dist dir
|
zip 3proxy-%RELEASE%.zip bin/3proxy.exe bin/*.dll bin/mycrypt.exe %COMMONFILES%
|
||||||
shell: cmd
|
nmake /F Makefile.msvc clean
|
||||||
run: |
|
|
||||||
mkdir dist
|
|
||||||
mkdir dist\3proxy
|
|
||||||
mkdir dist\3proxy\bin
|
|
||||||
mkdir dist\3proxy\cfg
|
|
||||||
mkdir dist\3proxy\cfg\sql
|
|
||||||
mkdir dist\3proxy\doc
|
|
||||||
mkdir dist\3proxy\doc\ru
|
|
||||||
mkdir dist\3proxy\doc\html
|
|
||||||
mkdir dist\3proxy\doc\html\plugins
|
|
||||||
mkdir dist\3proxy\doc\html\man3
|
|
||||||
mkdir dist\3proxy\doc\html\man8
|
|
||||||
mkdir dist\3proxy\doc\devel
|
|
||||||
copy bin\3proxy.exe dist\3proxy\bin\
|
|
||||||
copy bin\*.dll dist\3proxy\bin\
|
|
||||||
copy bin\mycrypt.exe dist\3proxy\bin\
|
|
||||||
copy cfg\*.* dist\3proxy\cfg\
|
|
||||||
copy cfg\sql\*.* dist\3proxy\cfg\sql\
|
|
||||||
copy doc\ru\*.* dist\3proxy\doc\ru\
|
|
||||||
copy doc\html\*.* dist\3proxy\doc\html\
|
|
||||||
copy doc\html\plugins\*.* dist\3proxy\doc\html\plugins\
|
|
||||||
copy doc\html\man8\*.* dist\3proxy\doc\html\man8\
|
|
||||||
copy doc\html\man3\*.* dist\3proxy\doc\html\man3\
|
|
||||||
copy doc\devel\*.rtf dist\3proxy\doc\devel\
|
|
||||||
copy copying dist\3proxy\
|
|
||||||
copy authors dist\3proxy\
|
|
||||||
copy README dist\3proxy\
|
|
||||||
copy rus.3ps dist\3proxy\
|
|
||||||
copy /Y c:\vcpkg\installed\x86-windows\bin\pcre2-8.dll dist\3proxy\bin
|
|
||||||
copy /Y c:\vcpkg\installed\x86-windows\bin\*crypto*.dll dist\3proxy\bin
|
|
||||||
copy /Y c:\vcpkg\installed\x86-windows\bin\*ssl*.dll dist\3proxy\bin
|
|
||||||
- name: Get artifact
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: "3proxy-${{ env.RELEASE }}.zip"
|
|
||||||
path: dist/
|
|
||||||
|
|||||||
67
.github/workflows/build-win64.yml
vendored
67
.github/workflows/build-win64.yml
vendored
@ -27,8 +27,12 @@ jobs:
|
|||||||
echo "RELEASE=$RELEASE" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
echo "RELEASE=$RELEASE" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
||||||
echo "VERSION=VERSION=`"$RELEASE`"" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
echo "VERSION=VERSION=`"$RELEASE`"" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
||||||
echo "BUILDDATE=BUILDDATE=`"$NOW`"" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
echo "BUILDDATE=BUILDDATE=`"$NOW`"" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
||||||
|
echo "COMMONFILES=cfg/*.* cfg/sql/*.* doc/ru/*.* doc/html/*.* doc/html/plugins/*.* doc/html/man8/*.* doc/html/man3/*.* doc/devel/*.rtf copying authors README rus.3ps" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
||||||
|
- name: echo variables
|
||||||
|
shell: cmd
|
||||||
|
run: echo builddate:%BUILDDATE% release:%RELEASE% version:%VERSION% now:%NOW%
|
||||||
- name: install packages
|
- name: install packages
|
||||||
run: vcpkg install pcre2:x64-windows openssl:x64-windows
|
run: vcpkg install pcre2:x64-windows
|
||||||
- name: Add msbuild to PATH
|
- name: Add msbuild to PATH
|
||||||
uses: microsoft/setup-msbuild@v3
|
uses: microsoft/setup-msbuild@v3
|
||||||
- name: make Windows MSVC
|
- name: make Windows MSVC
|
||||||
@ -39,45 +43,28 @@ jobs:
|
|||||||
D:
|
D:
|
||||||
cd "D:/a/3proxy/3proxy"
|
cd "D:/a/3proxy/3proxy"
|
||||||
mkdir bin64
|
mkdir bin64
|
||||||
set "LIB=%LIB%;c:/vcpkg/installed/x64-windows/lib"
|
set "LIB=%LIB%;c:/program files/openssl/lib/VC/x64/MT;c:/vcpkg/installed/x64-windows/lib"
|
||||||
set "INCLUDE=%INCLUDE%;c:/vcpkg/installed/x64-windows/include"
|
set "INCLUDE=%INCLUDE%;c:/program files/openssl/include;c:/vcpkg/installed/x64-windows/include"
|
||||||
echo "volatile char VerSion[]=^"3APA3A-3proxy-Internal-Build: 3proxy-%RELEASE%%-%NOW%\r\nCode certificate: https://3proxy.org/3proxy.cer\r\n^";" >>src/3proxy.c
|
|
||||||
nmake /F Makefile.msvc64
|
nmake /F Makefile.msvc64
|
||||||
- name: make dist dir
|
echo 2
|
||||||
shell: cmd
|
|
||||||
run: |
|
|
||||||
mkdir dist
|
|
||||||
mkdir dist\3proxy
|
|
||||||
mkdir dist\3proxy\bin
|
|
||||||
mkdir dist\3proxy\cfg
|
|
||||||
mkdir dist\3proxy\cfg\sql
|
|
||||||
mkdir dist\3proxy\doc
|
|
||||||
mkdir dist\3proxy\doc\ru
|
|
||||||
mkdir dist\3proxy\doc\html
|
|
||||||
mkdir dist\3proxy\doc\html\plugins
|
|
||||||
mkdir dist\3proxy\doc\html\man3
|
|
||||||
mkdir dist\3proxy\doc\html\man8
|
|
||||||
mkdir dist\3proxy\doc\devel
|
|
||||||
copy bin\3proxy.exe dist\3proxy\bin\
|
|
||||||
copy bin\*.dll dist\3proxy\bin\
|
|
||||||
copy bin\mycrypt.exe dist\3proxy\bin\
|
|
||||||
copy cfg\*.* dist\3proxy\cfg\
|
|
||||||
copy cfg\sql\*.* dist\3proxy\cfg\sql\
|
|
||||||
copy doc\ru\*.* dist\3proxy\doc\ru\
|
|
||||||
copy doc\html\*.* dist\3proxy\doc\html\
|
|
||||||
copy doc\html\plugins\*.* dist\3proxy\doc\html\plugins\
|
|
||||||
copy doc\html\man8\*.* dist\3proxy\doc\html\man8\
|
|
||||||
copy doc\html\man3\*.* dist\3proxy\doc\html\man3\
|
|
||||||
copy doc\devel\*.rtf dist\3proxy\doc\devel\
|
|
||||||
copy copying dist\3proxy\
|
|
||||||
copy authors dist\3proxy\
|
|
||||||
copy README dist\3proxy\
|
|
||||||
copy rus.3ps dist\3proxy\
|
|
||||||
copy /Y c:\vcpkg\installed\x64-windows\bin\pcre2-8.dll dist\3proxy\bin64
|
|
||||||
copy /Y c:\vcpkg\installed\x64-windows\bin\*crypto*.dll dist\3proxy\bin64
|
|
||||||
copy /Y c:\vcpkg\installed\x64-windows\bin\*ssl*.dll dist\3proxy\bin64
|
|
||||||
- name: Get artifact
|
- name: Get artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with: |
|
||||||
name: "3proxy-${{ env.RELEASE }}-x64.zip"
|
name: 3proxy-{{ env.RELEASE }}-x64.zip
|
||||||
path: dist/
|
path:
|
||||||
|
bin64/3proxy.exe
|
||||||
|
bin64/*.dll
|
||||||
|
bin64/mycrypt.exe
|
||||||
|
cfg/*.*
|
||||||
|
cfg/sql/*.*
|
||||||
|
doc/ru/*.*
|
||||||
|
doc/html/*.*
|
||||||
|
doc/html/plugins/*.*
|
||||||
|
doc/html/man8/*.*
|
||||||
|
doc/html/man3/*.*
|
||||||
|
doc/devel/*.rtf
|
||||||
|
copying
|
||||||
|
authors
|
||||||
|
README
|
||||||
|
rus.3ps
|
||||||
|
|
||||||
|
|||||||
2
.gitignore
vendored
2
.gitignore
vendored
@ -52,6 +52,8 @@ src/mycrypt
|
|||||||
src/dighosts
|
src/dighosts
|
||||||
*.ld.so
|
*.ld.so
|
||||||
*.dSYM
|
*.dSYM
|
||||||
|
doc/html/man3/
|
||||||
|
doc/html/man8/
|
||||||
*.var
|
*.var
|
||||||
verfile.sh
|
verfile.sh
|
||||||
/Makefile
|
/Makefile
|
||||||
|
|||||||
@ -7,11 +7,11 @@
|
|||||||
BUILDDIR = ../bin/
|
BUILDDIR = ../bin/
|
||||||
CC = cl
|
CC = cl
|
||||||
CFLAGS = /nologo /MT /W3 /Ox /GS /EHs- /GA /GF /D "MSVC" /D "WITH_WSAPOLL" /D "NDEBUG" /D "WIN32" /D "WITH_SSL" /D "_CONSOLE" /D "_MBCS" /D "_WIN32" /D "PRINTF_INT64_MODIFIER=\"I64\"" /Fp"proxy.pch" /FD /c
|
CFLAGS = /nologo /MT /W3 /Ox /GS /EHs- /GA /GF /D "MSVC" /D "WITH_WSAPOLL" /D "NDEBUG" /D "WIN32" /D "WITH_SSL" /D "_CONSOLE" /D "_MBCS" /D "_WIN32" /D "PRINTF_INT64_MODIFIER=\"I64\"" /Fp"proxy.pch" /FD /c
|
||||||
!IFDEF RELEASE
|
!IFDEF VERSION
|
||||||
VERSION=/D VERSION=\"3proxy-$(RELEASE)\"
|
CFLAGS = $CFLAGS /D $VERSION
|
||||||
!ENDIF
|
!ENDIF
|
||||||
!IFDEF NOW
|
!IFDEF BUILDDATE
|
||||||
BUILDDATE=/D BUILDDATE=\"$(NOW)\"
|
CFLAGS = $CFLAGS /D $BUILDDATE
|
||||||
!ENDIF
|
!ENDIF
|
||||||
COUT = /Fo
|
COUT = /Fo
|
||||||
LN = link
|
LN = link
|
||||||
|
|||||||
@ -7,12 +7,6 @@
|
|||||||
BUILDDIR = ../bin/
|
BUILDDIR = ../bin/
|
||||||
CC = cl
|
CC = cl
|
||||||
CFLAGS = /nologo /Ox /MT /D "NOIPV6" /D "NODEBUG" /D "NOODBC" /D "NORADIUS" /D"WATCOM" /D "MSVC" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "_WIN32" /D "PRINTF_INT64_MODIFIER=\"I64\"" /c $(VERSION) $(BUILDDATE)
|
CFLAGS = /nologo /Ox /MT /D "NOIPV6" /D "NODEBUG" /D "NOODBC" /D "NORADIUS" /D"WATCOM" /D "MSVC" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "_WIN32" /D "PRINTF_INT64_MODIFIER=\"I64\"" /c $(VERSION) $(BUILDDATE)
|
||||||
!IFDEF RELEASE
|
|
||||||
VERSION=/D VERSION=\"3proxy-$(RELEASE)\"
|
|
||||||
!ENDIF
|
|
||||||
!IFDEF NOW
|
|
||||||
BUILDDATE=/D BUILDDATE=\"$(NOW)\"
|
|
||||||
!ENDIF
|
|
||||||
COUT = /Fo
|
COUT = /Fo
|
||||||
LN = link
|
LN = link
|
||||||
LDFLAGS = /nologo /subsystem:console /incremental:no
|
LDFLAGS = /nologo /subsystem:console /incremental:no
|
||||||
@ -33,7 +27,7 @@ TYPECOMMAND = type
|
|||||||
COMPATLIBS =
|
COMPATLIBS =
|
||||||
MAKEFILE = Makefile.watcom
|
MAKEFILE = Makefile.watcom
|
||||||
PLUGINS = utf8tocp1251 WindowsAuthentication TrafficPlugin StringsPlugin
|
PLUGINS = utf8tocp1251 WindowsAuthentication TrafficPlugin StringsPlugin
|
||||||
VERFILE = 3proxy.res $(VERFILE)
|
VERFILE = $(VERFILE)
|
||||||
VERSION = $(VERSION)
|
VERSION = $(VERSION)
|
||||||
VERSIONDEP = 3proxy.res $(VERSIONDEP)
|
VERSIONDEP = 3proxy.res $(VERSIONDEP)
|
||||||
BUILDDATE = $(BUILDDATE)
|
BUILDDATE = $(BUILDDATE)
|
||||||
@ -68,3 +62,9 @@ allplugins:
|
|||||||
nmake
|
nmake
|
||||||
del *.obj *.idb
|
del *.obj *.idb
|
||||||
cd ../../
|
cd ../../
|
||||||
|
copy Makefile plugins\PCREPlugin
|
||||||
|
copy Makefile.var plugins\PCREPlugin
|
||||||
|
cd plugins\PCREPlugin
|
||||||
|
nmake
|
||||||
|
del *.obj *.idb
|
||||||
|
cd ../../
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -1,221 +0,0 @@
|
|||||||
<!-- Creator : groff version 1.24.1 -->
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<h1 align="center">3proxy</h1>
|
|
||||||
|
|
||||||
<a href="#NAME">NAME</a><br>
|
|
||||||
<a href="#SYNOPSIS">SYNOPSIS</a><br>
|
|
||||||
<a href="#DESCRIPTION">DESCRIPTION</a><br>
|
|
||||||
<a href="#OPTIONS">OPTIONS</a><br>
|
|
||||||
<a href="#SIGNALS">SIGNALS</a><br>
|
|
||||||
<a href="#FILES">FILES</a><br>
|
|
||||||
<a href="#BUGS">BUGS</a><br>
|
|
||||||
<a href="#SEE ALSO">SEE ALSO</a><br>
|
|
||||||
<a href="#TRIVIA">TRIVIA</a><br>
|
|
||||||
<a href="#AUTHORS">AUTHORS</a><br>
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
|
|
||||||
<h2>NAME
|
|
||||||
<a name="NAME"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>3proxy</b> -
|
|
||||||
3[APA3A] tiny proxy server, or trivial proxy server, or free
|
|
||||||
proxy server</p>
|
|
||||||
|
|
||||||
<h2>SYNOPSIS
|
|
||||||
<a name="SYNOPSIS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>3proxy</b>
|
|
||||||
[<i>config_file</i>] <b><br>
|
|
||||||
3proxy</b> [<i>--install</i>] <b><br>
|
|
||||||
3proxy</b> [<i>--remove</i>]</p>
|
|
||||||
|
|
||||||
<h2>DESCRIPTION
|
|
||||||
<a name="DESCRIPTION"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>3proxy</b> is
|
|
||||||
a universal proxy server. It can be used to provide internal
|
|
||||||
users with fully controllable access to external resources
|
|
||||||
or to provide external users with access to internal
|
|
||||||
resources. 3proxy is not developed to replace
|
|
||||||
<b>squid</b>(8), but it can extend the functionality of an
|
|
||||||
existing caching proxy. It can be used to route requests
|
|
||||||
between different types of clients and proxy servers. Think
|
|
||||||
about it as application level gateway with configuration
|
|
||||||
like hardware router has for network layer. It can establish
|
|
||||||
multiple gateways with HTTP and HTTPS proxy with FTP over
|
|
||||||
HTTP support, SOCKS v4, v4.5 and v5, POP3 proxy, UDP and TCP
|
|
||||||
portmappers. Each gateway is started from the configuration
|
|
||||||
file like an independent service <b>proxy</b>(8)
|
|
||||||
<b>socks</b>(8) <b>pop3p</b>(8) <b>tcppm</b>(8)
|
|
||||||
<b>udppm</b>(8) <b>ftppr</b>(8) <b>dnspr</b> but
|
|
||||||
<b>3proxy</b> is not a kind of wrapper or superserver for
|
|
||||||
these daemons. It just has the same code compiled in, but
|
|
||||||
provides much more functionality. SOCKSv5 implementation
|
|
||||||
allows you to use 3proxy with any UDP or TCP based client
|
|
||||||
applications designed without proxy support (with
|
|
||||||
<i>SocksCAP</i>, <i>FreeCAP</i> or another client-side
|
|
||||||
redirector under Windows or with a socksification library
|
|
||||||
under Unix). So you can play your favourite games, listen to
|
|
||||||
music, exchange files and messages and even accept incoming
|
|
||||||
connections behind a proxy server.</p>
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><i>dnspr</i>
|
|
||||||
does not exist as an independent service. It’s a DNS
|
|
||||||
caching proxy (it requires <i>nscache</i> and <i>nserver</i>
|
|
||||||
to be set in the configuration. Only A-records are cached.
|
|
||||||
Please note that this caching is mostly a ’hack’
|
|
||||||
and has nothing to do with a real DNS server, but it works
|
|
||||||
perfectly for SOHO networks.</p>
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">3proxy supports
|
|
||||||
access control lists (ACL) like network router. Source and
|
|
||||||
destination networks and destination port can be specified.
|
|
||||||
In addition, usernames and gateway action (for example GET
|
|
||||||
or POST) can be used in ACLs. In order to filter request on
|
|
||||||
username basis user must be authenticated somehow. There are
|
|
||||||
few authentication types including password authentication
|
|
||||||
and authentication by NetBIOS name for Windows clients
|
|
||||||
(it´s very like ident authentication). Depending on
|
|
||||||
ACL action request can be allowed, denied or redirected to
|
|
||||||
another host or to another proxy server or even to a chain
|
|
||||||
of proxy servers.</p>
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">It supports
|
|
||||||
different types of logging: to logfiles, <b>syslog</b>(3)
|
|
||||||
(only under Unix) or to an ODBC database. Logging format is
|
|
||||||
tunable to provide compatibility with existing log file
|
|
||||||
parsers. It makes it possible to use 3proxy with IIS, ISA,
|
|
||||||
Apache or Squid log parsers.</p>
|
|
||||||
|
|
||||||
<h2>OPTIONS
|
|
||||||
<a name="OPTIONS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>config_file</b></p>
|
|
||||||
|
|
||||||
<p style="margin-left:15%;">Name of config file. See
|
|
||||||
<b>3proxy.cfg</b>(3) for configuration file format. Under
|
|
||||||
Windows, if config_file is not specified, <b>3proxy</b>
|
|
||||||
looks for a file named <i>3proxy.cfg</i> in the default
|
|
||||||
location (in the same directory as the executable file and
|
|
||||||
in the current directory). Under Unix, if no config file is
|
|
||||||
specified, 3proxy reads configuration from stdin. It makes
|
|
||||||
it possible to use the 3proxy.cfg file as an executable
|
|
||||||
script just by setting +x mode and adding <br>
|
|
||||||
#!/usr/local/3proxy/3proxy <br>
|
|
||||||
as a first line in 3proxy.cfg</p>
|
|
||||||
|
|
||||||
<p style="margin-left:6%;"><b>--install</b></p>
|
|
||||||
|
|
||||||
<p style="margin-left:15%;">(Windows NT family only)
|
|
||||||
install <b>3proxy</b> as a system service</p>
|
|
||||||
|
|
||||||
<p style="margin-left:6%;"><b>--remove</b></p>
|
|
||||||
|
|
||||||
<p style="margin-left:15%;">(Windows NT family only) remove
|
|
||||||
<b>3proxy</b> from system services</p>
|
|
||||||
|
|
||||||
<h2>SIGNALS
|
|
||||||
<a name="SIGNALS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">Under Unix there
|
|
||||||
are a few signals <b>3proxy</b> catches. See <b>kill</b>(1).
|
|
||||||
<b><br>
|
|
||||||
SIGTERM</b></p>
|
|
||||||
|
|
||||||
<p style="margin-left:15%;">clean up connections and
|
|
||||||
exit</p>
|
|
||||||
|
|
||||||
<p style="margin-left:6%;"><b>SIGPAUSE</b></p>
|
|
||||||
|
|
||||||
<p style="margin-left:15%;">stop accepting new connections,
|
|
||||||
on second signal - start and re-read configuration</p>
|
|
||||||
|
|
||||||
<p style="margin-left:6%;"><b>SIGCONT</b></p>
|
|
||||||
|
|
||||||
<p style="margin-left:15%;">start to accept new
|
|
||||||
connections</p>
|
|
||||||
|
|
||||||
<p style="margin-left:6%;"><b>SIGUSR1</b></p>
|
|
||||||
|
|
||||||
<p style="margin-left:15%;">reload configuration</p>
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">Under Windows,
|
|
||||||
if <b>3proxy</b> is installed as a service you can use
|
|
||||||
standard service management to start, stop, pause and
|
|
||||||
continue the 3proxy service, for example: <b><br>
|
|
||||||
net start 3proxy <br>
|
|
||||||
net stop 3proxy <br>
|
|
||||||
net pause 3proxy <br>
|
|
||||||
net continue 3proxy</b></p>
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">Web admin
|
|
||||||
service can also be used to reload configuration. Use wget
|
|
||||||
to automate this task.</p>
|
|
||||||
|
|
||||||
<h2>FILES
|
|
||||||
<a name="FILES"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><i>/usr/local/3proxy/3proxy.cfg
|
|
||||||
(3proxy.cfg)</i></p>
|
|
||||||
|
|
||||||
<p style="margin-left:15%;"><b>3proxy</b> configuration
|
|
||||||
file</p>
|
|
||||||
|
|
||||||
<h2>BUGS
|
|
||||||
<a name="BUGS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">Report all bugs
|
|
||||||
to <b>3proxy@3proxy.org</b></p>
|
|
||||||
|
|
||||||
<h2>SEE ALSO
|
|
||||||
<a name="SEE ALSO"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">3proxy.cfg(3),
|
|
||||||
proxy(8), ftppr(8), socks(8), pop3p(8), tcppm(8), udppm(8),
|
|
||||||
kill(1), syslogd(8), <br>
|
|
||||||
https://3proxy.org/</p>
|
|
||||||
|
|
||||||
<h2>TRIVIA
|
|
||||||
<a name="TRIVIA"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">3APA3A is
|
|
||||||
pronounced as ``zaraza´´.</p>
|
|
||||||
|
|
||||||
<h2>AUTHORS
|
|
||||||
<a name="AUTHORS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">3proxy is
|
|
||||||
designed by Vladimir 3APA3A Dubrovin
|
|
||||||
(<i>3proxy@3proxy.org</i>)</p>
|
|
||||||
<hr>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@ -1,232 +0,0 @@
|
|||||||
<!-- Creator : groff version 1.24.1 -->
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<h1 align="center">ftppr</h1>
|
|
||||||
|
|
||||||
<a href="#NAME">NAME</a><br>
|
|
||||||
<a href="#SYNOPSIS">SYNOPSIS</a><br>
|
|
||||||
<a href="#DESCRIPTION">DESCRIPTION</a><br>
|
|
||||||
<a href="#OPTIONS">OPTIONS</a><br>
|
|
||||||
<a href="#CLIENTS">CLIENTS</a><br>
|
|
||||||
<a href="#BUGS">BUGS</a><br>
|
|
||||||
<a href="#SEE ALSO">SEE ALSO</a><br>
|
|
||||||
<a href="#AUTHORS">AUTHORS</a><br>
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
|
|
||||||
<h2>NAME
|
|
||||||
<a name="NAME"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>ftppr</b> -
|
|
||||||
FTP proxy gateway service</p>
|
|
||||||
|
|
||||||
<h2>SYNOPSIS
|
|
||||||
<a name="SYNOPSIS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>ftppr</b>
|
|
||||||
[<b>-d</b>] [<b>-l</b>[[<i>@</i>]<i>logfile</i>]]
|
|
||||||
[<b>-p</b><i>port</i>] [<b>-i</b><i>internal_ip</i>]
|
|
||||||
[<b>-e</b><i>external_ip</i>]
|
|
||||||
[<b>-h</b><i>default_ip[:port]</i>]</p>
|
|
||||||
|
|
||||||
<h2>DESCRIPTION
|
|
||||||
<a name="DESCRIPTION"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>ftppr</b> is
|
|
||||||
FTP gateway service to allow internal users to access
|
|
||||||
external FTP servers.</p>
|
|
||||||
|
|
||||||
<h2>OPTIONS
|
|
||||||
<a name="OPTIONS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<table width="100%" border="0" rules="none" frame="void"
|
|
||||||
cellspacing="0" cellpadding="0">
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-I</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Inetd mode. Standalone service
|
|
||||||
only.</p> </td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-d</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Daemonize. Detach service from
|
|
||||||
console and run in the background.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-t</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Be silenT. Do not log
|
|
||||||
start/stop/accept error records.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-u</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Never look for username
|
|
||||||
authentication.</p> </td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-e</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">External address. IP address of
|
|
||||||
the interface the proxy should initiate connections from. By
|
|
||||||
default, the system will decide which address to use in
|
|
||||||
accordance with the routing table.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-i</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Internal address. IP address the
|
|
||||||
proxy accepts connections to. By default, connections to any
|
|
||||||
interface are accepted. It´s usually unsafe.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-h</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Default destination. It’s
|
|
||||||
used if the target address is not specified by the user.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-p</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Port. Port proxy listens for
|
|
||||||
incoming connections. Default is 21.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-l</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Log. By default logging is to
|
|
||||||
stdout. If <i>logfile</i> is specified logging is to file.
|
|
||||||
Under Unix, if ´<i>@</i>´ precedes
|
|
||||||
<i>logfile</i>, syslog is used for logging.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-S</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Increase or decrease stack size.
|
|
||||||
You may want to try something like -S8192 if you experience
|
|
||||||
3proxy crashes.</p></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<h2>CLIENTS
|
|
||||||
<a name="CLIENTS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">You can use any
|
|
||||||
FTP client, regardless of FTP proxy support. For a client
|
|
||||||
with FTP proxy support, configure <i>internal_ip</i> and
|
|
||||||
<i>port</i> in the FTP proxy parameters. For clients without
|
|
||||||
FTP proxy support, use <i>internal_ip</i> and <i>port</i> as
|
|
||||||
the FTP server. The address of the real FTP server must be
|
|
||||||
configured as a part of the FTP username. The format for the
|
|
||||||
username is <i>username</i><b>@</b><i>server</i>, where
|
|
||||||
<i>server</i> is the address of the FTP server and
|
|
||||||
<i>username</i> is the user´s login on this FTP
|
|
||||||
server. The login itself may contain an ´@´
|
|
||||||
sign. Only cleartext authentication is currently
|
|
||||||
supported.</p>
|
|
||||||
|
|
||||||
<h2>BUGS
|
|
||||||
<a name="BUGS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">Report all bugs
|
|
||||||
to <b>3proxy@3proxy.org</b></p>
|
|
||||||
|
|
||||||
<h2>SEE ALSO
|
|
||||||
<a name="SEE ALSO"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">3proxy(8),
|
|
||||||
proxy(8), pop3p(8), socks(8), tcppm(8), udppm(8),
|
|
||||||
syslogd(8), <br>
|
|
||||||
https://3proxy.org/</p>
|
|
||||||
|
|
||||||
<h2>AUTHORS
|
|
||||||
<a name="AUTHORS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">3proxy is
|
|
||||||
designed by Vladimir 3APA3A Dubrovin
|
|
||||||
(<i>3proxy@3proxy.org</i>)</p>
|
|
||||||
<hr>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@ -1,232 +0,0 @@
|
|||||||
<!-- Creator : groff version 1.24.1 -->
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<h1 align="center">pop3p</h1>
|
|
||||||
|
|
||||||
<a href="#NAME">NAME</a><br>
|
|
||||||
<a href="#SYNOPSIS">SYNOPSIS</a><br>
|
|
||||||
<a href="#DESCRIPTION">DESCRIPTION</a><br>
|
|
||||||
<a href="#OPTIONS">OPTIONS</a><br>
|
|
||||||
<a href="#CLIENTS">CLIENTS</a><br>
|
|
||||||
<a href="#BUGS">BUGS</a><br>
|
|
||||||
<a href="#SEE ALSO">SEE ALSO</a><br>
|
|
||||||
<a href="#AUTHORS">AUTHORS</a><br>
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
|
|
||||||
<h2>NAME
|
|
||||||
<a name="NAME"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>pop3p</b> -
|
|
||||||
POP3 proxy gateway service</p>
|
|
||||||
|
|
||||||
<h2>SYNOPSIS
|
|
||||||
<a name="SYNOPSIS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>pop3p</b>
|
|
||||||
[<b>-d</b>] [<b>-l</b>[[<i>@</i>]<i>logfile</i>]]
|
|
||||||
[<b>-p</b><i>port</i>] [<b>-i</b><i>internal_ip</i>]
|
|
||||||
[<b>-e</b><i>external_ip</i>]
|
|
||||||
[<b>-h</b><i>default_ip[:port]</i>]</p>
|
|
||||||
|
|
||||||
<h2>DESCRIPTION
|
|
||||||
<a name="DESCRIPTION"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>pop3p</b> is
|
|
||||||
POP3 gateway service to allow internal users to access
|
|
||||||
external POP3 servers.</p>
|
|
||||||
|
|
||||||
<h2>OPTIONS
|
|
||||||
<a name="OPTIONS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<table width="100%" border="0" rules="none" frame="void"
|
|
||||||
cellspacing="0" cellpadding="0">
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-I</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Inetd mode. Standalone service
|
|
||||||
only.</p> </td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-d</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Daemonize. Detach service from
|
|
||||||
console and run in the background.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-t</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Be silenT. Do not log
|
|
||||||
start/stop/accept error records.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-u</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Never look for username
|
|
||||||
authentication.</p> </td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-e</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">External address. IP address of
|
|
||||||
the interface the proxy should initiate connections from. By
|
|
||||||
default, the system will decide which address to use in
|
|
||||||
accordance with the routing table.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-i</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Internal address. IP address the
|
|
||||||
proxy accepts connections to. By default, connections to any
|
|
||||||
interface are accepted. It´s usually unsafe.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-p</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Port. Port proxy listens for
|
|
||||||
incoming connections. Default is 110.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-h</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Default destination. It’s
|
|
||||||
used if the target address is not specified by the user.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-l</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Log. By default logging is to
|
|
||||||
stdout. If <i>logfile</i> is specified logging is to file.
|
|
||||||
Under Unix, if ´<i>@</i>´ precedes
|
|
||||||
<i>logfile</i>, syslog is used for logging.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-S</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Increase or decrease stack size.
|
|
||||||
You may want to try something like -S8192 if you experience
|
|
||||||
3proxy crashes.</p></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<h2>CLIENTS
|
|
||||||
<a name="CLIENTS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">You can use any
|
|
||||||
MUA (Mail User Agent) with POP3 support. Set the client to
|
|
||||||
use <i>internal_ip</i> and <i>port</i> as a POP3 server. The
|
|
||||||
address of the real POP3 server must be configured as a part
|
|
||||||
of the POP3 username. The format for the username is
|
|
||||||
<i>username</i><b>@</b><i>server</i>, where <i>server</i> is
|
|
||||||
the address of the POP3 server and <i>username</i> is the
|
|
||||||
user´s login on this POP3 server. The login itself may
|
|
||||||
contain an ´@´ sign. Only cleartext
|
|
||||||
authentication is supported, because challenge-response
|
|
||||||
authentication (APOP, CRAM-MD5, etc.) requires a challenge
|
|
||||||
from the server before we know which server to connect
|
|
||||||
to.</p>
|
|
||||||
|
|
||||||
<h2>BUGS
|
|
||||||
<a name="BUGS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">Report all bugs
|
|
||||||
to <b>3proxy@3proxy.org</b></p>
|
|
||||||
|
|
||||||
<h2>SEE ALSO
|
|
||||||
<a name="SEE ALSO"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">3proxy(8),
|
|
||||||
ftppr(8), proxy(8), socks(8), tcppm(8), udppm(8),
|
|
||||||
syslogd(8), <br>
|
|
||||||
https://3proxy.org/</p>
|
|
||||||
|
|
||||||
<h2>AUTHORS
|
|
||||||
<a name="AUTHORS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">3proxy is
|
|
||||||
designed by Vladimir 3APA3A Dubrovin
|
|
||||||
(<i>3proxy@3proxy.org</i>)</p>
|
|
||||||
<hr>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@ -1,237 +0,0 @@
|
|||||||
<!-- Creator : groff version 1.24.1 -->
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<h1 align="center">proxy</h1>
|
|
||||||
|
|
||||||
<a href="#NAME">NAME</a><br>
|
|
||||||
<a href="#SYNOPSIS">SYNOPSIS</a><br>
|
|
||||||
<a href="#DESCRIPTION">DESCRIPTION</a><br>
|
|
||||||
<a href="#OPTIONS">OPTIONS</a><br>
|
|
||||||
<a href="#CLIENTS">CLIENTS</a><br>
|
|
||||||
<a href="#BUGS">BUGS</a><br>
|
|
||||||
<a href="#SEE ALSO">SEE ALSO</a><br>
|
|
||||||
<a href="#AUTHORS">AUTHORS</a><br>
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
|
|
||||||
<h2>NAME
|
|
||||||
<a name="NAME"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>proxy</b> -
|
|
||||||
HTTP proxy gateway service</p>
|
|
||||||
|
|
||||||
<h2>SYNOPSIS
|
|
||||||
<a name="SYNOPSIS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>proxy</b>
|
|
||||||
[<b>-d</b>][<b>-a</b>] [<b>-l</b>[[<i>@</i>]<i>logfile</i>]]
|
|
||||||
[<b>-p</b><i>port</i>] [<b>-i</b><i>internal_ip</i>]
|
|
||||||
[<b>-e</b><i>external_ip</i>]</p>
|
|
||||||
|
|
||||||
<h2>DESCRIPTION
|
|
||||||
<a name="DESCRIPTION"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>proxy</b> is
|
|
||||||
HTTP gateway service with HTTPS and FTP over HTTPS
|
|
||||||
support.</p>
|
|
||||||
|
|
||||||
<h2>OPTIONS
|
|
||||||
<a name="OPTIONS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<table width="100%" border="0" rules="none" frame="void"
|
|
||||||
cellspacing="0" cellpadding="0">
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="4%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-I</b></p></td>
|
|
||||||
<td width="5%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Inetd mode. Standalone service
|
|
||||||
only.</p> </td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="4%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-d</b></p></td>
|
|
||||||
<td width="5%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Daemonize. Detach service from
|
|
||||||
console and run in the background.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="4%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-t</b></p></td>
|
|
||||||
<td width="5%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Be silenT. Do not log
|
|
||||||
start/stop/accept error records.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="4%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-u</b></p></td>
|
|
||||||
<td width="5%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Never ask for username
|
|
||||||
authentication</p> </td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="4%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-e</b></p></td>
|
|
||||||
<td width="5%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">External address. IP address of
|
|
||||||
the interface the proxy should initiate connections from. By
|
|
||||||
default, the system will decide which address to use in
|
|
||||||
accordance with the routing table.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="4%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-i</b></p></td>
|
|
||||||
<td width="5%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Internal address. IP address the
|
|
||||||
proxy accepts connections to. By default, connections to any
|
|
||||||
interface are accepted. It´s usually unsafe.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="4%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-a</b></p></td>
|
|
||||||
<td width="5%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Anonymous. Hide information
|
|
||||||
about client.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="4%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-a1</b></p></td>
|
|
||||||
<td width="5%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Anonymous. Show fake information
|
|
||||||
about client.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="4%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-p</b></p></td>
|
|
||||||
<td width="5%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Port. Port proxy listens for
|
|
||||||
incoming connections. Default is 3128.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="4%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-l</b></p></td>
|
|
||||||
<td width="5%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Log. By default logging is to
|
|
||||||
stdout. If <i>logfile</i> is specified logging is to file.
|
|
||||||
Under Unix, if ´<i>@</i>´ preceeds
|
|
||||||
<i>logfile</i>, syslog is used for logging.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="4%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-S</b></p></td>
|
|
||||||
<td width="5%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Increase or decrease stack size.
|
|
||||||
You may want to try something like -S8192 if you experience
|
|
||||||
3proxy crashes.</p></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<h2>CLIENTS
|
|
||||||
<a name="CLIENTS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">You should use a
|
|
||||||
client with HTTP proxy support or configure a router to
|
|
||||||
redirect HTTP traffic to the proxy (transparent proxy).
|
|
||||||
Configure the client to connect to <i>internal_ip</i> and
|
|
||||||
<i>port</i>. HTTPS support allows you to use almost any
|
|
||||||
TCP-based protocol. If you need to limit clients, use
|
|
||||||
<b>3proxy</b>(8) instead.</p>
|
|
||||||
|
|
||||||
<h2>BUGS
|
|
||||||
<a name="BUGS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">Report all bugs
|
|
||||||
to <b>3proxy@3proxy.org</b></p>
|
|
||||||
|
|
||||||
<h2>SEE ALSO
|
|
||||||
<a name="SEE ALSO"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">3proxy(8),
|
|
||||||
ftppr(8), socks(8), pop3p(8), tcppm(8), udppm(8),
|
|
||||||
syslogd(8), <br>
|
|
||||||
https://3proxy.org/</p>
|
|
||||||
|
|
||||||
<h2>AUTHORS
|
|
||||||
<a name="AUTHORS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">3proxy is
|
|
||||||
designed by Vladimir 3APA3A Dubrovin
|
|
||||||
(<i>3proxy@3proxy.org</i>)</p>
|
|
||||||
<hr>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@ -1,232 +0,0 @@
|
|||||||
<!-- Creator : groff version 1.24.1 -->
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<h1 align="center">smtpp</h1>
|
|
||||||
|
|
||||||
<a href="#NAME">NAME</a><br>
|
|
||||||
<a href="#SYNOPSIS">SYNOPSIS</a><br>
|
|
||||||
<a href="#DESCRIPTION">DESCRIPTION</a><br>
|
|
||||||
<a href="#OPTIONS">OPTIONS</a><br>
|
|
||||||
<a href="#CLIENTS">CLIENTS</a><br>
|
|
||||||
<a href="#BUGS">BUGS</a><br>
|
|
||||||
<a href="#SEE ALSO">SEE ALSO</a><br>
|
|
||||||
<a href="#AUTHORS">AUTHORS</a><br>
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
|
|
||||||
<h2>NAME
|
|
||||||
<a name="NAME"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>smtpp</b> -
|
|
||||||
SMTP proxy gateway service</p>
|
|
||||||
|
|
||||||
<h2>SYNOPSIS
|
|
||||||
<a name="SYNOPSIS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>smtpp</b>
|
|
||||||
[<b>-d</b>] [<b>-l</b>[[<i>@</i>]<i>logfile</i>]]
|
|
||||||
[<b>-p</b><i>port</i>] [<b>-i</b><i>internal_ip</i>]
|
|
||||||
[<b>-e</b><i>external_ip</i>]
|
|
||||||
[<b>-h</b><i>default_ip[:port]</i>]</p>
|
|
||||||
|
|
||||||
<h2>DESCRIPTION
|
|
||||||
<a name="DESCRIPTION"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>smtpp</b> is
|
|
||||||
SMTP gateway service to allow internal users to access
|
|
||||||
external SMTP servers.</p>
|
|
||||||
|
|
||||||
<h2>OPTIONS
|
|
||||||
<a name="OPTIONS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<table width="100%" border="0" rules="none" frame="void"
|
|
||||||
cellspacing="0" cellpadding="0">
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-I</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Inetd mode. Standalone service
|
|
||||||
only.</p> </td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-d</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Daemonize. Detach service from
|
|
||||||
console and run in the background.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-t</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Be silenT. Do not log
|
|
||||||
start/stop/accept error records.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-u</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Never look for username
|
|
||||||
authentication.</p> </td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-e</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">External address. IP address of
|
|
||||||
the interface the proxy should initiate connections from. By
|
|
||||||
default, the system will decide which address to use in
|
|
||||||
accordance with the routing table.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-i</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Internal address. IP address the
|
|
||||||
proxy accepts connections to. By default, connections to any
|
|
||||||
interface are accepted. It´s usually unsafe.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-p</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Port. Port proxy listens for
|
|
||||||
incoming connections. Default is 25.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-h</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Default destination. It’s
|
|
||||||
used if the target address is not specified by the user.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-l</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Log. By default logging is to
|
|
||||||
stdout. If <i>logfile</i> is specified logging is to file.
|
|
||||||
Under Unix, if ´<i>@</i>´ precedes
|
|
||||||
<i>logfile</i>, syslog is used for logging.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-S</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Increase or decrease stack size.
|
|
||||||
You may want to try something like -S8192 if you experience
|
|
||||||
3proxy crashes.</p></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<h2>CLIENTS
|
|
||||||
<a name="CLIENTS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">You can use any
|
|
||||||
MUA (Mail User Agent) with SMTP authentication support. Set
|
|
||||||
the client to use <i>internal_ip</i> and <i>port</i> as an
|
|
||||||
SMTP server. The address of the real SMTP server must be
|
|
||||||
configured as a part of the SMTP username. The format for
|
|
||||||
the username is <i>username</i><b>@</b><i>server</i>, where
|
|
||||||
<i>server</i> is the address of the SMTP server and
|
|
||||||
<i>username</i> is the user´s login on this SMTP
|
|
||||||
server. The login itself may contain an ´@´
|
|
||||||
sign. Only cleartext authentication is supported, because
|
|
||||||
challenge-response authentication (CRAM-MD5, SPA, etc.)
|
|
||||||
requires a challenge from the server before we know which
|
|
||||||
server to connect to.</p>
|
|
||||||
|
|
||||||
<h2>BUGS
|
|
||||||
<a name="BUGS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">Report all bugs
|
|
||||||
to <b>3proxy@3proxy.org</b></p>
|
|
||||||
|
|
||||||
<h2>SEE ALSO
|
|
||||||
<a name="SEE ALSO"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">3proxy(8),
|
|
||||||
ftppr(8), proxy(8), socks(8), tcppm(8), udppm(8),
|
|
||||||
syslogd(8), <br>
|
|
||||||
https://3proxy.org/</p>
|
|
||||||
|
|
||||||
<h2>AUTHORS
|
|
||||||
<a name="AUTHORS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">3proxy is
|
|
||||||
designed by Vladimir 3APA3A Dubrovin
|
|
||||||
(<i>3proxy@3proxy.org</i>)</p>
|
|
||||||
<hr>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@ -1,232 +0,0 @@
|
|||||||
<!-- Creator : groff version 1.24.1 -->
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<h1 align="center">socks</h1>
|
|
||||||
|
|
||||||
<a href="#NAME">NAME</a><br>
|
|
||||||
<a href="#SYNOPSIS">SYNOPSIS</a><br>
|
|
||||||
<a href="#DESCRIPTION">DESCRIPTION</a><br>
|
|
||||||
<a href="#OPTIONS">OPTIONS</a><br>
|
|
||||||
<a href="#CLIENTS">CLIENTS</a><br>
|
|
||||||
<a href="#BUGS">BUGS</a><br>
|
|
||||||
<a href="#SEE ALSO">SEE ALSO</a><br>
|
|
||||||
<a href="#AUTHORS">AUTHORS</a><br>
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
|
|
||||||
<h2>NAME
|
|
||||||
<a name="NAME"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>socks</b> -
|
|
||||||
SOCKS 4/4.5/5 gateway service</p>
|
|
||||||
|
|
||||||
<h2>SYNOPSIS
|
|
||||||
<a name="SYNOPSIS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>socks</b>
|
|
||||||
[<b>-d</b>] [<b>-l</b>[[<i>@</i>]<i>logfile</i>]]
|
|
||||||
[<b>-p</b><i>port</i>] [<b>-i</b><i>internal_ip</i>]
|
|
||||||
[<b>-e</b><i>external_ip</i>]</p>
|
|
||||||
|
|
||||||
<h2>DESCRIPTION
|
|
||||||
<a name="DESCRIPTION"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>socks</b> is
|
|
||||||
SOCKS server. It supports SOCKSv4, SOCKSv4.5 (extension to
|
|
||||||
v4 for server side name resolution) and SOCKSv5. SOCKSv5
|
|
||||||
specification allows both outgoing and reverse TCP
|
|
||||||
connections and UDP portmapping.</p>
|
|
||||||
|
|
||||||
<h2>OPTIONS
|
|
||||||
<a name="OPTIONS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<table width="100%" border="0" rules="none" frame="void"
|
|
||||||
cellspacing="0" cellpadding="0">
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-I</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Inetd mode. Standalone service
|
|
||||||
only.</p> </td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-d</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Daemonize. Detach service from
|
|
||||||
console and run in the background.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-t</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Be silenT. Do not log
|
|
||||||
start/stop/accept error records.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-u</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Never ask for username
|
|
||||||
authentication</p> </td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-e</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">External address. IP address of
|
|
||||||
the interface the proxy should initiate connections from.
|
|
||||||
External IP must be specified if you need incoming
|
|
||||||
connections. By default, the system will decide which
|
|
||||||
address to use in accordance with the routing table.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-N</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">External NAT address 3proxy
|
|
||||||
reports to client for BIND and UDPASSOC. By default, the
|
|
||||||
external address is reported. It’s only useful in the
|
|
||||||
case of IP-IP NAT (will not work for PAT).</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-i</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Internal address. IP address the
|
|
||||||
proxy accepts connections to. By default, connections to any
|
|
||||||
interface are accepted. It´s usually unsafe.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-p</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Port. Port proxy listens for
|
|
||||||
incoming connections. Default is 1080.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-l</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Log. By default logging is to
|
|
||||||
stdout. If <i>logfile</i> is specified logging is to file.
|
|
||||||
Under Unix, if ´<i>@</i>´ preceeds
|
|
||||||
<i>logfile</i>, syslog is used for logging.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-S</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Increase or decrease stack size.
|
|
||||||
You may want to try something like -S8192 if you experience
|
|
||||||
3proxy crashes.</p></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<h2>CLIENTS
|
|
||||||
<a name="CLIENTS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">You should use a
|
|
||||||
client with SOCKS support or use some socksification support
|
|
||||||
(for example <i>SocksCAP</i> or <i>FreeCAP</i>). Configure
|
|
||||||
client to use <i>internal_ip</i> and <i>port</i>. SOCKS
|
|
||||||
allows you to use almost any application protocol without
|
|
||||||
limitation. This implementation also allows you to open
|
|
||||||
privileged ports on the server (if socks has sufficient
|
|
||||||
privileges). If you need to control access, use
|
|
||||||
<b>3proxy</b>(8) instead.</p>
|
|
||||||
|
|
||||||
<h2>BUGS
|
|
||||||
<a name="BUGS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">Report all bugs
|
|
||||||
to <b>3proxy@3proxy.org</b></p>
|
|
||||||
|
|
||||||
<h2>SEE ALSO
|
|
||||||
<a name="SEE ALSO"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">3proxy(8),
|
|
||||||
proxy(8), ftppr(8), pop3p(8), tcppm(8), udppm(8),
|
|
||||||
syslogd(8), <br>
|
|
||||||
https://3proxy.org/</p>
|
|
||||||
|
|
||||||
<h2>AUTHORS
|
|
||||||
<a name="AUTHORS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">3proxy is
|
|
||||||
designed by Vladimir 3APA3A Dubrovin
|
|
||||||
(<i>3proxy@3proxy.org</i>)</p>
|
|
||||||
<hr>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@ -1,209 +0,0 @@
|
|||||||
<!-- Creator : groff version 1.24.1 -->
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<h1 align="center">tcppm</h1>
|
|
||||||
|
|
||||||
<a href="#NAME">NAME</a><br>
|
|
||||||
<a href="#SYNOPSIS">SYNOPSIS</a><br>
|
|
||||||
<a href="#DESCRIPTION">DESCRIPTION</a><br>
|
|
||||||
<a href="#OPTIONS">OPTIONS</a><br>
|
|
||||||
<a href="#ARGUMENTS">ARGUMENTS</a><br>
|
|
||||||
<a href="#CLIENTS">CLIENTS</a><br>
|
|
||||||
<a href="#BUGS">BUGS</a><br>
|
|
||||||
<a href="#SEE ALSO">SEE ALSO</a><br>
|
|
||||||
<a href="#AUTHORS">AUTHORS</a><br>
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
|
|
||||||
<h2>NAME
|
|
||||||
<a name="NAME"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>tcppm</b> -
|
|
||||||
TCP port mapper</p>
|
|
||||||
|
|
||||||
<h2>SYNOPSIS
|
|
||||||
<a name="SYNOPSIS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>tcppm</b>
|
|
||||||
[<b>-d</b>] [<b>-l</b>[[<i>@</i>]<i>logfile</i>]]
|
|
||||||
[<b>-i</b><i>internal_ip</i>] [<b>-e</b><i>external_ip</i>]
|
|
||||||
<i>local_port remote_host remote_port</i></p>
|
|
||||||
|
|
||||||
<h2>DESCRIPTION
|
|
||||||
<a name="DESCRIPTION"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><i><b>tcppm</b></i>
|
|
||||||
forwards connections from local to remote TCP port</p>
|
|
||||||
|
|
||||||
<h2>OPTIONS
|
|
||||||
<a name="OPTIONS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<table width="100%" border="0" rules="none" frame="void"
|
|
||||||
cellspacing="0" cellpadding="0">
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-I</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Inetd mode. Standalone service
|
|
||||||
only.</p> </td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-d</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Daemonize. Detach service from
|
|
||||||
console and run in the background.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-t</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Be silenT. Do not log
|
|
||||||
start/stop/accept error records.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-e</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">External address. IP address of
|
|
||||||
the interface the proxy should initiate connections from. By
|
|
||||||
default, the system will decide which address to use in
|
|
||||||
accordance with the routing table.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-i</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Internal address. IP address the
|
|
||||||
proxy accepts connections to. By default, connections to any
|
|
||||||
interface are accepted. It´s usually unsafe.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-l</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Log. By default logging is to
|
|
||||||
stdout. If <i>logfile</i> is specified logging is to file.
|
|
||||||
Under Unix, if ´<i>@</i>´ precedes
|
|
||||||
<i>logfile</i>, syslog is used for logging.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-S</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Increase or decrease stack size.
|
|
||||||
You may want to try something like -S8192 if you experience
|
|
||||||
3proxy crashes.</p></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<h2>ARGUMENTS
|
|
||||||
<a name="ARGUMENTS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><i>local_port</i></p>
|
|
||||||
|
|
||||||
<p style="margin-left:15%;">- port tcppm accepts
|
|
||||||
connections on</p>
|
|
||||||
|
|
||||||
<p style="margin-left:6%;"><i>remote_host</i></p>
|
|
||||||
|
|
||||||
<p style="margin-left:15%;">- IP address of the host the
|
|
||||||
connection is forwarded to</p>
|
|
||||||
|
|
||||||
<p style="margin-left:6%;"><i>remote_port</i></p>
|
|
||||||
|
|
||||||
<p style="margin-left:15%;">- remote port the connection is
|
|
||||||
forwarded to</p>
|
|
||||||
|
|
||||||
<h2>CLIENTS
|
|
||||||
<a name="CLIENTS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">Any TCP-based
|
|
||||||
application can be used as a client. Use <i>internal_ip</i>
|
|
||||||
and <i>local_port</i> as the destination in the client
|
|
||||||
application. The connection is forwarded to
|
|
||||||
<i>remote_host</i>:<i>remote_port</i></p>
|
|
||||||
|
|
||||||
<h2>BUGS
|
|
||||||
<a name="BUGS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">Report all bugs
|
|
||||||
to <b>3proxy@3proxy.org</b></p>
|
|
||||||
|
|
||||||
<h2>SEE ALSO
|
|
||||||
<a name="SEE ALSO"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">3proxy(8),
|
|
||||||
proxy(8), ftppr(8), socks(8), pop3p(8), udppm(8),
|
|
||||||
syslogd(8), <br>
|
|
||||||
https://3proxy.org/</p>
|
|
||||||
|
|
||||||
<h2>AUTHORS
|
|
||||||
<a name="AUTHORS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">3proxy is
|
|
||||||
designed by Vladimir 3APA3A Dubrovin
|
|
||||||
(<i>3proxy@3proxy.org</i>)</p>
|
|
||||||
<hr>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@ -1,272 +0,0 @@
|
|||||||
<!-- Creator : groff version 1.24.1 -->
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<h1 align="center">tlspr</h1>
|
|
||||||
|
|
||||||
<a href="#NAME">NAME</a><br>
|
|
||||||
<a href="#SYNOPSIS">SYNOPSIS</a><br>
|
|
||||||
<a href="#DESCRIPTION">DESCRIPTION</a><br>
|
|
||||||
<a href="#OPTIONS">OPTIONS</a><br>
|
|
||||||
<a href="#CLIENTS">CLIENTS</a><br>
|
|
||||||
<a href="#BUGS">BUGS</a><br>
|
|
||||||
<a href="#SEE ALSO">SEE ALSO</a><br>
|
|
||||||
<a href="#AUTHORS">AUTHORS</a><br>
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
|
|
||||||
<h2>NAME
|
|
||||||
<a name="NAME"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>tlspr</b> -
|
|
||||||
SNI proxy gateway service</p>
|
|
||||||
|
|
||||||
<h2>SYNOPSIS
|
|
||||||
<a name="SYNOPSIS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>tlspr</b>
|
|
||||||
[<b>-d</b>][<b>-a</b>] [<b>-l</b>[[<i>@</i>]<i>logfile</i>]]
|
|
||||||
[<b>-p</b><i>listening_port</i>]
|
|
||||||
[<b>-P</b><i>destination_port</i>]
|
|
||||||
[<b>-c</b><i>tls_check_level</i>]
|
|
||||||
[<b>-i</b><i>internal_ip</i>]
|
|
||||||
[<b>-e</b><i>external_ip</i>]</p>
|
|
||||||
|
|
||||||
<h2>DESCRIPTION
|
|
||||||
<a name="DESCRIPTION"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>tlspr</b> is
|
|
||||||
an SNI gateway service (destination host is taken from TLS
|
|
||||||
handshake). The destination port must be specified via the
|
|
||||||
-P option (or it may be detected with the Transparent
|
|
||||||
plugin).</p>
|
|
||||||
|
|
||||||
<h2>OPTIONS
|
|
||||||
<a name="OPTIONS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<table width="100%" border="0" rules="none" frame="void"
|
|
||||||
cellspacing="0" cellpadding="0">
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="4%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-I</b></p></td>
|
|
||||||
<td width="5%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Inetd mode. Standalone service
|
|
||||||
only.</p> </td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="4%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-d</b></p></td>
|
|
||||||
<td width="5%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Daemonize. Detach service from
|
|
||||||
console and run in the background.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="4%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-t</b></p></td>
|
|
||||||
<td width="5%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Be silenT. Do not log
|
|
||||||
start/stop/accept error records.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="4%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-u</b></p></td>
|
|
||||||
<td width="5%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Never ask for username
|
|
||||||
authentication</p> </td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="4%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-e</b></p></td>
|
|
||||||
<td width="5%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">External address. IP address of
|
|
||||||
the interface the proxy should initiate connections from. By
|
|
||||||
default, the system will decide which address to use in
|
|
||||||
accordance with the routing table.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="4%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-i</b></p></td>
|
|
||||||
<td width="5%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Internal address. IP address the
|
|
||||||
proxy accepts connections to. By default, connections to any
|
|
||||||
interface are accepted. It´s usually unsafe.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="4%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-a</b></p></td>
|
|
||||||
<td width="5%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Anonymous. Hide information
|
|
||||||
about client.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="4%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-a1</b></p></td>
|
|
||||||
<td width="5%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Anonymous. Show fake information
|
|
||||||
about client.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="4%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-p</b></p></td>
|
|
||||||
<td width="5%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">listening_port. Port proxy
|
|
||||||
listens for incoming connections. Default is 1443.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="4%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-P</b></p></td>
|
|
||||||
<td width="5%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">destination_port. Port to
|
|
||||||
establish outgoing connections. Required unless the
|
|
||||||
Transparent plugin is used, because the TLS handshake does
|
|
||||||
not contain port information. Default is 443.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="4%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-c</b></p></td>
|
|
||||||
<td width="5%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">TLS_CHECK_LEVEL. 0 (default) -
|
|
||||||
allow non-TLS traffic to pass, 1 - require TLS, only check
|
|
||||||
client HELLO packet, 2 - require TLS, check both client and
|
|
||||||
server HELLO, 3 - require TLS, check that the server sends a
|
|
||||||
certificate (not compatible with TLS 1.3), 4 - require
|
|
||||||
mutual TLS, check that the server sends a certificate
|
|
||||||
request and the client sends a certificate (not compatible
|
|
||||||
with TLS 1.3)</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="4%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-l</b></p></td>
|
|
||||||
<td width="5%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Log. By default logging is to
|
|
||||||
stdout. If <i>logfile</i> is specified logging is to file.
|
|
||||||
Under Unix, if ´<i>@</i>´ precedes
|
|
||||||
<i>logfile</i>, syslog is used for logging.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="4%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-S</b></p></td>
|
|
||||||
<td width="5%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Increase or decrease stack size.
|
|
||||||
You may want to try something like -S8192 if you experience
|
|
||||||
3proxy crashes.</p></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<h2>CLIENTS
|
|
||||||
<a name="CLIENTS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">You should use a
|
|
||||||
client with TLS support or configure a router to redirect
|
|
||||||
TLS traffic to the proxy (transparent proxy). Configure the
|
|
||||||
client to connect to <i>internal_ip</i> and <i>port</i>. If
|
|
||||||
you need to limit clients, use <b>3proxy</b>(8) instead.</p>
|
|
||||||
|
|
||||||
<h2>BUGS
|
|
||||||
<a name="BUGS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">Report all bugs
|
|
||||||
to <b>3proxy@3proxy.org</b></p>
|
|
||||||
|
|
||||||
<h2>SEE ALSO
|
|
||||||
<a name="SEE ALSO"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">3proxy(8),
|
|
||||||
ftppr(8), proxy(8), socks(8), pop3p(8), smtpp(8), tcppm(8),
|
|
||||||
udppm(8), syslogd(8), <br>
|
|
||||||
https://3proxy.org/</p>
|
|
||||||
|
|
||||||
<h2>AUTHORS
|
|
||||||
<a name="AUTHORS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">3proxy is
|
|
||||||
designed by Vladimir 3APA3A Dubrovin
|
|
||||||
(<i>3proxy@3proxy.org</i>)</p>
|
|
||||||
<hr>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@ -1,225 +0,0 @@
|
|||||||
<!-- Creator : groff version 1.24.1 -->
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<h1 align="center">udppm</h1>
|
|
||||||
|
|
||||||
<a href="#NAME">NAME</a><br>
|
|
||||||
<a href="#SYNOPSIS">SYNOPSIS</a><br>
|
|
||||||
<a href="#DESCRIPTION">DESCRIPTION</a><br>
|
|
||||||
<a href="#OPTIONS">OPTIONS</a><br>
|
|
||||||
<a href="#ARGUMENTS">ARGUMENTS</a><br>
|
|
||||||
<a href="#CLIENTS">CLIENTS</a><br>
|
|
||||||
<a href="#BUGS">BUGS</a><br>
|
|
||||||
<a href="#SEE ALSO">SEE ALSO</a><br>
|
|
||||||
<a href="#AUTHORS">AUTHORS</a><br>
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
|
|
||||||
<h2>NAME
|
|
||||||
<a name="NAME"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>udppm</b> -
|
|
||||||
UDP port mapper</p>
|
|
||||||
|
|
||||||
<h2>SYNOPSIS
|
|
||||||
<a name="SYNOPSIS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><b>udppm</b>
|
|
||||||
[<b>-ds</b>] [<b>-l</b>[[<i>@</i>]<i>logfile</i>]]
|
|
||||||
[<b>-i</b><i>internal_ip</i>] [<b>-e</b><i>external_ip</i>]
|
|
||||||
<i>local_port remote_host remote_port</i></p>
|
|
||||||
|
|
||||||
<h2>DESCRIPTION
|
|
||||||
<a name="DESCRIPTION"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><i><b>udppm</b></i>
|
|
||||||
forwards datagrams from local to remote UDP port</p>
|
|
||||||
|
|
||||||
<h2>OPTIONS
|
|
||||||
<a name="OPTIONS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<table width="100%" border="0" rules="none" frame="void"
|
|
||||||
cellspacing="0" cellpadding="0">
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-I</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Inetd mode. Standalone service
|
|
||||||
only.</p> </td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-d</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Daemonize. Detach service from
|
|
||||||
console and run in the background.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-t</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Be silenT. Do not log
|
|
||||||
start/stop/accept error records.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-e</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">External address. IP address of
|
|
||||||
the interface the proxy should initiate datagrams from. By
|
|
||||||
default, the system will decide which address to use in
|
|
||||||
accordance with the routing table.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-i</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Internal address. IP address the
|
|
||||||
proxy accepts datagrams to. By default, connections to any
|
|
||||||
interface are accepted. It´s usually unsafe.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-l</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Log. By default logging is to
|
|
||||||
stdout. If <i>logfile</i> is specified logging is to file.
|
|
||||||
Under Unix, if ´<i>@</i>´ precedes
|
|
||||||
<i>logfile</i>, syslog is used for logging.</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-s</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Single packet. By default, only
|
|
||||||
one client can use the udppm service, but if -s is
|
|
||||||
specified, only one packet will be forwarded between client
|
|
||||||
and server. This allows the service to be shared between
|
|
||||||
multiple clients for single-packet services (for example,
|
|
||||||
name lookups).</p></td></tr>
|
|
||||||
<tr valign="top" align="left">
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="3%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em"><b>-S</b></p></td>
|
|
||||||
<td width="6%"></td>
|
|
||||||
<td width="85%">
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-top: 1em">Increase or decrease stack size.
|
|
||||||
You may want to try something like -S8192 if you experience
|
|
||||||
3proxy crashes.</p></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<h2>ARGUMENTS
|
|
||||||
<a name="ARGUMENTS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em"><i>local_port</i></p>
|
|
||||||
|
|
||||||
<p style="margin-left:15%;">- port udppm accepts datagrams
|
|
||||||
on</p>
|
|
||||||
|
|
||||||
<p style="margin-left:6%;"><i>remote_host</i></p>
|
|
||||||
|
|
||||||
<p style="margin-left:15%;">- IP address of the host
|
|
||||||
datagrams are forwarded to</p>
|
|
||||||
|
|
||||||
<p style="margin-left:6%;"><i>remote_port</i></p>
|
|
||||||
|
|
||||||
<p style="margin-left:15%;">- remote port datagrams are
|
|
||||||
forwarded to</p>
|
|
||||||
|
|
||||||
<h2>CLIENTS
|
|
||||||
<a name="CLIENTS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">Any UDP-based
|
|
||||||
application can be used as a client. Use <i>internal_ip</i>
|
|
||||||
and <i>local_port</i> as the destination in the client
|
|
||||||
application. All datagrams are forwarded to
|
|
||||||
<i>remote_host</i>:<i>remote_port</i></p>
|
|
||||||
|
|
||||||
<h2>BUGS
|
|
||||||
<a name="BUGS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">Report all bugs
|
|
||||||
to <b>3proxy@3proxy.org</b></p>
|
|
||||||
|
|
||||||
<h2>SEE ALSO
|
|
||||||
<a name="SEE ALSO"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">3proxy(8),
|
|
||||||
proxy(8), ftppr(8), socks(8), pop3p(8), udppm(8),
|
|
||||||
syslogd(8), <br>
|
|
||||||
https://3proxy.org/</p>
|
|
||||||
|
|
||||||
<h2>AUTHORS
|
|
||||||
<a name="AUTHORS"></a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<p style="margin-left:6%; margin-top: 1em">3proxy is
|
|
||||||
designed by Vladimir 3APA3A Dubrovin
|
|
||||||
(<i>3proxy@3proxy.org</i>)</p>
|
|
||||||
<hr>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
Loading…
Reference in New Issue
Block a user