Changes between Version 67 and Version 68 of Documentation/bAccountManagement/DSSHConf
- Timestamp:
- Nov 14, 2019, 4:52:30 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Documentation/bAccountManagement/DSSHConf
v67 v68 215 215 '''Mac instrucstions are currently under development. We apologize for the inconvenience.''' 216 216 217 Mac OS has a native command line ssh client that can be used to remotely log into consoles. From the Finder select Applications -> Utilities -> Terminal to open a command line terminal. 218 217 219 ==== Generating keys ==== 218 TODO 220 Generate the public and private keys using the following command 221 {{{ 222 ssh-keygen -t rsa 223 }}} 224 225 Follow the prompt to save the keys in the default location, use a passphrase for additional security. Once your keys are saved successfully, a 'randomart' will be generated. 226 {{{ 227 your_username@Macintrash ~ % ssh-keygen -t rsa -C mac 228 Generating public/private rsa key pair. 229 Enter file in which to save the key (/Users/your_username/.ssh/id_rsa): 230 Created directory '/Users/your_username/.ssh'. 231 Enter passphrase (empty for no passphrase): 232 Enter same passphrase again: 233 Your identification has been saved in /Users/your_username/.ssh/id_rsa. 234 Your public key has been saved in /Users/your_username/.ssh/id_rsa.pub. 235 The key fingerprint is: 236 SHA256:sclFUKMVPUAUBEk+Qa3MZhLv3qfo/BWY+B5huCajS5U mac 237 The key's randomart image is: 238 +---[RSA 2048]----+ 239 | o*X%= | 240 | ...=..o | 241 | ==.. . | 242 | .oBO o | 243 | E=S = . | 244 | . .+ . . | 245 | . o.o.o . | 246 | . . =.o.o. | 247 | o. .+.+o | 248 +----[SHA256]-----+ 249 }}} 219 250 220 251 [[BR]] … … 227 258 3. Click the "Choose File" button next to "Public key file" 228 259 229 4. Navigate to where your '''public key file''' is stored (typically / home/your_username/.ssh)260 4. Navigate to where your '''public key file''' is stored (typically /Users/your_username/.ssh) 230 261 231 262 5. Select the .pub file corresponding to the key you wish to use for ORBIT access … … 240 271 241 272 [[BR]] 273 274 Once your public key has been uploaded into your Orbit account, you should be able to connect with a (reserved) gateway. 275 242 276 ==== Configuring your SSH client ==== 243 TODO 277 278 Under normal circumstances, as long as the private key file is located in the /Users/your_username/.ssh/ folder, the command line SSH client will use the correct key when connecting. 279 280 To test your setup, open a command-line terminal and (replacing ''your_orbit_username'' with your own ORBIT username) type: 281 {{{ 282 ssh your_orbit_username@gw.orbit-lab.org 283 }}} 284 You should be prompted to enter your key file passphrase and be able to successfully connect. 285 286 Type {{{exit}}} and press the Enter key to end the SSH session. 287 244 288 245 289 [[BR]]