Questions
1. Do I need a license to run netCannery?
2. How do I install the license once I receive it via email?
3. Do I need to install the Canner or is it packaged with netCannery?
4. Does netCannery run on anything but Mac OS X?
5. Once I checkout the Canner and customize it, how do I tell netCannery to use it?
6. Can you help me customize the Canner?
7. Can I share snapshots created by other users?
8. Can I run the Canner on a central collection machine and share snapshots with multiple users?
9. Do I have to enter my router passwords?
Answers
1. Do I need a license to run netCannery?
Yes. You can request a free license on this web site.
↩
2. How do I install the license once I receive it via email?
You can either drag the license file onto the netCannery application icon or, if you have copied netCannery.app to you computer, you can simply double-click on the license.
↩
3. Do I need to install the Canner or is it packaged with netCannery?
The Canner is included in the netCannery distribution ready to use. You only have to download it separately if you want to extend it.
↩
4. Does netCannery run on anything but Mac OS X?
Not yet. But the backend canner is open source and runs on Unix, Linux, and Mac OS X.
↩
5. Once I checkout the Canner and customize it, how do I tell netCannery to use it?
In netCannery preferences, fill in the "Override canner command" field with the pathname to your custom canner.
↩
6. Can you help me customize the Canner?
Sure. Just contact us using our feedback form and we'll be glad to help.
↩
7. Can I share snapshots created by other users?
Sure. Snapshots are stored as self-contained .netcan documents. To find the location of one on your system, select the snapshot in the icon view and choose "Show in Finder" from the context menu. You can drop .netcan documents on the application to import them, or use the File->Import command.
↩
8. Can I run the Canner on a central collection machine and share snapshots with multiple users?
Sure. You can run the Canner on one machine and rsync the .netcan archives to any number of users.
↩
9. Do I have to enter my router passwords?
No. netCannery can use your SSH key access. Here is some additional authentication info.
- The use of SSH public/private keys for login access is recommended
- Most networks devices support access via SSHv2.
- use of public/private keys are preferred over passwords
- Mac OS X 10.5 (Leopard) has built-in ssh-agent support
- access can be tested easily from the Terminal
- allows you to leave password field empty in netCannery for a device
- Some network devices only support password access via SSHv2
- In this case, you will have to enter a password in the password field when making a new snapshot
- Some network devices only support SSHv1
- You'll need to pass the '-1' option to ssh
- Example: ssh -1 $user@$host
- Some network devices only support TELNET
- You'll need to set the command to use telnet
- Example: telnet -l $user $host
- Connecting through another host first
- SSH to SSH example: ssh -t host.example.com ssh $user@$host
- SSH to SSH using SSH Agent to pass keys: ssh -tA host.example.com ssh $user@$host
- SSH to Telnet example: ssh -t host.example.com telnet -l $user $host
How to setup the SSH agent in MacOSX 10.5 (Leopard)
If you have not generated a public/private key pair that you want to use to access your network device, follow these steps:
Open a Terminal window and generate your public/private key pair. Save it in the default id_dsa file and using a passphrase is recommended.
ssh-keygen -t dsaInstall the key on your favorite network device. Please see your vendors documentation on how to do this.
Connect once to the device from the Terminal. This will result in a popup asking for your passphrase. Check the box "Remember password in my keychain". Now your key is in the ssh agent and it will read the passphrase from the keychain when it needs it.
