freebsd-src/contrib/smbfs
Mateusz Piotrowski d5e3b0b563 mount_smbfs(8): Add the STANDARDS and HISTORY sections
- Document that mount_smbfs(8) only supports SMB1 and that SMB2 and SMB3
  are not supported at the moment. Suggest users to browse ports for
  software compatible with newer versions of the protocol.
- Copy supported servers list from README.
- Add a SEE ALSO section and reference the chapter about Samba in the
  FreeBSD Handbook.
- Add a HISTORY section.
- Style changes:
  - Use Dq instead of Em in the EXAMPLES section.
  - Mark command modifiers with Cm.

Reviewed by:	bcr
Approved by:	krion (mentor, implicit), mat (mentor, implicit)
MFC after:	1 week
Sponsored by:   Bally Wulff Games & Entertainment GmbH
Differential Revision:	https://reviews.freebsd.org/D17798
2018-11-01 11:37:19 +00:00
..
examples
include Remove the const qualifier from iconv(3) to comply with POSIX: 2015-04-15 09:09:20 +00:00
lib Fix a stack overflow in mount_smbfs when hostname is too long. 2018-06-25 16:42:49 +00:00
mount_smbfs mount_smbfs(8): Add the STANDARDS and HISTORY sections 2018-11-01 11:37:19 +00:00
smbutil Add #include <string.h> to mute warning from clang/gcc about implicitly 2016-02-01 07:09:08 +00:00
config.mk.in
configure
COPYRIGHT
CREDITS
FREEBSD-upgrade
HISTORY
INSTALL
Makefile
Makefile.inc
README Assorted grammar, spelling and punctuation fixes. 2015-12-15 13:04:44 +00:00


    SMB/CIFS protocol and SMB/CIFS file system implementation
		for FreeBSD, version 1.4.
    
    This is native SMB/CIFS filesystem (smbfs for short) for FreeBSD.
It is a complete, kernel side implementation of SMB requester and filesystem.

    Supported platform		Comment
	FreeBSD 4.X		Port

	FreeBSD 4.5		Everything available in the base system.

	FreeBSD-current		Everything available in the base system.

	Darwin			maintained in the Darwin's  tree.

    I would be very grateful for any feedback, bug reports etc.

    Supported SMB servers:
	Samba
	Windows 95/98/ME/2000/NT4.0 (SPs 4, 5, 6)
	IBM LanManager
	NetApp

    An updated version of this package can be retrieved from ftp server:

    ftp://ftp.butya.kz/pub/smbfs/smbfs.tar.gz

    Performance
    ==========
    
    These are some performance benchmarks over a 10Mbit network:
    
    Win95 machine as server:
IOZONE: auto-test mode
	MB      reclen  bytes/sec written   bytes/sec read
	1       512     339791              323416
	1       1024    481067              431568
	1       2048    648394              588674
	1       4096    630130              583555
	1       8192    671088              618514

    Samba 2.0.6 as server:
IOZONE: auto-test mode
	MB      reclen  bytes/sec written   bytes/sec read
	1       512     409200              437191
	1       1024    545600              596523
	1       2048    729444              798915
	1       4096    871543              919299
	1       8192    900790              1024562

Author: Boris Popov <bp@freebsd.org>