Sponsored Content
Operating Systems Solaris Solaris Question - How to find outgoing traffic on UDP ports Post 302579790 by sudharma on Tuesday 6th of December 2011 02:54:19 PM
Old 12-06-2011
Thank you much!! when i run this command i get the output as below what does this mean?? when i great ps -ef |grep 1985 i don't see any port number open.. what is 1985 here and i want to see number of outgoing packets on these UDP ports. . .any suggestions ...

172.xx.xx.252 -> 224.0.0.2 UDP D=1985 S=1985 LEN=28
172.xx.xx.253 -> 224.0.0.2 UDP D=1985 S=1985 LEN=28
172.xx.xx.252 -> 224.0.0.2 UDP D=1985 S=1985 LEN=28
172.xx.xx.253 -> 224.0.0.2 UDP D=1985 S=1985 LEN=28
172.xx.xx.252 -> 224.0.0.2 UDP D=1985 S=1985 LEN=28
172.xx.xx.253 -> 224.0.0.2 UDP D=1985 S=1985 LEN=28
172.xx.xx.252 -> 224.0.0.2 UDP D=1985 S=1985 LEN=28
172.xx.xx.253 -> 224.0.0.2 UDP D=1985 S=1985 LEN=28


Thank you again!!!
 

8 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

check inbound traffic on ports

Hello, I'm new to the forum and would like to know how to check inbound traffic on various port numbers. I would also like to know how to open and close various ports on a unix box running solaris 8. Thanks in advance. sunoracle (1 Reply)
Discussion started by: sunoracle
1 Replies

2. IP Networking

check inbound traffic on ports

Hello, I'm new to the forum and would like to know how to check inbound traffic on various port numbers. I would also like to know how to open and close various ports on a unix box running solaris 8. Thanks in advance. sunoracle (2 Replies)
Discussion started by: sunoracle
2 Replies

3. UNIX for Dummies Questions & Answers

TCP/UDP Ports

Just starting to work with unix, wondering if there is any good on-line documentation explaining TCP/UDP ports, how to use them, etc... Thanks.... (1 Reply)
Discussion started by: eugene_mayo
1 Replies

4. IP Networking

TCP/UDP Ports

Just wondering if anyone knows of any good on-line documentation on TCP/UDP Ports. Basically i want to know how to check if they are in use, learn how to close them, etc... Thanks... (5 Replies)
Discussion started by: eugene_mayo
5 Replies

5. UNIX for Dummies Questions & Answers

Need help for configuring outgoing mail in Solaris 9

G'day, I've a solaris 9 box that I want to configure so that users can send out mails to internet. How can I do it? Can someone pls list me the steps or direct me to a detailed website. Thanks in advance. (1 Reply)
Discussion started by: Albert J.
1 Replies

6. Linux

how I can find size of incoming or outgoing data

Hi, I'm using SLES10, I want to know the user size of the data that is downloaded or uploaded the data who connects to the server. In other words, a user utilization of my server in terms of size. Thanks, Kris (1 Reply)
Discussion started by: krisdasword
1 Replies

7. Solaris

Blocking outgoing connection to ports/host in solaris

Hi, I want to block all outgoing connection ( the IMAP ) to my exchnage . I have to do it in my solaris server; from solaris host no outgoing connection can be made to the imap server. Please help me to configure that. I am new in solaris. Kind regards, Akhtar (2 Replies)
Discussion started by: akhtarbd
2 Replies

8. Solaris

Using netstats (differentiate incoming vs outgoing traffic)

Hi all, Sorry for the gullible question, are we able to different incoming / outgoing traffic using netstats ? It seems like the local traffic is always on the left, and the remote is beside it. but it doesn't state the traffic direction. or is it that if I have - a LISTEN entry (e.g.... (0 Replies)
Discussion started by: javanoob
0 Replies
asn1_read_value(3)						     libtasn1							asn1_read_value(3)

NAME
asn1_read_value - API function SYNOPSIS
#include <libtasn1.h> int asn1_read_value(asn1_node root, const char * name, void * ivalue, int * len); ARGUMENTS
asn1_node root pointer to a structure. const char * name the name of the element inside a structure that you want to read. void * ivalue vector that will contain the element's content, must be a pointer to memory cells already allocated. int * len number of bytes of *value: value[0]..value[len-1]. Initialy holds the sizeof value. DESCRIPTION
Returns the value of one element inside a structure. If an element is OPTIONAL and the function "read_value" returns ASN1_ELEMENT_NOT_FOUND, it means that this element wasn't present in the der encoding that created the structure. The first element of a SEQUENCE_OF or SET_OF is named "?1". The second one "?2" and so on. INTEGER
VALUE will contain a two's complement form integer. integer=-1 -> value[0]=0xFF , len=1. integer=1 -> value[0]=0x01 , len=1. ENUMERATED
As INTEGER (but only with not negative numbers). BOOLEAN
VALUE will be the null terminated string "TRUE" or "FALSE" and LEN=5 or LEN=6. OBJECT IDENTIFIER
VALUE will be a null terminated string with each number separated by a dot (i.e. "1.2.3.543.1"). LEN = strlen(VALUE)+1 UTCTIME
VALUE will be a null terminated string in one of these formats: "YYMMDDhhmmss+hh'mm'" or "YYMMDDhhmmss-hh'mm'". LEN=strlen(VALUE)+1. GENERALIZEDTIME
VALUE will be a null terminated string in the same format used to set the value. OCTET STRING
VALUE will contain the octet string and LEN will be the number of octets. GENERALSTRING
VALUE will contain the generalstring and LEN will be the number of octets. BIT STRING
VALUE will contain the bit string organized by bytes and LEN will be the number of bits. CHOICE
If NAME indicates a choice type, VALUE will specify the alternative selected. ANY
If NAME indicates an any type, VALUE will indicate the DER encoding of the structure actually used. RETURNS
ASN1_SUCCESS if value is returned, ASN1_ELEMENT_NOT_FOUND if name is not a valid element, ASN1_VALUE_NOT_FOUND if there isn't any value for the element selected, and ASN1_MEM_ERROR if The value vector isn't big enough to store the result, and in this case len will contain the number of bytes needed. COPYRIGHT
Copyright (C) 2006-2013 Free Software Foundation, Inc.. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. SEE ALSO
The full documentation for libtasn1 is maintained as a Texinfo manual. If the info and libtasn1 programs are properly installed at your site, the command info libtasn1 should give you access to the complete manual. libtasn1 3.3 asn1_read_value(3)
All times are GMT -4. The time now is 10:02 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy