@@ -81,9 +81,9 @@ HTTP(S) proxies can be configured through any of the following methods, in prece
81
81
* The ` HTTPS_PROXY` and/or `HTTP_PROXY` environment variables, in the same URL format as
82
82
` BALENARC_PROXY` .
83
83
84
- # ## Proxy setup for balena ssh
84
+ # ## Proxy setup for balena device ssh
85
85
86
- In order to work behind a proxy server, the `balena ssh` command requires the
86
+ In order to work behind a proxy server, the `balena device ssh` command requires the
87
87
[`proxytunnel`](http://proxytunnel.sourceforge.net/) package (command-line tool) to be installed.
88
88
` proxytunnel` is available for Linux distributions like Ubuntu/Debian (`apt install proxytunnel`),
89
89
and for macOS through [Homebrew](https://brew.sh/). Windows support is limited to the [Windows
@@ -103,7 +103,7 @@ The `BALENARC_NO_PROXY` variable may be used to exclude specified destinations f
103
103
> * This feature requires CLI version 11.30.8 or later. In the case of the npm [installation
104
104
> option](https://github.com/balena-io/balena-cli/blob/master/INSTALL.md), it also requires
105
105
> Node.js version 10.16.0 or later.
106
- > * To exclude a `balena ssh` target from proxying (IP address or `.local` hostname), the
106
+ > * To exclude a `balena device ssh` target from proxying (IP address or `.local` hostname), the
107
107
> `--noproxy` option should be specified in addition to the `BALENARC_NO_PROXY` variable.
108
108
109
109
By default (if `BALENARC_NO_PROXY` is not defined), all [private IPv4
@@ -214,6 +214,7 @@ are encouraged to regularly update the balena CLI to the latest version.
214
214
- [device restart](#device-restart)
215
215
- [device rm](#device-rm)
216
216
- [device shutdown](#device-shutdown)
217
+ - [device ssh](#device-ssh)
217
218
- [device start-service](#device-start-service)
218
219
- [device stop-service](#device-stop-service)
219
220
- [device track-fleet](#device-track-fleet)
@@ -245,7 +246,6 @@ are encouraged to regularly update the balena CLI to the latest version.
245
246
246
247
- Network
247
248
248
- - [ssh](#ssh)
249
249
- [tunnel](#tunnel)
250
250
251
251
- Notes
@@ -1903,6 +1903,80 @@ the uuid of the device to shutdown
1903
1903
1904
1904
force action if the update lock is set
1905
1905
1906
+ # # device ssh
1907
+
1908
+ # ## Aliases
1909
+
1910
+ - ` ssh`
1911
+
1912
+
1913
+ To use one of the aliases, replace `device ssh` with the alias.
1914
+
1915
+ # ## Description
1916
+
1917
+ Start a shell on a local or remote device. If a service name is not provided,
1918
+ a shell will be opened on the host OS.
1919
+
1920
+ If a fleet is provided, an interactive menu will be presented for the selection
1921
+ of an online device. A shell will then be opened for the host OS or service
1922
+ container of the chosen device.
1923
+
1924
+ For local devices, the IP address and .local domain name are supported.
1925
+ If the device is referenced by IP or `.local` address, the connection
1926
+ is initiated directly to balenaOS on port `22222` via an
1927
+ openssh-compatible client. Otherwise, any connection initiated remotely
1928
+ traverses the balenaCloud VPN.
1929
+
1930
+ Commands may be piped to the standard input for remote execution (see examples).
1931
+ Note however that remote command execution on service containers (as opposed to
1932
+ the host OS) is not currently possible when a device UUID is used (instead of
1933
+ an IP address) because of a balenaCloud backend limitation.
1934
+
1935
+ Note : ` balena ssh` requires an openssh-compatible client to be correctly
1936
+ installed in your shell environment. For more information (including Windows
1937
+ support) please check :
1938
+ https://github.com/balena-io/balena-cli/blob/master/INSTALL.md#additional-dependencies,
1939
+
1940
+ Examples :
1941
+
1942
+ $ balena device ssh MyFleet
1943
+ $ balena device ssh f49cefd
1944
+ $ balena device ssh f49cefd my-service
1945
+ $ balena device ssh f49cefd --port <port>
1946
+ $ balena device ssh 192.168.0.1 --verbose
1947
+ $ balena device ssh f49cefd.local my-service
1948
+ $ echo "uptime; exit;" | balena device ssh f49cefd
1949
+ $ echo "uptime; exit;" | balena device ssh 192.168.0.1 myService
1950
+
1951
+ # ## Arguments
1952
+
1953
+ # ### FLEETORDEVICE
1954
+
1955
+ fleet name/slug, device uuid, or address of local device
1956
+
1957
+ # ### SERVICE
1958
+
1959
+ service name, if connecting to a container
1960
+
1961
+ # ## Options
1962
+
1963
+ # ### -p, --port PORT
1964
+
1965
+ SSH server port number (default 22222) if the target is an IP address or .local
1966
+ hostname. Otherwise, port number for the balenaCloud gateway (default 22).
1967
+
1968
+ # ### -t, --tty
1969
+
1970
+ force pseudo-terminal allocation (bypass TTY autodetection for stdin)
1971
+
1972
+ # ### -v, --verbose
1973
+
1974
+ increase verbosity
1975
+
1976
+ # ### --noproxy
1977
+
1978
+ bypass global proxy configuration for the ssh connection
1979
+
1906
1980
# # device start-service
1907
1981
1908
1982
# ## Description
@@ -2635,73 +2709,6 @@ answer "yes" to all questions (non interactive use)
2635
2709
2636
2710
# Network
2637
2711
2638
- # # ssh
2639
-
2640
- # ## Description
2641
-
2642
- Start a shell on a local or remote device. If a service name is not provided,
2643
- a shell will be opened on the host OS.
2644
-
2645
- If a fleet is provided, an interactive menu will be presented for the selection
2646
- of an online device. A shell will then be opened for the host OS or service
2647
- container of the chosen device.
2648
-
2649
- For local devices, the IP address and .local domain name are supported.
2650
- If the device is referenced by IP or `.local` address, the connection
2651
- is initiated directly to balenaOS on port `22222` via an
2652
- openssh-compatible client. Otherwise, any connection initiated remotely
2653
- traverses the balenaCloud VPN.
2654
-
2655
- Commands may be piped to the standard input for remote execution (see examples).
2656
- Note however that remote command execution on service containers (as opposed to
2657
- the host OS) is not currently possible when a device UUID is used (instead of
2658
- an IP address) because of a balenaCloud backend limitation.
2659
-
2660
- Note : ` balena ssh` requires an openssh-compatible client to be correctly
2661
- installed in your shell environment. For more information (including Windows
2662
- support) please check :
2663
- https://github.com/balena-io/balena-cli/blob/master/INSTALL.md#additional-dependencies,
2664
-
2665
- Examples :
2666
-
2667
- $ balena ssh MyFleet
2668
- $ balena ssh f49cefd
2669
- $ balena ssh f49cefd my-service
2670
- $ balena ssh f49cefd --port <port>
2671
- $ balena ssh 192.168.0.1 --verbose
2672
- $ balena ssh f49cefd.local my-service
2673
- $ echo "uptime; exit;" | balena ssh f49cefd
2674
- $ echo "uptime; exit;" | balena ssh 192.168.0.1 myService
2675
-
2676
- # ## Arguments
2677
-
2678
- # ### FLEETORDEVICE
2679
-
2680
- fleet name/slug, device uuid, or address of local device
2681
-
2682
- # ### SERVICE
2683
-
2684
- service name, if connecting to a container
2685
-
2686
- # ## Options
2687
-
2688
- # ### -p, --port PORT
2689
-
2690
- SSH server port number (default 22222) if the target is an IP address or .local
2691
- hostname. Otherwise, port number for the balenaCloud gateway (default 22).
2692
-
2693
- # ### -t, --tty
2694
-
2695
- force pseudo-terminal allocation (bypass TTY autodetection for stdin)
2696
-
2697
- # ### -v, --verbose
2698
-
2699
- increase verbosity
2700
-
2701
- # ### --noproxy
2702
-
2703
- bypass global proxy configuration for the ssh connection
2704
-
2705
2712
# # tunnel
2706
2713
2707
2714
# ## Description
0 commit comments