Lines Matching +full:com +full:- +full:mode

1 For HP-UX 11i (11.11) and later, there are no known issues with
2 promiscuous mode under HP-UX. If you are using a earlier version of
3 HP-UX and cannot upgrade, please continue reading.
5 HP-UX patches to fix packet capture problems
7 Note that packet-capture programs such as tcpdump may, on HP-UX, not be
9 Some articles on groups.google.com discussing this are:
11 https://groups.google.com/groups?selm=82ld3v%2480i%241%40mamenchi.zrz.TU-Berlin.DE
18 From: Lutz Jaenicke <jaenicke@emserv1.ee.TU-Berlin.DE>
27 >must me "patched" (poked) in order to see outbound data in promiscuous mode.
35 echo 'lanc_outbound_promisc_flag/W1' | /usr/bin/adb -w /stand/vmunix /dev/kmem
43 http://groups.google.com/groups?selm=88cf4t%24p03%241%40web1.cup.hp.com
54 > compiled libpcap-0.4 an tcpdump-3.4 and it seems to work. But at a
56 > outgoing. I have tried tcpflow-0.12 which also uses libpcap and the
60 Search/Read the archives ?-)
62 What you are seeing is expected, un-patched, behaviour for an HP-UX
72 https://groups.google.com/groups?selm=38AA973E.96BE7DF7%40cc.uit.no
85 > What you are seeing is expected, un-patched, behaviour for an HP-UX
97 (although those patches may not be the ones to install - there may be
100 And another message to tcpdump-workers@tcpdump.org, from Rick Jones:
102 Date: Mon, 29 Apr 2002 15:59:55 -0700
104 To: tcpdump-workers@tcpdump.org
105 Subject: Re: [tcpdump-workers] I Can't Capture the Outbound Traffic
109 http://itrc.hp.com/ would be one place to start in a search for the most
110 up-to-date patches for DLPI and the lan driver(s) used on your system (I
111 cannot guess because 9000/800 is too generic - one hs to use the "model"
116 Another option is to upgrade to 11i as outbound promiscuous mode support
121 https://groups.google.com/groups?selm=7d6gvn%24b3%241%40ocean.cup.hp.com
124 captures on HP-UX 9.x:
131 Dave Barr (barr@cis.ohio-state.edu) wrote:
136 what one uses to access interfaces in promiscuous mode.
139 since HP-UX 9.X is off the pricelist (well, maybe 9.10 for the old 68K
143 possible. If your hardware is supported by it, I'd go with HP-UX 11.
153 Rick Jones reports that HP-UX 11i needs no patches for outbound
154 promiscuous mode support.
156 An additional note, from Jost Martin, for HP-UX 10.20:
165 Patch Description: s700 10.20 PCI 100Base-T cumulative patch
170 adb -w /stand/vmunix /dev/mem
175 (Thanks for this part to HP-support, Ratingen)
177 The attached hack does this and some security-related stuff
178 (thanks to hildeb@www.stahl.bau.tu-bs.de (Ralf Hildebrandt) who
179 posted the security-part some time ago)
183 (Don't switch IP-forwarding off, if you need it !)
185 permissions !) and make a sequencing-symlink
190 turned on for HP-UX 11.00, but not for 11i - and, in fact, the switch
195 -----------------------------------Cut Here-------------------------------------
201 ERROR=-1
214 print "Tune IP-Stack for security"
241 # tcp-Sequence-Numbers nicht mehr inkrementieren sondern random
242 # Syn-Flood-Protection an
244 # Source-Routing aus
247 /usr/contrib/bin/nettune -s tcp_random_seq 2 || exit $ERROR
248 /usr/contrib/bin/nettune -s hp_syn_protect 1 || exit $ERROR
249 /usr/contrib/bin/nettune -s ip_forwarding 0 || exit $ERROR
250 echo 'ip_block_source_routed/W1' | /usr/bin/adb -w /stand/vmunix /dev/kmem || exit $ERROR
251 echo 'lanc_outbound_promisc_flag/W 1' | adb -w /stand/vmunix /dev/mem || exit $ERROR
254 -----------------------------------Cut Here-------------------------------------