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