Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Open ports from source to destination Post 303043063 by UnknownGuy on Friday 17th of January 2020 04:37:17 AM
Old 01-17-2020
Oh no, I am happy with my job, not into hacking. I have access to both hosts, need some command like netstat which will let me know the ports open from source to destination. I need to forward some application logs from source to destination.
 

8 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Byte Rate to/from a source/destination

is there a command in unix/linux that allows you to sample what the historic byte rate is from a local IP to a client IP. (1 Reply)
Discussion started by: cubs0729
1 Replies

2. Shell Programming and Scripting

Count total unique destination for source

Hi, need help how to count unique destination for the source ip. The file is contains 4 number of fields. Example of the file is here src ip dest ip #of flows total bytes 192.168.6.0 88.0.33.2 12 128 192.168.6.0 88.0.33.2 1 168 192.168.6.0 ... (5 Replies)
Discussion started by: new_buddy
5 Replies

3. IP Networking

Selecting interface based on source and destination ip address

Hi all, I have some doubts in selecting the interface to transfer packets and receive the packets. --> Multiple interfaces : -------------------- 1) 0.0.0.0 --------> wild card address. 2) x.x.x.x --------> valid address.(192.168.1.156) 3) ff.ff.ff.ff -------->... (0 Replies)
Discussion started by: vijaypdp2006
0 Replies

4. Shell Programming and Scripting

Move all files from source to destination directory based on the filename

Move all files starting with a specific name to different directory. This shell script program should have three parameters File Name Source Directory Destination Directory User should be able to enter ‘AB_CD*' in file name parameter. In this case all the files starting with AB_CD will... (1 Reply)
Discussion started by: chetancrsp18
1 Replies

5. Linux

rpmbuild, how to specify a different source and destination path for files

I'd like to specify a different build and deployment path for files, by default the same path is used for both build and install, I wasn't able to find a way to make these different. With Solaris pkgadd, one can specify different paths in prototype, so I would assume something like that is possible... (0 Replies)
Discussion started by: tiburblium
0 Replies

6. Solaris

Ftp: SSL_connect error while connecting from source to destination server Solaris 10

Hi Everyone, I am using solaris 10.I am facing a different problem here with tlsftp.I have intalled all steps for tlsftp and able to connect to the destination server from the source server.It worked for some days.But recently when i am connectin it is giving below error.I am... (0 Replies)
Discussion started by: muraliinfy04
0 Replies

7. UNIX for Advanced & Expert Users

Rsync error while running from destination to source

hi All, i have 2 server setup now for Rsync, i configured Rsync on both of the server and it worked well when i did run from source to destination. and while running back from destination to source it produced this error: bash-3.2$ ksh rsync_bravo_db.ksh usa0300uz1247.apps.mc.xerox.com... (0 Replies)
Discussion started by: lovelysethii
0 Replies

8. Shell Programming and Scripting

Count the number of files copied from source to destination location

Hi Guys, how to count number of files successfully copied while coping files from source to destination path ex:10 files from source to target location copying if 8 files copied successfully then echo successfully copied=8 failure=2 files if two files get error to coping files from... (23 Replies)
Discussion started by: sravanreddy
23 Replies
GLBLENDEQUATION(3G)													       GLBLENDEQUATION(3G)

NAME
glBlendEquation - set the blend equation C SPECIFICATION
void glBlendEquation( GLenum mode ) PARAMETERS
mode specifies how source and destination colors are combined. It must be GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MIN, GL_MAX. DESCRIPTION
The blend equation determines how a new pixel (the ``source'' color) is combined with a pixel already in the framebuffer (the ``destina- tion'' color). GL_MIN sets the blend equation so that each component of the result color is the minimum of the corresponding components of the source and destination colors. GL_MAX sets the blend equation so that each component of the result color is the maximum of the corresponding components of the source and destination colors. The remaining blend equations use the source and destination blend factors specified by glBlendFunc. See glBlendFunc for a description of the various blend factors. In the equations that follow, source and destination color components are referred to as (Rs, Gs, Bs, As ) and (Rd, Gd, Bd, Ad ), respec- tively. The result color is referred to as (Rr, Gr, Br, Ar ). The source and destination blend factors are denoted (sR, sG, sB, sA ) and (dR, dG, dB, dA ), respectively. For these equations all color components are understood to have values in the range [0, 1]. GL_FUNC_ADD sets the blend equation so that the source and destination data are added. Each component of the source color is multiplied by the corresponding source factor, then each component of the destination color is multiplied by the corresponding destination factor. The result is the componentwise sum of the two products, clamped to the range [0, 1]. Rr = min (1, Rs sR + Rd dR ) Gr = min (1, Gs sG + Gd dG ) Br = min (1, Bs sB + Bd dB ) Ar = min (1, As sA + Ad dA ) GL_FUNC_SUBTRACT Is like GL_FUNC_ADD except the product of the destination factor and the destination color is componentwise subtracted from the product of the source factor and the source color. The result is clamped to the range [0, 1]. Rr = max (0 , Rs sR - Rd dR ) Gr = max (0 , Gs sG - Gd dG ) Br = max (0 , Bs sB - Bd dB ) Ar = max (0 , As sA - Ad dA ) GL_FUNC_REVERSE_SUBTRACT Is like GL_FUNC_ADD except the product of the source factor and the source color is componentwise subtracted from the product of the destination factor and the destination color. The result is clamped to the range [0, 1]. Rr = max (0 , Rd dR - Rs sR ) Gr = max (0 , Gd dG - Gs sG ) Br = max (0 , Bd dB - Bs sB ) Ar = max (0 , Ad dA - As sA ) The GL_MIN and GL_MAX equations are useful for applications that analyze image data (image thresholding against a constant color, for example). The GL_FUNC_ADD equation is useful for antialiasing and trans- parency, among other things. Initially, the blend equation is set to GL_FUNC_ADD. NOTES
glBlendEquation is part of the GL_ARB_imaging subset. glBlendEquation is present only if GL_ARB_imaging is returned when glGetString is called with GL_EXTENSIONS as its argument. The GL_MIN, and GL_MAX equations do not use the source or destination factors, only the source and destination colors. ERRORS
GL_INVALID_ENUM is generated if mode is not one of GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MAX, or GL_MIN. GL_INVALID_OPERATION is generated if glBlendEquation is executed between the execution of glBegin and the corresponding execution of glEnd. ASSOCIATED GETS
glGet with an argument of GL_BLEND_EQUATION SEE ALSO
glGetString, glBlendColor, glBlendFunc GLBLENDEQUATION(3G)
All times are GMT -4. The time now is 05:44 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy