Skip to content

pocke/remote-open

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

remote-open

open/start/xdg-open over TCP.

Installation

go get github.com/pocke/remote-open/...

Or download from https://github.com/pocke/remote-open/releases/latest.

Usage

port default is 2489.

Server

remote-opend --port 1234

Client

remote-open --port 1234 --host '192.168.x.x' 'http://example.com'

http://example.com is opened by browser on Server.

Configuration

Server

~/.config/remote-opend.toml

port = 1234
allow = '192.168.0.0/24'

allow is a comma separated list of allowed IP(and subnet mask) or an allowed IP.
Default value is 0.0.0.0/0,::0(allowed from all IP).

Client

~/.config/remote-open.toml

port = 1234
host = '192.168.x.x'