Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Putty alternative for MacOS
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

Putty alternative for MacOS

wii747wii747 Member

I am looking for Putty alternative for MacOS where I can import ssh keys save usernames and server names like putty does.

Any suggestions would be grateful

«1

Comments

  • VoidVoid Member

    Termius works fine for me

    Thanked by 1host_c
  • bootboot Member

    iTerm2

    Thanked by 2noisycode TLDojo
  • Debian

    Thanked by 2emgh bdl
  • HostEONSHostEONS Member, Patron Provider

    Been using SecureCRT for around 10 yrs I think, works on MAC as well as iOS/iPAD OS, can save, import and export logins and keys etc...

    But it's not FREE like putty

    Thanked by 1darkimmortal
  • xvpsxvps Member
    edited January 20

    I use the .ssh/config file.

    Host srv1
        HostName srv1.domain.tld
        User notroot
        IdentityFile ~/.ssh/new_rsa
    

    Then you can just write ssh srv1 in the terminal.

  • Termius?

    Thanked by 1Void
  • The ssh command, an ssh config (~/.ssh/config) and whatever your default terminal is.

    Thanked by 2scooke adly
  • kendkend Member

    I was trying to find something to replace termius years ago and found Royal TSX. Have been using it ever since and never wanted to look for alternatives again.

  • +1 for Termius.
    It’s probably the app I use the most on my Mac

  • XenosXenos Member

    I use warp. You can create custom workflows to manage ssh keys, usernames, etc.

    https://www.warp.dev

  • @meditatingsurgeon said:
    +1 for Termius.
    It’s probably the app I use the most on my Mac

    Agree with this fully.

  • CrabCrab Member

    After using SecureCRT for over 15+ years I migrated to https://tabby.sh/

  • FranciscoFrancisco Top Host, Host Rep, Veteran

    iterm2's fantastic.

    Francisco

    Thanked by 1TLDojo
  • Do ppl still use Putty ? All OS nowadays have inbuilt support for ssh in their native terminal/cli.

  • mobaXterm with crossover

  • CrabCrab Member

    @host4cheap said:
    Do ppl still use Putty ? All OS nowadays have inbuilt support for ssh in their native terminal/cli.

    Putty lives forever.

  • There are many options/solutions but I'm guessing you're looking for macos specific without doing a vm or web based. I'd recommend termius if you want a gui but truly recommend using the built in terminal/ssh. You can create ~/.ssh/config and have entries like

    Host serverName
        HostName 192.168.1.123
        User userOnServer
        Port 22
        IdentityFile ~/path/to/key
    

    Then all you have to do is type 'ssh serverName' in the terminal and you're connected. Anything after Host is what you will reference the server as with the ssh/scp command. You can replace the IP with dns if it has one. If you're using the same user on your local host as the server, you don't need to specify it in the config. Same goes as the port, if you're using the standard port 22, you don't need it in the config.

    Thanked by 1scooke
  • ArkasArkas Moderator

    Tabby.

  • +1 for Termius

  • ~/.ssh/config

    and

    ssh

  • I use Termius too.

  • @kend said:
    I was trying to find something to replace termius years ago and found Royal TSX. Have been using it ever since and never wanted to look for alternatives again.

    Love Royal TSX. Not cheap but very nice app.

  • JosephFJosephF Member
    edited January 21

    @HostEONS said:
    Been using SecureCRT for around 10 yrs I think, works on MAC as well as iOS/iPAD OS, can save, import and export logins and keys etc...

    But it's not FREE like putty

    How much are you paying/paid for SecureCRT?

    @Crab said:
    After using SecureCRT for over 15+ years I migrated to https://tabby.sh/

    Why'd you quit SecureCRT?

  • VodolVodol Member

    XPipe + Tabby

  • CrabCrab Member

    @Crab said:
    After using SecureCRT for over 15+ years I migrated to https://tabby.sh/

    Why'd you quit SecureCRT?

    Primarily to get a free solution that is also more cross-platform compatible. SecureCRT is still great, but it has its cost.

  • @Crab said:

    @Crab said:
    After using SecureCRT for over 15+ years I migrated to https://tabby.sh/

    Why'd you quit SecureCRT?

    Primarily to get a free solution that is also more cross-platform compatible. SecureCRT is still great, but it has its cost.

    How does Tabby compare to SecureCRT?

  • xNEOxNEO Member

    I use built in terminal on MacOS, and Termius on iOS.

  • HostEONSHostEONS Member, Patron Provider

    @JosephF said:

    @HostEONS said:
    Been using SecureCRT for around 10 yrs I think, works on MAC as well as iOS/iPAD OS, can save, import and export logins and keys etc...

    But it's not FREE like putty

    How much are you paying/paid for SecureCRT?

    @Crab said:
    After using SecureCRT for over 15+ years I migrated to https://tabby.sh/

    Why'd you quit SecureCRT?

    Don't really remember as I got license almost 10 yrs ago, I just pay for updates every 3 yrs or something and it's not much atleast not for my use case

  • kendkend Member

    @Smigit said:

    @kend said:
    I was trying to find something to replace termius years ago and found Royal TSX. Have been using it ever since and never wanted to look for alternatives again.

    Love Royal TSX. Not cheap but very nice app.

    It's free for up to 10 connection profiles. And after that, $45 one time payment is also not that much.

Sign In or Register to comment.