Исходный код вики TCP Proxy (netsh portproxy)

Редактировал(а) Alexandr Fokin 2023/06/17 13:29

Последние авторы
1 |netsh portproxy
2 |Настройка проброса сетевых портов (порт форвардинга) в Windows
3 https://winitpro.ru/index.php/2014/12/23/nastrojka-port-forvardinga-v-windows/
4 |{{code language="cmd"}}
5 rem PowerShell | Проверить свободен ли порт
6 Test-NetConnection -ComputerName localhost -Port 3340
7
8 rem CMD | Создать правило перенаправления
9 netsh interface portproxy add v4tov4 listenport=<source port> listenaddress=<source ip/domain> connectport=<destination port> connectaddress=<destination ip/domain>
10
11 rem CMD | Удалить правило
12 netsh interface portproxy delete v4tov4 listenaddress=<source ip/domain> listenport=<source port>
13 {{/code}}
14 |[[TCP>>Сети.Протоколы.TCP.WebHome]] протокол.
15
16 ----
17
18 ==== Внутренние ссылки: ====
19
20 ====== Дочерние страницы: ======
21
22 {{children/}}
23
24 ====== Обратные ссылки: ======
25
26 {{velocity}}
27 #set ($links = $doc.getBacklinks())
28 #if ($links.size() > 0)
29 #foreach ($docname in $links)
30 #set ($rdoc = $xwiki.getDocument($docname).getTranslatedDocument())
31 * [[$escapetool.xml($rdoc.fullName)]]
32 #end
33 #else
34 No back links for this page!
35 #end
36 {{/velocity}}
37
38 ----