![roll :roll:](./images/smilies/icon_rolleyes.gif)
![roll :roll:](./images/smilies/icon_rolleyes.gif)
ääähmmm.... hüstel, wenn Du mal Zeit hast, könntest Du dann vielleicht noch bitte an die SSL-Funktion denken????
![oops :oops:](./images/smilies/icon_redface.gif)
DANKE !!!
christian
Die Posts zeigen zwei unterschiedliche Versuche.Du versuchst /mnt/Share zu mounten und gibst nur /mnt/dream frei.
Du hast natuerlich Recht...Zaphot hat geschrieben:Da muss eigentlich nix angegeben werden wenn man keine Parameter eingrenzen will.
Code: Alles auswählen
When specifying hostnames, use the following methods:
single host
Where one particular host is specified with a fully qualified domain name, hostname, or IP address.
wildcards
Where a * or ? character is used to take into account a grouping of fully qualified domain names that match a particular string of letters. Wildcards are not to be used with IP addresses; however, they may accidently work if reverse DNS lookups fail.
However, be careful when using wildcards with fully qualified domain names, as they tend to be more exact than you would expect. For example, the use of *.example.com as wildcard will allow sales.example.com to access an exported file system, but not bob.sales.example.com. To match both possibilities, as well as sam.corp.example.com, you would have to provide *.example.com *.*.example.com.
IP networks
Allows the matching of hosts based on their IP addresses within a larger network. For example, 192.168.0.0/28 will allow the first 16 IP addresses, from 192.168.0.0 to 192.168.0.15, to access the exported file system but not 192.168.0.16 and higher.
netgroups
Permits an NIS netgroup name, written as @<group-name>, to be used. This effectively puts the NIS server in charge of access control for this exported file system, where users can be added and removed from an NIS group without affecting /etc/exports.
Warning
The format of the /etc/exports file is very precise, particularly in regards to use of the space character. Remember to always separate exported file systems from hosts and hosts from one another with a space character. However, there should be no other space characters in the file except on comment lines.
For example, the following two lines do not mean the same thing:
/home bob.example.com(rw)
/home bob.example.com (rw)
The first line allows only users from bob.example.com read-write access to the /home directory. The second line allows users from bob.example.com to mount the directory read-only (the default), but the rest of the world can mount it read-write.