Index: en_US.ISO8859-1/books/faq/book.xml =================================================================== --- en_US.ISO8859-1/books/faq/book.xml (revision 40829) +++ en_US.ISO8859-1/books/faq/book.xml (working copy) @@ -1360,20 +1360,6 @@ - - Can I install on my laptop over PLIP (Parallel Line - IP)? - - - - Yes. Use a standard Laplink cable. If necessary, you - can check out the PLIP section of the Handbook - for details on parallel port networking. - - - - Do I need to install the source? @@ -5820,19 +5806,6 @@ - - How do I connect two &os; systems over a parallel line - using PLIP? - - - - Please see the PLIP section - of the Handbook. - - - - How can I set up Ethernet aliases? Index: en_US.ISO8859-1/books/handbook/advanced-networking/chapter.xml =================================================================== --- en_US.ISO8859-1/books/handbook/advanced-networking/chapter.xml (revision 40829) +++ en_US.ISO8859-1/books/handbook/advanced-networking/chapter.xml (working copy) @@ -45,10 +45,6 @@ - How to connect two computers via PLIP. - - - How to set up IPv6 on a FreeBSD machine. @@ -5419,232 +5415,6 @@ do so. - - - Parallel Line IP (PLIP) - - PLIP - - Parallel Line IP - PLIP - - - PLIP lets us run TCP/IP between parallel ports. It is - useful on machines without network cards, or to install on - laptops. In this section, we will discuss: - - - - Creating a parallel (laplink) cable. - - - - Connecting two computers with PLIP. - - - - - Creating a Parallel Cable - - You can purchase a parallel cable at most computer supply - stores. If you cannot do that, or you just want to know how - it is done, the following table shows how to make one out of a - normal parallel printer cable. - - - Wiring a Parallel Cable for Networking - - - - - A-name - A-End - B-End - Descr. - Post/Bit - - - - - - DATA0 --ERROR - - 2 - -15 - - 15 - -2 - - Data - - 0/0x01 -1/0x08 - - - - DATA1 -+SLCT - - 3 -13 - - 13 -3 - - Data - - 0/0x02 -1/0x10 - - - - DATA2 -+PE - - 4 -12 - - 12 -4 - - Data - - 0/0x04 -1/0x20 - - - - DATA3 --ACK - - 5 -10 - - 10 -5 - - Strobe - - 0/0x08 -1/0x40 - - - - DATA4 -BUSY - - 6 -11 - - 11 -6 - - Data - - 0/0x10 -1/0x80 - - - - GND - 18-25 - 18-25 - GND - - - - - -
-
- - - Setting Up PLIP - - First, you have to get a laplink cable. Then, confirm - that both computers have a kernel with &man.lpt.4; driver - support: - - &prompt.root; grep lp /var/run/dmesg.boot -lpt0: <Printer> on ppbus0 -lpt0: Interrupt-driven port - - The parallel port must be an interrupt driven port, you - should have lines similar to the following in your in the - /boot/device.hints file: - - hint.ppc.0.at="isa" -hint.ppc.0.irq="7" - - Then check if the kernel configuration file has a - device plip line or if the - plip.ko kernel module is loaded. In both - cases the parallel networking interface should appear when you - use the &man.ifconfig.8; command to display it: - - &prompt.root; ifconfig plip0 -plip0: flags=8810<POINTOPOINT,SIMPLEX,MULTICAST> mtu 1500 - - Plug the laplink cable into the parallel interface on - both computers. - - Configure the network interface parameters on both sites - as root. For example, if you want to - connect the host host1 with another machine - host2: - - host1 <-----> host2 -IP Address 10.0.0.1 10.0.0.2 - - Configure the interface on host1 by - doing: - - &prompt.root; ifconfig plip0 10.0.0.1 10.0.0.2 - - Configure the interface on host2 by - doing: - - &prompt.root; ifconfig plip0 10.0.0.2 10.0.0.1 - - You now should have a working connection. Please read the - manual pages &man.lp.4; and &man.lpt.4; for more - details. - - You should also add both hosts to - /etc/hosts: - - 127.0.0.1 localhost.my.domain localhost -10.0.0.1 host1.my.domain host1 -10.0.0.2 host2.my.domain host2 - - To confirm the connection works, go to each host and ping - the other. For example, on host1: - - &prompt.root; ifconfig plip0 -plip0: flags=8851<UP,POINTOPOINT,RUNNING,SIMPLEX,MULTICAST> mtu 1500 - inet 10.0.0.1 --> 10.0.0.2 netmask 0xff000000 -&prompt.root; netstat -r -Routing tables - -Internet: -Destination Gateway Flags Refs Use Netif Expire -host2 host1 UH 0 0 plip0 -&prompt.root; ping -c 4 host2 -PING host2 (10.0.0.2): 56 data bytes -64 bytes from 10.0.0.2: icmp_seq=0 ttl=255 time=2.774 ms -64 bytes from 10.0.0.2: icmp_seq=1 ttl=255 time=2.530 ms -64 bytes from 10.0.0.2: icmp_seq=2 ttl=255 time=2.556 ms -64 bytes from 10.0.0.2: icmp_seq=3 ttl=255 time=2.714 ms - ---- host2 ping statistics --- -4 packets transmitted, 4 packets received, 0% packet loss -round-trip min/avg/max/stddev = 2.530/2.643/2.774/0.103 ms - - -
- Index: en_US.ISO8859-1/books/handbook/config/chapter.xml =================================================================== --- en_US.ISO8859-1/books/handbook/config/chapter.xml (revision 40829) +++ en_US.ISO8859-1/books/handbook/config/chapter.xml (working copy) @@ -1060,7 +1060,6 @@ inet 10.0.0.1 netmask 0xffffff00 broadcast 10.0.0.255 media: Ethernet 10baseT/UTP status: no carrier -plip0: flags=8810<POINTOPOINT,SIMPLEX,MULTICAST> metric 0 mtu 1500 lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384 options=3<RXCSUM,TXCSUM> inet6 fe80::1%lo0 prefixlen 64 scopeid 0x4 @@ -1083,12 +1082,6 @@ - plip0: The parallel port - interface (if a parallel port is present on the - machine) - - - lo0: The loopback device Index: en_US.ISO8859-1/books/handbook/kernelconfig/chapter.xml =================================================================== --- en_US.ISO8859-1/books/handbook/kernelconfig/chapter.xml (revision 40829) +++ en_US.ISO8859-1/books/handbook/kernelconfig/chapter.xml (working copy) @@ -1164,11 +1164,6 @@ printer support. - device plip # TCP/IP over parallel - - This is the driver for the parallel network - interface. - device ppi # Parallel port interface device The general-purpose I/O (geek port) + Index: en_US.ISO8859-1/htdocs/cgi/cvsweb.cgi =================================================================== --- en_US.ISO8859-1/htdocs/cgi/cvsweb.cgi (revision 40829) +++ en_US.ISO8859-1/htdocs/cgi/cvsweb.cgi (working copy) @@ -1067,7 +1067,7 @@ } elsif ($infocols > 1) { # close the row with the appropriate number of - # columns, so that the vertical seperators are visible + # columns, so that the vertical separators are visible my ($cols) = $infocols; while ($cols > 1) { print "\n "; Index: en_US.ISO8859-1/htdocs/multimedia/multimedia-input.xml =================================================================== --- en_US.ISO8859-1/htdocs/multimedia/multimedia-input.xml (revision 40829) +++ en_US.ISO8859-1/htdocs/multimedia/multimedia-input.xml (working copy) @@ -1840,6 +1840,7 @@ + Joerg Sonnenberger Index: share/sgml/templates.events.xsl =================================================================== --- share/sgml/templates.events.xsl (working copy) +++ share/sgml/templates.events.xsl (working copy) @@ -209,7 +209,7 @@
    - + @@ -325,11 +325,11 @@ - + - + - +
  • events.html @@ -337,8 +337,8 @@
  • - - + +
    Index: share/sgml/templates.pastevents.xsl =================================================================== --- share/sgml/templates.pastevents.xsl (working copy) +++ share/sgml/templates.pastevents.xsl (working copy) @@ -168,7 +168,7 @@