3

I have an Ethernet cable from my MacBook to my Pi. I would like to control my Pi using SSH.

If I check ifconfig on the Pi then I see my inet addr is 169.254.132.204.

Is it possible to set up an SSH connection?

I don't have any internet.

techraf
  • 4,319
  • 10
  • 31
  • 42
clankill3r
  • 202
  • 1
  • 3
  • 10

2 Answers2

2

You can ssh from macOS to Pi even using a Link-local address with ssh pi@raspberrypi.local. See How do I set up networking/WiFi/Static IP which has a section discussing this.

Milliways
  • 59,890
  • 31
  • 101
  • 209
0

Use SSH application such as PuTTY, or any. Then you can control your Raspberry by logging into it using your login ID (default: pi) and password (default: raspberry).

Their you get complete access of the terminal of Pi.

techraf
  • 4,319
  • 10
  • 31
  • 42
  • Why do you recommend PuTTY? Is it the most appropriate application for the problem described in the question? – techraf Dec 20 '16 at 06:32
  • 1
    Note that installing PuTTY on Mac OS is far from straightforward: the OP will have to install MacPorts or Homebrew first. Why not just use ssh command in terminal? – Dmitry Grigoryev Dec 20 '16 at 10:49