Versions Compared

Key

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

...

Introduction

The smart vision system iam is designed to be controlled over an Open-Secure Shell (SSH) connection. Practically every Unix and Linux system includes the ssh command. This command is used to start the SSH client program that enables secure connection to the SSH server on a remote machine. The ssh command is used for logging into the remote machine, transferring files between the two machines, and for executing commands on the remote machine.

Info

The OpenSSH ssh command can be used on Unix/Linux or the Mac terminal.

System Requirements:

The iam system needs to be booted. Check your the network settings by using the ping command as discribed above.

The host need needs a SSH-Server. You can install Thecan be installed openssh-server with the following command on a linux Linux system:

Code Block
languagebash
sudo apt-get install openssh-server

Before one can establish establishing an OpenSSH connection, you need to add the camera to your "known host systems" by with the command below:

Code Block
languagebash
ssh-keygen -f "/home/$USER/.ssh/known_hosts" -R 192.168.1.10

...

For open an shell on the camera use the following command:

Code Block
sshss root@192.168.1.10

it can be cloesed by typ in the command

...

OpenSSH with remote windows support

If on need For X-Server Support support the -Y or -X command must be added.

...

Code Block
languagebash
ssh -Y root@192.168.1.10

File Transfer

pull Pull example:

Code Block
scp root@192.168.1.10:/home/root/yourfile.txt

push Push example:

Code Block
scp yourfile.txt root@192.168.1.10:/home/root/

If on want to transfere To transfer a complete folder on will use the recursive command -r. The command below will transfer the files from your-director to the location /home/root/your-director on onto the iam camera.

Code Block
scp -r your-director root@192.168.1.10:/home/root/

...

The following example shows how to start an terminal application step by step as . It is an example of to display the current processes and services running on the camera system.

  1. Open an OpenSSH connection from your host system

    Code Block
    languagebash
    ssh root@192.168.1.10

  2. On will get asket for the root passwortThe root password is required.
    Do not get confused hence there will not be a display feedback while tipingtyping.

  3. Start the comand command line application top on the system.

  4. for To exit the application on can use the comandcommand ctrl+c.

...