DOC 6501_Release V
ATS-6501 Users Guide
75
226 Transfer complete.
ftp>
Use the following command on the ATS-6501:
snmpwalk -v 3 -u myuser -l authNoPriv -a MD5 -A my_password localhost .1.3.6.1.4.1.6914.6501
Where 6501 = Model info from the file list.
3.4.6.5 SNMP Traps
To set the trap destination(s), modify the /mod/etc/snmpd.conf file with the following line:
informsink 192.0.2.101 public
NOTE: 192.0.2.101 in the above example should be changed to the managing device’s IP
address. The manager receives traps on UDP port 162.
3.4.7 Secure Shell (SSH) Authentication
SSH Authentication using SSH keys is enabled by default.
3.4.7.1 Creating a SSH New Key
To use a key that is different than the default key file loaded on the system generate a new key:
Become root:
su
Generate a new key:
ssh-keygen -t rsa
Follow the steps in 3.4.8.2 to load the desired key (new or default) onto the remote server.
3.4.7.2 Transferring a SSH Key
The SSH keys are located in the /root/.ssh directory. To allow a client to connect to this unit:
Use the scp command to copy the public key file (/root/.ssh/id_rsa.pub) to your account on the
remote server/host. To do so, enter the following command:
scp root/.ssh/id_rsa.pub user@hostname
Paste the contents of this key file into the authorized_keys in ~/.ssh/ directory on the remote
server:
cat $HOME/.ssh/id_rsa.pub >> $HOME/.ssh/authorized_keys
3.5 Local User Accounts
By default the unit has unauthenticated access to all of the management ports. The default user
name and password for telnet login is tsc. The unit has two standard freeBSD tools (pw and
psswd) for adding, removing, and editing users and their groups. Please note the file system is
mounted as read-only. You must first make the file system writable before invoking these
commands.
mount -uw /
Makes the drive writable.
mount –r /
Makes the drive read only (or use
reboot
).