Login
The system supports two authorization methods: through a serial console (RS232) and via SSH over an Ethernet connection.
RS232
To authorize via RS232, follow the instructions in the "Debugging using the RS232 Serial Port" guide. The login credentials are:
- Login: admin
- Password: admin
Ethernet (SSH)
After the network port indicates normal operation, connect via SSH using the following parameters:
- Port: 22
- Login: admin
- Password: admin
Example command for login:
ssh admin@192.168.1.3
If the login fails, try pinging the IP address of the 3DV-EdgeAI-32 network port from your PC. Ensure that your PC's IP address is on the same subnet.
Setting the IP address in the same subnet
If your PC's IP address is on a different subnet, add an IP address from the same range as follows:
Windows 10
Run the following command in Administrator mode:
netsh int ipv4 add address "Ethernet" 192.168.1.5 255.255.255.0
Where:
- "Ethernet" — name of the network interface
- 192.168.1.5 — assigned IP address
- 255.255.255.0 — subnet mask
Linux
Run the following command:
ifconfig enp4s0:1 192.168.1.5
Where enp4s0 is the name of your PC's network interface. You can view it by running ifconfig
.