source: basicnet/netprogs/ncpfs/ncpfs-config.xml@ 369af35a

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb v5_1 v5_1-pre1 xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 369af35a was 369af35a, checked in by Igor Živković <igor@…>, 20 years ago

s/source/./ in init scripts

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@1776 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 3.3 KB
Line 
1<sect2>
2<title>Configuring <application>NCPFS</application></title>
3
4<sect3><title>Config files</title>
5<para><filename>~/.nwclient</filename></para>
6</sect3>
7
8<sect3><title>Configuration Information</title>
9
10<para>A config file <filename>~/.nwclient</filename> should be placed
11in the home directory of each user that intends to use <application>ncpfs
12</application>. The permissions on this file should be set to 600, for obvious
13security reasons. The configuration file should contain a single line
14per server that the user will use. Each line should contain
15the server name, the user name, and optionally the password. Below is a
16sample <filename>.nwclient</filename> file.</para>
17
18<screen><userinput># Begin example <filename>~/.nwclient</filename> config file
19
20Server1/User1 Password
21Server2/User1
22Server2/Guest1 -
23
24# End example .nwclient config file</userinput></screen>
25
26<para>The syntax for the <filename>.nwclient</filename> file is simple,
27<userinput>server_name/user_name password</userinput>. Be extremely
28careful when creating or editing this file as the client utilities are
29very picky about syntax. There should always be a space immediately
30after the username. If this space is substituted by a tab or multiple
31spaces, you will not get the expected results when attempting to use
32the <application>NCPFS</application> tools. If no password is supplied,
33the client utilities will ask for a password when it is needed. If no
34password is needed, for instance when using a guest account, a single '-'
35should be put in place of a password.</para>
36
37<para>It should be noted that the ncpmount is not intended to mount
38individual volumes because each mount point creates a separate client
39connection to the Novell server. Mounting each individual volume
40separately would be unwise, as mounting all volumes on a server
41under one mount point uses only one client connection.</para>
42
43<para>If you need to set up the <acronym>IPX</acronym> protocol at boot,
44you can create the following scripts. These scripts assume <acronym>IPX
45</acronym> will be set up on <emphasis role="strong">eth0</emphasis>
46and the network frame type is 802.2. You should confirm that these
47are the correct settings and adjust as necessary.</para>
48
49<screen><userinput><command>cat &gt; /etc/sysconfig/network-devices/ifup-ipx0 &lt;&lt; "EOF"</command>
50#!/bin/sh
51# Begin /etc/sysconfig/network-devices/ifup-ipx0
52
53. /etc/sysconfig/rc || exit
54. $rc_functions || exit
55
56echo "Setting up the IPX protocol on eth0..."
57/bin/ipx_interface add eth0 802.2 &amp;&amp;
58/bin/ipx_configure --auto_interface=on --auto_primary=on
59evaluate_retval
60
61# End /etc/sysconfig/network-devices/ifup-ipx0
62<command>EOF
63cat &gt; /etc/sysconfig/network-devices/ifdown-ipx0 &lt;&lt; "EOF"</command>
64#!/bin/sh
65# Begin /etc/sysconfig/network-devices/ifdown-ipx0
66
67. /etc/sysconfig/rc || exit
68. $rc_functions || exit
69
70echo "Stopping IPX on the eth0 interface..."
71/bin/ipx_configure --auto_interface=off --auto_primary=off &amp;&amp;
72/bin/ipx_interface del eth0 802.2
73evaluate_retval
74
75# End /etc/sysconfig/network-devices/ifdown-ipx0
76<command>EOF
77echo "ONBOOT=yes" &gt; /etc/sysconfig/network-devices/ifconfig.ipx0
78chmod 755 /etc/sysconfig/network-devices/ifup-ipx0
79chmod 755 /etc/sysconfig/network-devices/ifdown-ipx0</command></userinput></screen>
80
81</sect3>
82
83</sect2>
84
Note: See TracBrowser for help on using the repository browser.