Just got my 1074

After some poking around using ADB I have discovered that the only way to authenticate to SSH is using the keys:
rk3399_rigol:/ # egrep "RootLogin|KeysFile" /etc/ssh/sshd_config
PermitRootLogin without-password
AuthorizedKeysFile /data/ssh/authorized_keys
The SSH daemon can only accept the RSA keys, so keep that in mind.
For anyone running Linux (or Mac) do the following:
1. Generate the RSA key:
pkilar@linux:~$ ssh-keygen -t rsa -f ~/.ssh/id_rsa -N ""
2. Add the public key to the "authorized_keys" on the scope:
pkilar@linux:~$ push ~/.ssh/id_rsa.pub /rigol/
pkilar@linux:~$ adb shell
rk3399_rigol:/ $ su -
rk3399_rigol:/ # cat /rigol/id_rsa.pub >> /data/ssh/authorized_keys
3. Modify the SSH client config on your computer and add the following block to your .ssh/config file, remember to replace xx.xx.xx.xx with IP address of your scope:
Host xx.xx.xx.xx
User root
PubkeyAcceptedAlgorithms +ssh-rsa
HostkeyAlgorithms +ssh-rsa
4. Bingo!
pkilar@linux:~$ ssh xx.xx.xx.xx
rk3399_rigol:/ #