Can I connect to ssh using Bluetooth?

Asked 1 years ago, Updated 1 years ago, 76 views

What should I do if I want to connect to ssh using Bluetooth?
I want to connect between Windows and MacOS.
Both computers want to run on both the host and the client.
Does OpenSSH not support Windows?
https://github.com/PowerShell/Win32-OpenSSH/releases
I'm thinking of using this

Environment (PC) Operating System: Windows 10 Home Bluetooth PCI-Express Card: Intel Dual Band Wireless-AC 7260 for Desktop 7260 HMWDTX1.R

(Mac)
Mid 2012 MacBook Pro OS: macOS 10.12.6

By the way, Raspberry pi and Mac seem to be possible.
Except for Windows Subsystem for Linux

macos windows ssh

2022-09-29 21:28

1 Answers

I don't have a Windows PC with me, so I tried using an Android device instead, but it seems to be possible in the same way as Rasbury pi anyway.

Get Bluetooth PAN ready

One of the PCs is the host, where you can open an Internet share via PAN.I don't have Windows at hand, but macOS
For , enable Internet sharing from the system configuration sharing as follows:
src=

(If Bluetooth PAN is not available, create it with network preferences first)

Connecting to a PAN Network

Connect to the PAN network from a Windows PC (client side).Perhaps it can be connected just like BT tethering.

Verify & Connect

ip address

If the Mac is the host, it appears as a self-assigned IP in the network configuration.(For clients, the IP address was displayed.)
src=

Now, when I opened the terminal on my Mac and hit the ifconfig command, I saw a network with a name like bridge100

at hand

inet 192.168.2.1 netmask 0xffffff00 broadcast 192.168.2.255

Therefore, when I made an ssh connection to this ip address from the client side, I was able to log in.
I think I can do the same for both host clients.

By the way, I feel that recently Windows 10 contained SSH Server/Client

The SSH Server Broker/Proxy added in Windows 10 Anniversary update seems to have nothing to do with Bash on Ubuntu on Windows|kanonji Blog

(It might be different for Home...)…)

The basic flow should be the same as PoSH SSH, OpenSSH+msys, and so on.(I'm sorry if I missed the point of the question)

Note: I was able to connect as a client in Windows 7 using the same procedure above.(I'll skip the reverse)

src=
Although the behavior difference between the access point and the ad-hoc network could not be seen, it seems that the ad-hoc network can be selected without enabling the above network share.(However, in this case, the link-local address is 169.254/16)

src=


2022-09-29 21:28

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.