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,353
  • 10
  • 32
  • 43
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
  • 62,573
  • 32
  • 113
  • 225
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,353
  • 10
  • 32
  • 43