diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /net/ipx/Kconfig |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'net/ipx/Kconfig')
-rw-r--r-- | net/ipx/Kconfig | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/net/ipx/Kconfig b/net/ipx/Kconfig new file mode 100644 index 000000000000..a16237c0e783 --- /dev/null +++ b/net/ipx/Kconfig | |||
@@ -0,0 +1,31 @@ | |||
1 | # | ||
2 | # IPX configuration | ||
3 | # | ||
4 | config IPX_INTERN | ||
5 | bool "IPX: Full internal IPX network" | ||
6 | depends on IPX | ||
7 | ---help--- | ||
8 | Every IPX network has an address that identifies it. Sometimes it is | ||
9 | useful to give an IPX "network" address to your Linux box as well | ||
10 | (for example if your box is acting as a file server for different | ||
11 | IPX networks: it will then be accessible from everywhere using the | ||
12 | same address). The way this is done is to create a virtual internal | ||
13 | "network" inside your box and to assign an IPX address to this | ||
14 | network. Say Y here if you want to do this; read the IPX-HOWTO at | ||
15 | <http://www.tldp.org/docs.html#howto> for details. | ||
16 | |||
17 | The full internal IPX network enables you to allocate sockets on | ||
18 | different virtual nodes of the internal network. This is done by | ||
19 | evaluating the field sipx_node of the socket address given to the | ||
20 | bind call. So applications should always initialize the node field | ||
21 | to 0 when binding a socket on the primary network. In this case the | ||
22 | socket is assigned the default node that has been given to the | ||
23 | kernel when the internal network was created. By enabling the full | ||
24 | internal IPX network the cross-forwarding of packets targeted at | ||
25 | 'special' sockets to sockets listening on the primary network is | ||
26 | disabled. This might break existing applications, especially RIP/SAP | ||
27 | daemons. A RIP/SAP daemon that works well with the full internal net | ||
28 | can be found on <ftp://ftp.gwdg.de/pub/linux/misc/ncpfs/>. | ||
29 | |||
30 | If you don't know what you are doing, say N. | ||
31 | |||