smb.conf
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 5
Gsmb 0.5
Gsmb provides a graphical interface allowing simplified management of the file of the Samba users file /etc/smbpasswd. more>>
Gsmb provides a graphical interface allowing simplified management of the file of the Samba users file /etc/smbpasswd.
In initial Windows 95 releases, passwords for accessing shared volumes were sent as cleartext over the network. Sambda authentication used the /etc/passwd file on the server. The Windows 95 updates introduced encryption of these passwords. There are two methods for making Samba support this new authentication scheme:
- modify the register base of Win95 clients to reactivate cleartext passwords
- configure Samba so that it accepts the encrypted password
The second option is what we are interested in here.
Installation:
You can download version 0.5 (released 1999-09-30) of gsmb.
To activate the recognition of encrypted passwords, the option ENCRYPT PASSWORDS = yes should be positioned in the /etc/smb.conf configuration file.
In addition to this, it is necessary to create the Samba users file. On Redhat 5.2, this is called /etc/smbpasswd.
The Gsmb program allows the management of the Samba users by modifying this file. It uses the Gtk 1.2.0. library.
Usage:
At this point, the possibility of the program are the following:
- The function Quit presented in the menu "File" allow to quit the program (Incredible, isnt it !!)
- The function presented in the menu "smbpasswd/create smbpasswd version 1.9.x from passwd" will erase the "/etc/smbpasswd" and another one. The /etc/passwd is read and a Samba count is created for each Linux users. The /etc/smbpasswd is filled with the samba 1.9.x format.
- The function presented in the menu "smbpasswd/create smbpasswd version 2.0.x from passwd" will erase the "/etc/smbpasswd" and another one. The /etc/passwd is read and a Samba count is created for each Linux users. The /etc/smbpasswd is filled with the samba 2.0.x format.
- The function presented in the menu "smbpasswd/create another users" creates a linux users by calling the program Adduser.
- The buttons between the two list permits to create samba users. Before, just select in the linux list one or several users, select the format you want, and then click on the button with the arrows. This action will create the corresponding Samba users.
- Possibility to delete Samba users. First, select the Samba users (Dont forget the shift and crtl buttons for multiple selection) and then click on the button delete.
- You have the possibility now have a null password for Samba users. If the row for a user is red, then you have validate the Null password option for this user.
- You can disable Samba users accounts. For the format 1.9.x, the password field will be replaced by "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX". For the format 2.0.X, the "D" will be added in a field. In each case, you can see the state of the account in the first column of the samba users list.
<<lessIn initial Windows 95 releases, passwords for accessing shared volumes were sent as cleartext over the network. Sambda authentication used the /etc/passwd file on the server. The Windows 95 updates introduced encryption of these passwords. There are two methods for making Samba support this new authentication scheme:
- modify the register base of Win95 clients to reactivate cleartext passwords
- configure Samba so that it accepts the encrypted password
The second option is what we are interested in here.
Installation:
You can download version 0.5 (released 1999-09-30) of gsmb.
To activate the recognition of encrypted passwords, the option ENCRYPT PASSWORDS = yes should be positioned in the /etc/smb.conf configuration file.
In addition to this, it is necessary to create the Samba users file. On Redhat 5.2, this is called /etc/smbpasswd.
The Gsmb program allows the management of the Samba users by modifying this file. It uses the Gtk 1.2.0. library.
Usage:
At this point, the possibility of the program are the following:
- The function Quit presented in the menu "File" allow to quit the program (Incredible, isnt it !!)
- The function presented in the menu "smbpasswd/create smbpasswd version 1.9.x from passwd" will erase the "/etc/smbpasswd" and another one. The /etc/passwd is read and a Samba count is created for each Linux users. The /etc/smbpasswd is filled with the samba 1.9.x format.
- The function presented in the menu "smbpasswd/create smbpasswd version 2.0.x from passwd" will erase the "/etc/smbpasswd" and another one. The /etc/passwd is read and a Samba count is created for each Linux users. The /etc/smbpasswd is filled with the samba 2.0.x format.
- The function presented in the menu "smbpasswd/create another users" creates a linux users by calling the program Adduser.
- The buttons between the two list permits to create samba users. Before, just select in the linux list one or several users, select the format you want, and then click on the button with the arrows. This action will create the corresponding Samba users.
- Possibility to delete Samba users. First, select the Samba users (Dont forget the shift and crtl buttons for multiple selection) and then click on the button delete.
- You have the possibility now have a null password for Samba users. If the row for a user is red, then you have validate the Null password option for this user.
- You can disable Samba users accounts. For the format 1.9.x, the password field will be replaced by "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX". For the format 2.0.X, the "D" will be added in a field. In each case, you can see the state of the account in the first column of the samba users list.
Download (0.021MB)
Added: 2006-02-17 License: GPL (GNU General Public License) Price:
760 downloads
Samba::LDAP::Config 0.03
Samba::LDAP::Config is a Perl module to config file related tasks for Samba::LDAP. more>>
Samba::LDAP::Config is a Perl module to config file related tasks for Samba::LDAP.
SYNOPSIS
use Samba::LDAP::Config;
my $config = Samba::LDAP::Config->new()
or die "Cant create objectn";
# Returns where smbldap.conf, smbldap_bind.conf and
# smb.conf are located
my $smbldap_conf = $config->find_smbldap();
my $smbldap_bind_conf = $config->find_smbldap_bind();
my $samba_conf = $config->find_samba();
Various methods to find where the related Samba configuration files are saved, read them in and write them out etc. Subclasses Config::Tiny.
INTERFACE
new
Create a new Samba::LDAP::Config object
find_smbldap
Searches in usual places for smbldap.conf and returns location found.
my $smbldap_conf = $config->find_smbldap();
Returns the smbldap.conf in the scripts, if nothing found.
find_smbldap_bind
Searches in usual places for smbldap_bind.conf and returns location found.
my $smbldap_bind_conf = $config->find_smbldap_bind();
Returns the smbldap_bind.conf in the scripts, if nothing found.
find_samba
Searches in usual places for smb.conf and returns location found.
my $smb_conf = $config->find_samba();
Returns the smb.conf in the scripts, if nothing found.
read_conf
Wrapper to provide an instant error message as returned by the native Config::Tiny read method
my $conf = $config->read_conf( $filename );
read_string
Overrides Config::Tinys read_string to exclude the " " marks found in smbldap.conf and smbldap_bind.conf and remove section handling, as we dont have any [sections] in either of these files.
Also substitutes the suffix hash ( ${suffix} ) with its value.
Need to fix the smb.conf reading. Will use File::Samba or Config::Auto for it instead.
<<lessSYNOPSIS
use Samba::LDAP::Config;
my $config = Samba::LDAP::Config->new()
or die "Cant create objectn";
# Returns where smbldap.conf, smbldap_bind.conf and
# smb.conf are located
my $smbldap_conf = $config->find_smbldap();
my $smbldap_bind_conf = $config->find_smbldap_bind();
my $samba_conf = $config->find_samba();
Various methods to find where the related Samba configuration files are saved, read them in and write them out etc. Subclasses Config::Tiny.
INTERFACE
new
Create a new Samba::LDAP::Config object
find_smbldap
Searches in usual places for smbldap.conf and returns location found.
my $smbldap_conf = $config->find_smbldap();
Returns the smbldap.conf in the scripts, if nothing found.
find_smbldap_bind
Searches in usual places for smbldap_bind.conf and returns location found.
my $smbldap_bind_conf = $config->find_smbldap_bind();
Returns the smbldap_bind.conf in the scripts, if nothing found.
find_samba
Searches in usual places for smb.conf and returns location found.
my $smb_conf = $config->find_samba();
Returns the smb.conf in the scripts, if nothing found.
read_conf
Wrapper to provide an instant error message as returned by the native Config::Tiny read method
my $conf = $config->read_conf( $filename );
read_string
Overrides Config::Tinys read_string to exclude the " " marks found in smbldap.conf and smbldap_bind.conf and remove section handling, as we dont have any [sections] in either of these files.
Also substitutes the suffix hash ( ${suffix} ) with its value.
Need to fix the smb.conf reading. Will use File::Samba or Config::Auto for it instead.
Download (0.080MB)
Added: 2007-01-12 License: Perl Artistic License Price:
1021 downloads
SambaLink/Q 2.0.2
SambaLink/Q is an application for editing the smb.conf file. more>>
SambaLink/Q is an application for editing the sometimes confusing and rather complex smb.conf file for Samba. SambaLink/Q 2.0.1 is Linux only and for Qt 3.
Main features:
- Qt 3 support
- Warning if not starting as root.
- Warning if not saving smb.conf to a directory without proper permissions.
- The configuration file has been updated to cover up to Samba 2.5
- The configuration file (linkq.conf) is now moved to /etc
<<lessMain features:
- Qt 3 support
- Warning if not starting as root.
- Warning if not saving smb.conf to a directory without proper permissions.
- The configuration file has been updated to cover up to Samba 2.5
- The configuration file (linkq.conf) is now moved to /etc
Download (0.085MB)
Added: 2006-07-03 License: GPL (GNU General Public License) Price:
1213 downloads
Comanche 3.0b4
Comanche is a quality, cross-platform, GUI tool for configuration and management of open source software. more>>
Comanche is a quality, cross-platform, GUI tool for configuration and management of open source software. Packages supported include the Apache Web server and Samba. It can be easily extended through plugins.
The default file being configured is conf/samba/smb.conf Change the value to /etc/smb.conf or wherever your Samba config is by editing conf/comanche.conf (Make a back up first of your files!)
Samba support is experimental right now. You can have a look at plugins/samba/* . The documents in docs/developer will also be a useful read.
If you got a binary distribution, just double-click on the icon or invoke the comanche binary in Unix
If you got the source package, you need to a wish interpreter with Itcl 3.x support (no [incr Tk] required). You have several options:
Build it yourself have a look at http://www.tcltk.com/itcl
It may already be installed in your distribution under the name itkwish or itkwish3.0
You can probably get an rpm at http://www.rpmfind.net
<<lessThe default file being configured is conf/samba/smb.conf Change the value to /etc/smb.conf or wherever your Samba config is by editing conf/comanche.conf (Make a back up first of your files!)
Samba support is experimental right now. You can have a look at plugins/samba/* . The documents in docs/developer will also be a useful read.
If you got a binary distribution, just double-click on the icon or invoke the comanche binary in Unix
If you got the source package, you need to a wish interpreter with Itcl 3.x support (no [incr Tk] required). You have several options:
Build it yourself have a look at http://www.tcltk.com/itcl
It may already be installed in your distribution under the name itkwish or itkwish3.0
You can probably get an rpm at http://www.rpmfind.net
Download (2.3MB)
Added: 2006-07-25 License: GPL (GNU General Public License) Price:
1175 downloads
NTLogon 0.11.0
NTLogon is a logon script generator for samba. more>>
NTLogon is a logon script generator for samba.
It works using the local username on *nix to get the real name and all the groups the user belong to.
Then it uses /etc/ntlogon.conf to create a login script for windows clients adding all the network shares the user can use and are specifie
Programming language is Python. You do not need to do more than add these lines to your [netlogon] section at the smb.conf file:
[netlogon]
path = /usr/local/samba/netlogon
writeable = no
guest ok = no
root preexec = /usr/local/samba/bin/ntlogon.py --os=%m --localuser=%u
root postexec = rm /usr/local/samba/netlogon/%U.bat
Enhancements:
- This release has changed from id/groups/finger to id/getent, so it works safely with LDAP or NIS (these commands are LDAP/NIS-aware).
- Groups can now contain spaces, and usernames can contain underscores.
<<lessIt works using the local username on *nix to get the real name and all the groups the user belong to.
Then it uses /etc/ntlogon.conf to create a login script for windows clients adding all the network shares the user can use and are specifie
Programming language is Python. You do not need to do more than add these lines to your [netlogon] section at the smb.conf file:
[netlogon]
path = /usr/local/samba/netlogon
writeable = no
guest ok = no
root preexec = /usr/local/samba/bin/ntlogon.py --os=%m --localuser=%u
root postexec = rm /usr/local/samba/netlogon/%U.bat
Enhancements:
- This release has changed from id/groups/finger to id/getent, so it works safely with LDAP or NIS (these commands are LDAP/NIS-aware).
- Groups can now contain spaces, and usernames can contain underscores.
Download (0.018MB)
Added: 2006-07-03 License: GPL (GNU General Public License) Price:
1210 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 1
- 1
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above smb.conf search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed