promiscuous mode AIX


 
Thread Tools Search this Thread
Operating Systems AIX promiscuous mode AIX
# 8  
Old 08-29-2011
Hmm, good one.

It may have been set in /usr/include/sys/ndd.h
Code:
 #define NDD_PROMISC     (0x00000080)    /* in promiscuous mode */

All my searching keeps bringing me here:
pSeries and AIX Information Center
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

Interface goes into promiscuous mode

Hi all, I am using a Linux VM. Once the node boots up, I am able to access it and it is able to ping its default gateway. At that time, the config is; eth1 Link encap:Ethernet HWaddr 00:50:56:01:01:FB inet addr:142.133.174.246 Bcast:142.133.175.255 ... (1 Reply)
Discussion started by: Junaid Subhani
1 Replies

2. Solaris

DNS service is in maintenance mode. How to bring it back to online mode?

:confused: when i tried to look the status of DNS-client, it is in maintenance mode..... Please tell me how to bring it back to online mode...PLEASE TELL ME STEP BY STEP.... PLEASE... :wall: (2 Replies)
Discussion started by: vamshigvk475
2 Replies

3. UNIX for Dummies Questions & Answers

Will Linux force NIC into promiscuous mode?

Right now I have a computer that I want to use as the monitor for my network. It's currently running Windows 7, and so as I understand it the NIC won't monitor all the traffic on the network. So my question is, if I install Linux on this computer will I be able to force the NIC card into... (1 Reply)
Discussion started by: iJeydon
1 Replies

4. UNIX for Advanced & Expert Users

What is the difference between single line mode and multiline mode in Regular expressions?

Hi All, Can please let me know what is the difference between the single line mode and multi line mode in regular expresions? Thanks, Chidhambaram B (3 Replies)
Discussion started by: chidhu.anu
3 Replies

5. AIX

AIX Single user mode

hi all, Im new to AIX and i want help. My screen shows: Bringing down n/w interfaces: en0 lo0 Single user mode entered from /dev/pts/0 INIT:new run level:S INIT :Single User Mode Password when we enter password it displays SHUTDOWN PROGRAM Even... (0 Replies)
Discussion started by: Vanit
0 Replies

6. AIX

Transferring files from one AIX server to another AIX server in binary mode

Hi, I am a newbie to AIX. We have 2 AIX5.3 servers in our environment, I need to transfer some files in Binary mode from one server to another and some files in ASCII mode from one server to another server. Could you please help me as to how I need to do that? Thanks, Rakesh (4 Replies)
Discussion started by: rakeshc.apps
4 Replies

7. AIX

AIX Boots straight to service mode

Hi, I installed AIX 5.2 on a P5 9110-51A (powerpc). The installation was successful, however, after each reboot it goes to service mode. If I enter SMS menu, select boot device and select "normal mode" everything is ok, the system boots. But if I issue a reboot, it goes back to diagnostics... (6 Replies)
Discussion started by: gsorin
6 Replies

8. IP Networking

tcpdump and promiscuous mode (on Linux and HP-UX)

Hallo, I want to use tcpdump to analyze the NTP traffic on some of my machines. The machines that I want to analyze run HP-UX and linux. To use tcpdump 2 packages are required Libpcap and Tcpdump. I know that tcpdump (libcap?) sets the network interface to promiscuous mode. I have some... (1 Reply)
Discussion started by: one71
1 Replies

9. AIX

Startup AIX in GUI or text mode

Can I know is there anyone know how to statup AIX in GUI and text mode? Thank You..... (2 Replies)
Discussion started by: dwarf007
2 Replies

10. IP Networking

promiscuous mode machines

/* SCO OpenServer 5 */ anyone know an effective way to tell what machines, if any, are running in promiscuous mode?? e0- (1 Reply)
Discussion started by: LowOrderBit
1 Replies
Login or Register to Ask a Question
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)