define IP protocols on network


 
Thread Tools Search this Thread
Special Forums IP Networking define IP protocols on network
# 1  
Old 04-09-2006
define IP protocols on network

what method would I use to determine which IP protocols network
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. AIX

How to disable insecure protocols?

Hello all, planning to secure AIX sever by disabling insecure protocols/cipher suites; got the below requirements from secuirty team. 1.configure the server to disable support for DES and IDEA cipher suites 2.disable insecure TLS/SSL protocol support Configure the server to... (4 Replies)
Discussion started by: Kumar7997
4 Replies

2. IP Networking

what are L2,L3 protocols.

hello forum members, What are L2 and L3 Protocols and can u brief me a bit little ie to gain a basic knowledge. Thanks & Regards Rajkumar g (1 Reply)
Discussion started by: rajkumar_g
1 Replies

3. Cybersecurity

Netfilter conntracking for P2P protocols (edonkey, bittorent...)

Hi everyone, I would like to allow multi users to access P2P networks, so I wonder if there's a way to tracking these kind of protocols with netfilter, and also compatibility with nat, like the module conntrack_ftp seems to do with the FTP protocol. Thanks guys. (0 Replies)
Discussion started by: nekkro-kvlt
0 Replies

4. AIX

hacmp network adapter re-define

I have an LPAR in a P5 machine which has been setup in an HACMP cluster. The person who set it up allocated the wrong network adapter (en) to the persistent network. For the life of me I cannot find where I can re-assign this adapter. Anyone able to help me as I am tearing my hair out and do not... (1 Reply)
Discussion started by: johnf
1 Replies

5. UNIX for Dummies Questions & Answers

Protocols

What protocol would be the best to use on a network with nt and unix servers and windows me clients? Can SMB protocol be used to implement large networks? What protocol can be used to make remote file systems appear as if they are local? Quite a few questions I know, any help would be... (1 Reply)
Discussion started by: jnash
1 Replies

6. UNIX for Dummies Questions & Answers

network protocols

Which network protocol is used by UNIX systems to make remote file systems appear as if they are local? (2 Replies)
Discussion started by: OLLERTON
2 Replies
Login or Register to Ask a Question
endprotoent(3)						     Library Functions Manual						    endprotoent(3)

NAME
endprotoent, endprotoent_r - Close the network protocols database file LIBRARY
Standard C Library (libc.so, libc.a) SYNOPSIS
#include <netdb.h> void endprotoent(void); [Tru64 UNIX] The following function is supported in order to maintain backward compatibility with previous versions of the operating sys- tem. void endprotoent_r( struct protoent_data *proto_data); STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: endprotoent(): XNS4.0 Refer to the standards(5) reference page for more information about industry standards and associated tags. PARAMETERS
[Tru64 UNIX] For endprotoent_r() only, this is data for the protocol database. DESCRIPTION
The endprotoent() function closes either the local /etc/protocols file or the NIS distributed protocols file, previously opened with the getprotoent(), getprotobyname(), or getprotobynumber() function. To determine which file or files to search, and in which order, the system uses the switches in the /etc/svc.conf file. If the most recent setprotent() function has been performed with a nonzero parameter, the endprotoent() function will not close the network protocols database file. In this instance, the network protocols database file is not closed until a call to the exit() function. A sec- ond setprotent() call must be issued with a parameter equal to 0 (zero) in order to ensure that a following endprotoent() function will succeed. NOTES
[Tru64 UNIX] The endprotoent_r() function is the reentrant version of the endprotoent() function. It is supported in order to maintain backward compatibility with previous versions of the operating system. The netdb.h header file defines the protoent_data structure. ERRORS
Current industry standards do not define error values for the endprotoent() function. FILES
Contains protocol names. The database service selection configuration file. RELATED INFORMATION
Functions: getprotoent(3), getprotobynumber(3), getprotobyname(3), setprotoent(3). Files: protocols(4), svc.conf(4) Networks: nis_intro(7) Standards: standards(5) delim off endprotoent(3)