Improved some IPv6 documentation
This commit is contained in:
parent
a42b8ec581
commit
248bfc3f8d
@ -1,6 +1,8 @@
|
|||||||
|
|
||||||
general:
|
general:
|
||||||
Added support for Arch Linux.
|
Added support for Arch Linux.
|
||||||
|
Added some IPv6 configurations to the manual.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
v0.95.12 22-May-2011
|
v0.95.12 22-May-2011
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
<BODY>
|
<BODY>
|
||||||
<BLOCKQUOTE>
|
<BLOCKQUOTE>
|
||||||
<!-- MBSEADVERT -->
|
<!-- MBSEADVERT -->
|
||||||
<div align="right"><h5>Last update 31-Jan-2011</h5></div>
|
<div align="right"><h5>Last update 23-May-2011</h5></div>
|
||||||
<div align="center"><H1>mbcico - The Fidonet mailer.</H1></div>
|
<div align="center"><H1>mbcico - The Fidonet mailer.</H1></div>
|
||||||
|
|
||||||
This is work in progress....
|
This is work in progress....
|
||||||
@ -177,6 +177,7 @@ service tfido
|
|||||||
instances = 10
|
instances = 10
|
||||||
server = /opt/mbse/bin/mbcico
|
server = /opt/mbse/bin/mbcico
|
||||||
server_args = -t itn
|
server_args = -t itn
|
||||||
|
flags = IPv6
|
||||||
}
|
}
|
||||||
|
|
||||||
service fido
|
service fido
|
||||||
@ -190,6 +191,8 @@ service fido
|
|||||||
server_args = -t ifc
|
server_args = -t ifc
|
||||||
}
|
}
|
||||||
</PRE><P>
|
</PRE><P>
|
||||||
|
If you want to use IPv6, add the line flags = IPv6 to the protocol
|
||||||
|
like in the example of tfido.
|
||||||
In the file /etc/services the following lines must be present:
|
In the file /etc/services the following lines must be present:
|
||||||
<P><PRE>
|
<P><PRE>
|
||||||
binkd 24554/tcp # mbcico IBN mode
|
binkd 24554/tcp # mbcico IBN mode
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
<BODY>
|
<BODY>
|
||||||
<BLOCKQUOTE>
|
<BLOCKQUOTE>
|
||||||
<!-- MBSEADVERT -->
|
<!-- MBSEADVERT -->
|
||||||
<DIV align=right><h5>Last update 25-Aug-2007</h5></DIV>
|
<DIV align=right><h5>Last update 23-May-2011</h5></DIV>
|
||||||
<DIV align=center><H1>mblogin - Unix login replacement for MBSE BBS.</H1></DIV>
|
<DIV align=center><H1>mblogin - Unix login replacement for MBSE BBS.</H1></DIV>
|
||||||
|
|
||||||
<H3>Synopsis.</H3>
|
<H3>Synopsis.</H3>
|
||||||
@ -50,7 +50,7 @@ using telnet. The changes you need to make are different for each operating
|
|||||||
system mbse supports. The right lines for your distribution should already
|
system mbse supports. The right lines for your distribution should already
|
||||||
be present, but they are not set active, in other words, you still need to
|
be present, but they are not set active, in other words, you still need to
|
||||||
make changes to allow telnet login to work.
|
make changes to allow telnet login to work.
|
||||||
I will describe how to use it from inetd.
|
First I will describe how to use it from inetd.
|
||||||
When you make changes to your system to
|
When you make changes to your system to
|
||||||
change the telnet login, make sure you are already logged into your system as root
|
change the telnet login, make sure you are already logged into your system as root
|
||||||
from another terminal. If you make a mistake and can't login anymore you will be
|
from another terminal. If you make a mistake and can't login anymore you will be
|
||||||
@ -82,7 +82,7 @@ logins such as ssh, rlogin and login on local consoles.
|
|||||||
<H3>How to use from xinetd.</H3>
|
<H3>How to use from xinetd.</H3>
|
||||||
<P>
|
<P>
|
||||||
This is how to use xinetd, Read the section above also.
|
This is how to use xinetd, Read the section above also.
|
||||||
Here is a tested setups:
|
Here is a tested setup:
|
||||||
This has to be done as root. You have to create a service under /etc/xinetd.d
|
This has to be done as root. You have to create a service under /etc/xinetd.d
|
||||||
named telnet if you dont have it yet installed, if it is already installed just
|
named telnet if you dont have it yet installed, if it is already installed just
|
||||||
modify the server_args line to match this:
|
modify the server_args line to match this:
|
||||||
@ -93,19 +93,23 @@ Your /etc/xinetd.d/telnet file should look something like this:
|
|||||||
<pre>
|
<pre>
|
||||||
service telnet
|
service telnet
|
||||||
{
|
{
|
||||||
flags = REUSE
|
protocol = tcp
|
||||||
|
instances = 10
|
||||||
|
flags = IPv6
|
||||||
log_on_failure += USERID
|
log_on_failure += USERID
|
||||||
socket_type = stream
|
socket_type = stream
|
||||||
user = root
|
user = root
|
||||||
server = /usr/sbin/telnetd
|
server = /usr/sbin/telnetd
|
||||||
server_args = -L /opt/mbse/bin/mblogin
|
server_args = -L /opt/mbse/bin/mblogin
|
||||||
wait = no
|
wait = no
|
||||||
}
|
}
|
||||||
</pre>
|
</pre>
|
||||||
This will replace the standard login program on xinetd systems to the mblogin
|
This will replace the standard login program on xinetd systems to the mblogin
|
||||||
program, so that next time someone logs into your bbs they will be presented the
|
program, so that next time someone logs into your bbs they will be presented the
|
||||||
issue file on /opt/mbse/etc file and the login prompt for the BBS instead of the
|
issue file on /opt/mbse/etc file and the login prompt for the BBS instead of the
|
||||||
standard login prompt.
|
standard login prompt. Note that on some systems the server_args need -E instead
|
||||||
|
of -L. If you don't have IPv6 enabled on your system, you must remove the
|
||||||
|
flags = IPv6 line.
|
||||||
<p> <p>
|
<p> <p>
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user