-
Originally this project used to live at: https://bitbucket.org/araujobsd/ndmp-freebsd/
-
Now we migrate it to: https://github.com/araujobsd/ndmpd
-
Current version is: 1.1
This is an partial import of ndmpd from Illumos project. Not all features that ndmp has is working on this version nor the code follow the style(9).
- It can accept authentication using PLAIN TEXT and MD5 from ndmp clients.
- It is possible to only move general data between ndmp servers.
- checkout the repository.
- type make
- type make install
- Setup /usr/local/etc/ndmpd.conf
- Run /usr/local/sbin/ndmpd -d
- I have used ndmjob-spinnaker and also ndmpdcopy(Java).
- I created two FreeBSD vm running ndmpd.
- An third machine to issue the copy between the servers.
- ndmjob: vm-cl # ./ndmjob -v -d 7 -o test-data -b 128 -Bdump -D172.17.32.92,marcelo,marcelo -f /tape/200000108600066c.8
RESULT: TEST 0:00:00.003 FINAL test-data Passed -- pass=24 warn=0 fail=0 (total 24)
- ndmpcopy: vm-cl # java -jar ndmpcopy.jar -srchost -srcuser marcelo -srcpass marcelo -srcpath /backup -srcbutype dump -srcenv TYPE=dump -srcenv RECURSIVE=Y -srcenv LEVEL=0 -srcenv HIST=Y -dsthost -dstuser marcelo -dstpass marcelo -dstpath /restore -dstbutype dump -dstenv TYPE=dump -dstenv RECURSIVE=Y -dstenv LEVEL=0
RESULT: From HOST1 I copy successfully the content of /backup to HOST2 into /restore
- First organize the code, make it build without warnings.
- Remove a lot of dead functions and duplicate code.
- Put it as close as possible of style(9).
- Rewrite more than half of the code.
- Import from Illumos features such like TAPE, ZFS and TAR.
- Create a new or Import from Illumos ndmpadm(management)
- Make the proper documentation as well as man pages.
- Marcelo Araujo [email protected] (Developer)
- Nikolai Lifanov (Tests)
- FreeBSD 10.1, FreeBSD 9.3 (By Nikolai).
- FreeBSD HEAD (By Araujo).
- IN PROGRESS - Oracle ZFS Storage ZS3-2 Appliance with incremental backups LEVEL 0 and 1 (By Nikolai).