HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

iproxy — A proxy that binds local TCP ports to be forwarded to the specified ports on a usbmux device. More i

Submitted by: @import:tldr-pages··
0
Viewed 0 times
proxycommandlocaliproxybindstcpclithat

Problem

How to use the iproxy command: A proxy that binds local TCP ports to be forwarded to the specified ports on a usbmux device. More information: <https://manned.org/iproxy>.

Solution

iproxy — A proxy that binds local TCP ports to be forwarded to the specified ports on a usbmux device. More information: <https://manned.org/iproxy>.

Bind a local TCP port and forward it to a port on the connected USB device:
iproxy {{local_port}}:{{device_port}}


Bind multiple local TCP ports and forward them to the respective ports on the connected USB device:
iproxy {{local_port1}}:{{device_port1}} {{local_port2}}:{{device_port2}}


Bind a local port and forward it to a specific device by UDID:
iproxy --udid {{device_udid}} {{local_port}}:{{device_port}}


Bind a local port and forward it to a network-connected device with Wi-Fi sync enabled:
iproxy --network {{local_port}}:{{device_port}}

Code Snippets

Bind a local TCP port and forward it to a port on the connected USB device

iproxy {{local_port}}:{{device_port}}

Bind multiple local TCP ports and forward them to the respective ports on the connected USB device

iproxy {{local_port1}}:{{device_port1}} {{local_port2}}:{{device_port2}}

Bind a local port and forward it to a specific device by UDID

iproxy --udid {{device_udid}} {{local_port}}:{{device_port}}

Bind a local port and forward it to a network-connected device with Wi-Fi sync enabled

iproxy --network {{local_port}}:{{device_port}}

Context

tldr-pages: common/iproxy

Revisions (0)

No revisions yet.