Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

anyremote2html(1) [debian man page]

ANYREMOTE2HTML(1)					      General Commands Manual						 ANYREMOTE2HTML(1)

NAME
anyremote2html - web interface for anyRemote acting as HTTP server SYNOPSIS
anyremote2html -w web-port -a anyRemote-port [-i directory-with-icons] [-s 16|32|64] [-r refresh rate] [--width integer] [-d] DESCRIPTION
The overall goal of this project is to provide remote control service on Linux through Bluetooth, InfraRed, Wi-Fi or just TCP/IP connec- tion. anyRemote supports a wide range of modern cell phones like Nokia, SonyEricsson, Motorola and others. It was developed as a thin "communication" layer between Bluetooth (IR, Wi-Fi)-capabled phones and Linux, and in theory it could be config- ured to manage almost any software. anyRemote is a console application, but in addition there are GUI front-ends for Gnome and KDE and this web front-end. With the help of this interface any device which contains a web browser and which can connect to the PC with anyRemote by TCP/IP (GPRS, Wi- Fi, ...) could be used as a remote control. USAGE
Run anyremote/kanyremote with "-s socket:<port>" option: anyremote -s socket:5000 -f <cfg. file> Run anyremote2html -a <anyremote port> -w <http port> -s 16|32|64 -i <directory with icons> For example: anyremote2html -a 5000 -w 5050 -s 64 -i /usr/share/pixmaps/anyRemote2html Run browser on device and connect to http://<ip.of.PC>:5050 For easier use and configuration of anyRemote as well as anyRemote2html, use either kAnyRemote or gAnyRemote. Further information is shipped with the anyRemote package. OPTIONS
-h, --help Show summary of options. -w <web port> Use specified port for HTTP server, default is 5550 -a <anyRemote port> Use specified port to connect to anyRemote, default is 5000 -i <directory with icons> Default is /usr/share/pixmaps/anyremote2html/ -s 16|32|64 Use specified icon size, default is 64 -r no|smart|<positive int> Set refresh rate for web page, "no" means no refresh, "smart" means variable refresh rate (default) --width <positive int> Assume screen width is specified value, default is 800 -d Show debug output SEE ALSO
anyremote(1), ganyremote(1x), kanyremote(1x). BUGS
If you find any bugs, please report to anyremote@mail.ru AUTHOR
anyremote2html was written by Mikhail Fedotov <anyremote@mail.ru>. This manual page was written by Philipp Huebner <debalance@debian.org>, for the Debian project (and may be used by others). February 5, 2009 ANYREMOTE2HTML(1)

Check Out this Related Man Page

ssh-http-proxy-connect(1)					   User Commands					 ssh-http-proxy-connect(1)

NAME
ssh-http-proxy-connect - Secure Shell proxy for HTTP SYNOPSIS
/usr/lib/ssh/ssh-http-proxy-connect [-h http_proxy_host] [-p http_proxy_port] connect_host connect_port DESCRIPTION
A proxy command for ssh(1) that uses HTTP CONNECT. Typical use is where connections external to a network are only allowed via a proxy web server. OPTIONS
The following options are supported: -h http_proxy_host Specifies the proxy web server through which to connect. Overrides the HTTPPROXY and http_proxy environment vari- ables if they are set. -p http_proxy_port Specifies the port on which the proxy web server runs. If not specified, port 80 is assumed. Overrides the HTTP- PROXYPORT and http_proxy environment variables if they are set. OPERANDS
The following operands are supported: http_proxy_host The host name or IP address (IPv4 or IPv6) of the proxy. http_proxy_port The numeric port number to connect to on http_proxy_host. connect_host The name of the remote host to which the proxy web server is to connect you. connect_port The numeric port number of the proxy web server to connect you to on http_proxy_host. EXAMPLES
The recommended way to use a proxy connection command is to configure the ProxyCommand in ssh_config(4) (see Example 1 and Example 2). Example 3 shows how the proxy command can be specified on the command line when running ssh(1). Example 1: Setting the proxy from the environment The following example uses ssh-http-proxy-connect in ssh_config(4) when the proxy is set from the environment: Host playtime.foo.com ProxyCommand /usr/lib/ssh/ssh-http-proxy-connect playtime.foo.com 22 Example 2: Overriding proxy environment variables The following example uses ssh-http-proxy-connect in ssh_config(4) to override (or if not set) proxy environment variables: Host playtime.foo.com ProxyCommand /usr/lib/ssh/ssh-http-proxy-connect -h webcache -p 8080 playtime.foo.com 22 Example 3: Using the command line The following example uses ssh-http-proxy-connect from the ssh(1) command line: example$ ssh -o'ProxyCommand="/usr/lib/ssh/ssh-http-proxy-connect -h webcache -p 8080 playtime.foo.com 22"' playtime.foo.com ENVIRONMENT VARIABLES
HTTPPROXY Takes the http_proxy_host operand to specify the default proxy host. Overrides http_proxy if both are set. HTTPPROXYPORT Takes the http_proxy_port operand to specify the default proxy port. Ignored if HTTPPROXY is not set. http_proxy URL format for specifying proxy host and port. EXIT STATUS
The following exit values are returned: 0 Successful completion. 1 An error occurred. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWsshu | +-----------------------------+-----------------------------+ |Interface Stability |Stable | +-----------------------------+-----------------------------+ SEE ALSO
ssh(1), ssh-socks5-proxy-connect(1), ssh_config(4), attributes(5) SunOS 5.10 24 Oct 2001 ssh-http-proxy-connect(1)
Man Page