Miscellaneous updates of README and README.tru64 created.
authordeniel <deniel@f5534014-38df-0310-8fa8-9805f1628bb7>
Fri, 30 Apr 1999 21:16:31 +0000 (21:16 +0000)
committerdeniel <deniel@f5534014-38df-0310-8fa8-9805f1628bb7>
Fri, 30 Apr 1999 21:16:31 +0000 (21:16 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@250 f5534014-38df-0310-8fa8-9805f1628bb7

README
README.tru64 [new file with mode: 0644]

diff --git a/README b/README
index ea8797875c581e40385ab7852ca0d5680285a5d8..c5669a26a1ad43222927e0092890da0c19c0bafc 100644 (file)
--- a/README
+++ b/README
@@ -27,12 +27,15 @@ Ethereal is known to compile and run on the following systems:
   - Solaris (2.5.1, 2.6)
   - FreeBSD (2.2.5, 2.2.6)
   - Sequent PTX v4.4.5  (Nick Williams <njw@sequent.com>)
+  - Tru64 UNIX (formerly Digital UNIX) (3.2, 4.0)
 
 It should run on other systems without too much trouble.
 
 
 Full installation instructions can be found in the INSTALL file.
          
+See also the appropriate README.<OS> files for OS-specific installation
+instructions.
 
 Usage
 -----          
diff --git a/README.tru64 b/README.tru64
new file mode 100644 (file)
index 0000000..ecb138b
--- /dev/null
@@ -0,0 +1,37 @@
+
+The following instructions are applicable to Tru64 UNIX 
+(formerly Digital UNIX (formerly DEC OSF/1)) version 3.2 and 4.0.
+
+
+In order to use kernel packet filtering on this system, you have
+to configure it in such a way : 
+
+Kernel configuration
+--------------------
+
+The packet filtering kernel option must be enabled at kernel
+installation. If it was not the case, you can rebuild the kernel
+after adding the following line in the kernel configuration file
+(/sys/conf/<HOSTNAME>):
+
+option PACKETFILTER
+
+Device configuration
+--------------------
+
+Devices used for packet filtering must be created thanks to
+the following command (executed in the /dev directory):
+
+./MAKEDEV pfilt
+
+Interface configuration
+-----------------------
+
+In order to capture all packets on a network, you may want to
+enable the promiscuous mode of the interface thanks to the
+pfconfig(1) command:
+
+pfconfig <network_device> +c +p
+
+
+Note: all instructions given require root privileges.