mirror of
https://github.com/koreader/koreader.git
synced 2025-12-13 20:36:53 +01:00
[plugin] fix netsh command (#5744)
The edited `netsh` command line had errors: 1- missing v4tov4 (or v6 variant) 2- should have `=` instead of `:` 3- typo in listen(ing)address and listen(ing)port
This commit is contained in:
committed by
Frans de Jonge
parent
8a0ce98149
commit
4e5779199d
@@ -238,7 +238,7 @@ function EvernoteExporter:addToMainMenu(menu_items)
|
||||
|
||||
To export to Joplin, you must forward the IP and port used by this plugin to the localhost:port on which Joplin is listening. This can be done with socat or a similar program. For example:
|
||||
|
||||
For Windows: netsh interface portproxy add listeningaddress:0.0.0.0 listeningport:41185 connectaddress:localhost connectport:41184
|
||||
For Windows: netsh interface portproxy add v4tov4 listenaddress=0.0.0.0 listenport=41185 connectaddress=localhost connectport=41184
|
||||
|
||||
For Linux: $socat tcp-listen:41185,reuseaddr,fork tcp:localhost:41184
|
||||
|
||||
|
||||
Reference in New Issue
Block a user