Sponsored Content
Full Discussion: TCPdump
Special Forums IP Networking TCPdump Post 302951385 by gwillie on Wednesday 5th of August 2015 09:56:01 PM
Old 08-05-2015
In order to know a packet is not for it, it reads the destination mac address in the frame. You are in promiscuous mode so interface will accept all frames regardless of destination, reconstitute to a packet and send to cpu
 

9 More Discussions You Might Find Interesting

1. Programming

How To Use tcpdump

I have two net-card. one is 172.16.24.99(ENG) ,another is 172.16.25.99(ENG-B). Both masks is 255.255.255.0. I will monitor data on the tcp port 8055 in ENG, How do I set option of tcpdump command (2 Replies)
Discussion started by: chenhao_no1
2 Replies

2. UNIX for Dummies Questions & Answers

tcpdump

does anybody know what the -d -dd and -ddd options are used for ? thanks (2 Replies)
Discussion started by: ant04
2 Replies

3. IP Networking

tcpdump question

Hi, I got the following question regarding tcpdump and I would appreciate your help/feedback: --Scenario I am instructed to capture the network traffic by getting the tcpdump data/files of our network for every hour. --Problem Some of the connections are still open when the capture is done... (1 Reply)
Discussion started by: jinsunnyvale
1 Replies

4. Cybersecurity

i would like to know about tcpdump

i would like to know about tcpdump i would like to use tcpdump to get information about these - Date - time - source hostname - source mac address - source ip address - destination ip address - see outbound only then i use command like this tcpdump -i le0 -n -q -tttt -e src net... (0 Replies)
Discussion started by: chamnanpol
0 Replies

5. IP Networking

i would like to know about tcpdump

i would like to know about tcpdump i would like to use tcpdump to get information about these - Date - time - source hostname - source mac address - source ip address - destination ip address - see outbound only then i use command like this tcpdump -i le0 -n -q -tttt -e src net... (2 Replies)
Discussion started by: chamnanpol
2 Replies

6. Linux

Capturing TCPDUMP

Hi, I want to capture TCPDUMP of traffic, I tried doing this but did not find success..can anyone plz correct it. # tcpdump -s0 -vv -w /home/osuresh/test_tcp_dump host 10.12.10.22 && port 161 bash: tcpdump: command not found # tcpdump -s0 -vv -w /home/osuresh/test_tcp_dump host... (5 Replies)
Discussion started by: sureshcisco
5 Replies

7. UNIX for Dummies Questions & Answers

tcpdump -i any does not work

Hi Everyone, anyone face "tcpdump -i any" does not work? i mean if i use -i eth0, can capture eth0, or use -i eth1 also can. but then tcpdump -i any, seems cannot capture packets. :confused: please advice, thanks (2 Replies)
Discussion started by: jimmy_y
2 Replies

8. Shell Programming and Scripting

TCPdump script

I'm new to the Unix/Linux world. I have taken classes and played with a few simple scripts but never had a real world application. Here is my problem. What I need to do is every 15min between 8am and 5pm, run tcpdump -s 2000 -w flowroute-0000.pcap where the "0000" is the current time. ... (4 Replies)
Discussion started by: Nasasdge
4 Replies

9. Debian

Tcpdump Help !

Hi. Need Help with TcpDump Trying to sniff associatio-request with tcpdump but when i run this tcpdump -i eth0 wlan subtype assoc-req i get this error can anyone help me with this error ? Thanks alot !!:) (1 Reply)
Discussion started by: SoulZB
1 Replies
pfconfig(8c)															      pfconfig(8c)

Name
       pfconfig - configure packet filter parameters

Syntax
       /usr/etc/pfconfig [ +/-p[romisc] ] [ +/-c[opyall] ] [ -b[acklog] nnn ] [ -a[ll] ] [interface-name ...]

Description
       The command allows the system manager to configure certain parameters of the packet filter driver (see These parameters are configured sep-
       arately for each interface; the interfaces are specified by name on the command line (for example, and If more than one interface is speci-
       fied,  they are all given the same settings.  Alternatively, you can specify -all to configure all the packet-filter interfaces on the sys-
       tem.

       You can set the following parameters with

       +promisc  Allows packet filter users to set the interface into promiscuous mode (receives all packets).	Whenever there	is  at	least  one
		 packet filter descriptor open with the ENPROMISC mode bit set, the interface is put into promiscuous mode.  When no such descrip-
		 tors are in use, the interface is returned to normal mode.

       -promisc  The interface is no longer put into promiscuous mode on behalf of packet filter users; if the interface is  in  promiscuous  mode
		 when  this  command  is given, it is returned to normal mode.	(The superuser may use to control promiscuous mode, overriding the
		 mode set by non-superusers.  This is the default setting.)

       +copyall  Allows packet filter users to set the interface into copy-all mode (receives packets sent/received by the kernel-resident  proto-
		 col  software	[for  example,	IP, ARP, DECnet, LAT] on this host).  Whenever there is at least one packet filter descriptor open
		 with the ENCOPYALL mode bit set, the interface is put into copy-all mode.  When no such descriptors are in use, the interface	is
		 returned to normal mode.

       -copyall  The  interface  is  no  longer put into copy-all mode on behalf of packet filter users; if the interface is in copy-all mode when
		 this command is given, it is returned to normal mode.	(The superuser may use to control copy-all mode, overriding the  mode  set
		 by non-superusers.  This is the default setting.)

       -backlog nnn
		 Sets  the  maximum  backlog  (packet  filter  input  queue length) for non-superuser descriptors to the specified number.  When a
		 descriptor is opened, it is given a queue length limit of two. An application can increase this backlog using the EIOCSETW  ioctl
		 request.   Superusers	are  allowed to increase their backlog up to a system-wide maximum; non-superusers are allowed to increase
		 their backlog only up to the maximum set by this program.  Note that allowing too large a backlog may result in vast  amounts	of
		 kernel memory being tied up in the packet filter driver queues.

       If no configuration parameters are specified, the command displays the current packet filter configuration for the network interface(s).

       Only the superuser may use this command to change the configuration.

Examples
       On a system used for network monitoring, one might put this line into
       /usr/etc/pfconfig -a +promisc -backlog 64
       This  allows  users to run promiscuous network monitoring applications, with a maximum input queue length per application of 64 packets, on
       any interface in the system.
       /usr/etc/pfconfig -a +promisc +copyall -backlog 64
       This allows promiscuous network monitoring applications to monitor communications to or from the local host, as well as	the  rest  of  the
       local network.

Diagnostics
       Messages  indicating  the specified interface do not exist; an attempt to set a maximum backlog less than 1 or greater than the system-wide
       maximum; the user tried to alter an interface's configuration but is not privileged.

See Also
       netstat(1), intro(4n), packetfilter(4), ifconfig(8c), rc(8)

																      pfconfig(8c)
All times are GMT -4. The time now is 01:26 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy