- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: libpcap (for tcpdump) compile
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-25-2006 08:01 AM
тАО08-25-2006 08:01 AM
I'd like to get tcpdump on it, so i need libpcap. There is no depot for either on 11.00, so i'm trying to compile the code i downloaded from the porting centre:
http://hpux.connect.org.uk/hppd/hpux/Networking/Admin/libpcap-0.9.4/
libpcap requires flex, bison, gcc and make. Got 'em all, although maybe not the latest.
configure runs, go to "gmake" (per instructions) -- it completes some lines, then dies with a pipe error:
(removed lines)
$$.scanner.c scanner.c
bison -y -p pcap_ -d grammar.y
gmake: *** [grammar.c] Broken pipe
Very similar with regular "make", gets a "Termination Signal 13", which is a sigpipe, so i guess they're saying the same thing.
Anybody have success with this?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-25-2006 12:34 PM
тАО08-25-2006 12:34 PM
Re: libpcap (for tcpdump) compile
I've never tried with those, and gcc under HP-UX. Just the HP compiler (unbundled) and the HP-UX standard make lex and yacc.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-28-2006 07:09 AM
тАО08-28-2006 07:09 AM
Re: libpcap (for tcpdump) compile
It said our LEX wasn't sufficient ??
Got:
configure: WARNING: don't have both flex and bison; reverting to lex/yacc
checking for capable lex... insufficient
configure: error: Your operating system's lex is insufficient to compile
libpcap. flex is a lex replacement that has many advantages, including
being able to compile libpcap. For more information, see
http://www.gnu.org/software/flex/flex.html .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-28-2006 07:24 AM
тАО08-28-2006 07:24 AM
Re: libpcap (for tcpdump) compile
If you have the GNU m4 installed, try playing with your PATH or maybe set an M4 environment variable and re-running configure.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-28-2006 08:31 AM
тАО08-28-2006 08:31 AM
Solutionecho $ECHO_N "checking for capable lex... $ECHO_C" >&6
if test "${tcpdump_cv_capable_lex+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
if lex -t scanner.l > /dev/null 2>&1; then
tcpdump_cv_capable_lex=yes
else
tcpdump_cv_capable_lex=insufficient
fi
fi
run that lex command by hand. You will probably see something like:
...
"scanner.l" line 349: error 4: Parse tree too big
6000/6000 nodes(%e), 0/25000 positions(%p), 1/2000 (%n), 0 transitions, 0/4000 packed char classes(%k), 0/16000 packed transitions(%a), 0/19000 output slots(%o)
Notice the bit about "nodes(%e)" - go into scanner.l and change the %e to something larger. You should see something akin to:
...
6056/9000 nodes(%e), 22089/25000 positions(%p), 1312/2000 (%n), 48325 transitions, 3621/4000 packed char classes(%k), 14716/16000 packed transitions(%a), 17206/19000 output slots(%o)
and re-run configure and all should be well. From time to time I've provided the tcpdump/libpcap folks with patches along those lines, but things can grow and get beyond the patches and so configure becomes unhappy again.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2006 05:04 AM
тАО08-29-2006 05:04 AM
Re: libpcap (for tcpdump) compile
Now, went on to compile TCPDUMP (configure --without-gcc) and print-dccp.c bit failed. Found this link, also from Rick, http://www.tcpdump.org/lists/workers/2005/11/msg00013.html
did what it said and got past that.
NOW, i'm hitting another compile error and NOT getting anything with Google (at least that i could understand):
cc: "print-isoclns.c", line 1619: error 1594: The sizeof operator cannot be applied to types with unknown size.
cc: "print-isoclns.c", line 1649: error 1594: The sizeof operator cannot be applied to types with unknown size.
*** Error exit code 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2006 05:25 AM
тАО08-29-2006 05:25 AM
Re: libpcap (for tcpdump) compile
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2006 05:40 AM
тАО08-29-2006 05:40 AM
Re: libpcap (for tcpdump) compile
looked at code at those lines:
1619 u_int8_t prefix[sizeof(struct in6_addr)]; /* shared copy buffer for IPv4 and IPv6 prefixes */
1649 memset(prefix, 0, sizeof(struct in6_addr)); /* clear the copy buffer */
So it looks like "in6_addr" is the variable, and it seems to be talked about in ip6 areas of code.
And thanks for all your help. Thanks so much.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2006 05:44 AM
тАО08-29-2006 05:44 AM
Re: libpcap (for tcpdump) compile
And if that _does_ work, please forward all the details to the tcpdump-workers mailing list - including what you needed to change to make lex happy.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2006 06:03 AM
тАО08-29-2006 06:03 AM
Re: libpcap (for tcpdump) compile
r:/home/root/tcpdump/tcpdump-3.9.4> ./configure --disable-ipv6 --without-gcc
checking build system type... hppa2.0w-hp-hpux11.00
checking host system type... hppa2.0w-hp-hpux11.00
checking for gcc... cc
checking for C compiler default output... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... no
checking whether cc accepts -g... yes
checking for cc option to accept ANSI C... none needed
checking that cc handles ansi prototypes... yes
checking for inline... __inline
checking for __attribute__... no
checking how to run the C preprocessor... cc -E
checking for egrep... grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... no
checking for unistd.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking rpc/rpcent.h usability... no
checking rpc/rpcent.h presence... no
checking for rpc/rpcent.h... no
checking netdnet/dnetdb.h usability... no
checking netdnet/dnetdb.h presence... no
checking for netdnet/dnetdb.h... no
checking for netinet/if_ether.h... no
configure: Rechecking with some additional includes
checking for netinet/if_ether.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking smi.h usability... no
checking smi.h presence... no
checking for smi.h... no
checking for smiInit in -lsmi... no
checking whether to enable the possibly-buggy SMB printer... yes
configure: WARNING: The SMB printer may have exploitable buffer overflows!!!
checking whether to drop root privileges by default... no
checking whether to chroot... no
checking whether to enable ipv6... no
checking for dnet_htoa declaration in netdnet/dnetdb.h... no
checking for char... yes
checking size of char... 1
checking for short... yes
checking size of short... 2
checking for int... yes
checking size of int... 4
checking for long... yes
checking size of long... 4
checking for long long... yes
checking size of long long... 8
checking for addrinfo... no
checking for NI_MAXSERV... no
checking for NI_NAMEREQD... no
checking for sockaddr_storage... no
checking for INADDRSZ... yes
checking for IN6ADDRSZ... no
checking for RES_USE_INET6... no
checking for res_state_ext... no
checking for nsort in res_state... no
checking for vfprintf... yes
checking for strcasecmp... yes
checking for strlcat... no
checking for strlcpy... no
checking for strdup... yes
checking for strsep... no
checking for strftime... no
checking for setlinebuf... no
checking for alarm... yes
checking for vsnprintf... yes
checking for snprintf... yes
checking return type of signal handlers... void
checking for sigaction... yes
checking for library containing dnet_htoa... no
checking for main in -lrpc... no
checking for library containing getrpcbynumber... -lnsl
checking for library containing gethostbyname... none required
checking for library containing socket... none required
checking for library containing putmsg... none required
checking for local pcap library... not found
checking for main in -lpcap... yes
checking for extraneous pcap header directories... not found
checking for pcap_list_datalinks... yes
checking for pcap_set_datalink... yes
checking for pcap_datalink_name_to_val... yes
checking for pcap_datalink_val_to_description... yes
checking for pcap_breakloop... yes
checking for pcap_dump_ftell... yes
checking for inet_ntop... no
checking for inet_pton... no
checking for inet_aton... yes
checking for ether_ntohost... no
checking if sockaddr struct has sa_len member... no
checking for pcap_findalldevs... yes
checking for pcap_dump_flush... yes
checking for pcap_lib_version... yes
checking for pcap_if_t... yes
checking whether pcap_debug is defined by libpcap... no
checking whether yydebug is defined by libpcap... yes
checking for bpf_dump... yes
checking sys/bitypes.h usability... no
checking sys/bitypes.h presence... no
checking for sys/bitypes.h... no
checking for int8_t... yes
checking for u_int8_t... no
checking for int16_t... yes
checking for u_int16_t... no
checking for int32_t... yes
checking for u_int32_t... no
checking for int64_t... yes
checking for u_int64_t... no
checking for inttypes.h... (cached) yes
checking whether inttypes.h defines the PRI[doxu]64 macros... yes
checking if sockaddr struct has sa_len member... no
checking if unaligned accesses fail... yes
checking for h_errno... yes
checking for SSLeay... no
checking for a BSD-compatible install... /opt/imake/bin/install -c
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing default-1 commands
r:/home/root/tcpdump/tcpdump-3.9.4> make
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./addrtoname.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./cpack.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./gmpls.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./oui.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./gmt2local.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./ipproto.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./nlpid.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./l2vpn.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./machdep.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./parsenfsfh.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-802_11.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-ap1394.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-ah.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-arcnet.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-aodv.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-arp.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-ascii.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-atalk.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-atm.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-beep.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-bfd.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-bgp.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-bootp.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-cdp.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-chdlc.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-cip.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-cnfp.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-dccp.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-decnet.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-domain.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-dvmrp.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-enc.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-egp.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-eap.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-eigrp.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-esp.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-ether.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-fddi.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-fr.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-gre.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-hsrp.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-icmp.c
cc: "print-icmp.c", line 406: warning 611: Type conversion loses "const" qualifier.
cc: "print-icmp.c", line 406: warning 563: Argument #3 is not the correct type.
cc: "print-icmp.c", line 416: warning 611: Type conversion loses "const" qualifier.
cc: "print-icmp.c", line 416: warning 563: Argument #3 is not the correct type.
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-igmp.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-igrp.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-ip.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-ipcomp.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-ipfc.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-ipx.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-isakmp.c
cc -O -DHAVE_CONFIG_H -I./missing -D_U_="" -I. -I/usr/local/include -I./missing -c ./print-isoclns.c
cc: "print-isoclns.c", line 1619: error 1594: The sizeof operator cannot be applied to types with unknown size.
cc: "print-isoclns.c", line 1649: error 1594: The sizeof operator cannot be applied to types with unknown size.
*** Error exit code 1
Stop.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2006 06:20 AM
тАО08-29-2006 06:20 AM
Re: libpcap (for tcpdump) compile
And backing-up a bit, given the status of 11.0, it might be a _very_ good idea to get those application restrictions addressed and get onto an OS from this century :) 11iv2 (aka 11.23) would be a good place to be. Heck, it would probably still run your existing application binaries just fine. Depending on how much "stuff" has to come along for the ride with those binaries, you might be able to try it out using one of the "testdrive" systems first:
http://www.testdrive.hp.com/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2006 06:22 AM
тАО08-29-2006 06:22 AM
Re: libpcap (for tcpdump) compile
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-30-2006 04:48 AM
тАО08-30-2006 04:48 AM
Re: libpcap (for tcpdump) compile
"gutted" print-isoclns.c, and then got some errors at the end:
usr/ccs/bin/ld: Unsatisfied symbols:
isoclns_print (first referenced in print-chdlc.o) (code)
BUT it still made the executable, which does what i need it to do.
So, Rick, i will GLADY write this up, but it seems not really "correct" enough. Whatever you think, and i can't thank you enough for all your assistance.
(i'm nagging about 11.0 -> 11.23 upgrades too)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-30-2006 05:17 AM
тАО08-30-2006 05:17 AM
Re: libpcap (for tcpdump) compile
As for the unresolved symbols bit, you could tweak the gutting by either removing calls to the routine from elsewhere, or making the routine a noop (ie just return) rather than not being there at all.
Upgrading to newer OS and hardware will be thanks enough :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-31-2006 06:34 PM
тАО08-31-2006 06:34 PM
Re: libpcap (for tcpdump) compile
AFIAK, tcpdump cannot capture packets sent thru the localhost & also between applications sitting on same host (though using the non-localhost IP's for comm.). They simply don't reach deep enough in the network stack, for libpcap to be able to read them. This used to the fact until 2 yrs back, not sure if this has changed now.
-bd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-01-2006 04:35 AM
тАО09-01-2006 04:35 AM
Re: libpcap (for tcpdump) compile
WRT "local" traffic to the other assigned IPs, there is a bit of a kludge one could use if necessary. You can used ndd to set "ip_loopback_bypass" to force traffic to local IPs to go to the driver(s). This then sends them past the promiscuous taps and so the traffic should become visible to libpcap. IIRC "ip_loopback_bypass" is in the "unsupported" category (eg be careful kids)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-01-2006 05:24 AM
тАО09-01-2006 05:24 AM
Re: libpcap (for tcpdump) compile
Maybe the idea that i could dump and ftp to a machine with ethereal might change my mind, but nettl made me feel dumb.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-01-2006 06:28 AM - last edited on тАО09-08-2021 12:05 AM by Parvez_Admin
тАО09-01-2006 06:28 AM - last edited on тАО09-08-2021 12:05 AM by Parvez_Admin
Re: libpcap (for tcpdump) compile
It is true to using "nettl" to capture IP traffic might seem a little daunting at first, but once you get hang of it, it's a easy.
Here's a little how-to:
1) Stop all tracing
nettl -tf -e all
2) Start IP traffic capture, and then Start the TCP/IP test case nettl -tn all -e ns_ls_ip -usize 1024 -tracemax 99999 -f /tmp/tf
3) Stop all tracing
nettl -tf -e all
After tracing is stopped, you'd fine one or two files in /tmp/tf000 & maybe /tmp/tf001.
These files are directly readable by Ethereal/Wireshark, with all it's glorious decoding.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-05-2006 04:34 AM
тАО09-05-2006 04:34 AM
Re: libpcap (for tcpdump) compile
also, i do appreciate the hint on using nettl, i'm going to give it a try!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-21-2007 02:48 AM
тАО08-21-2007 02:48 AM