Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
protocols:context router:junos20  netconf password ssh://myuser:mypassword@193.1.190.254:22/netconf

or the following if you're using key uathentication:

Code Block
protocols:context router:junos20 netconf publickey ssh://myuser@192.1.190.254.22/netconf privateKeyPath

 

Description of the connection parameters:

  • router:junos20 -  specify resource type (router) and resource name (junos20) for the resource we want to assign a protocol to.
  • netconf - name to identify the protocol configuration.
  • ssh://myuser:mypassword@1.1.1.1:22/netconf - URI to describe connection parameters.
  • privateKeyPath - path where the private key is stored.

The information about the used protocols is in this link.

...