Sponsored Content
Special Forums IP Networking Does my provider limit my internet access or somesites access? Post 302520137 by frank_rizzo on Friday 6th of May 2011 12:28:25 AM
Old 05-06-2011
sounds like you need to call your ISP to verify.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

internet access

I've configured my TCP/IP to have the right protocols to access the internet such as TPC/IP, subnet mask, gateway and dns server but still Im not able to ping anything to the internet. Anybody who has some few good words for me? I need help. Thanks. (2 Replies)
Discussion started by: nseal101
2 Replies

2. UNIX for Dummies Questions & Answers

Internet access

Hi everybody, I'd like create a connection (by modem) for my unix workstation. I just have the RS232 port and my modem, no lan connection, and I want to surf the net. How can I setup it? Thanks in advance, Mauro (1 Reply)
Discussion started by: Mauro
1 Replies

3. SCO

internet access

My SCO box has lost connection to the internet. It sites behind a fire wall and is connected to a local network. What should I check for. (2 Replies)
Discussion started by: fruiz
2 Replies

4. Solaris

Cannot access internet

Hi Friends,:b: This is venkatesh, i have Intel Dual core PC and installed Solaris 10. I have a problem that i cannot access internet in my PC i don't know either the drivers installed or not. I manually assign ip 192.168.1.7 and if i ping to this it is alive and if i ping for 192.168.1.1 for the... (4 Replies)
Discussion started by: 1409.venkatesh
4 Replies

5. Solaris

cannot access to internet , help

hi experts i have a sun Enterprise 220 R server with solaris 10 and patches , i configured network card with ip addresses that have access to Internet but i can't be connected :confused: for same informations : root@E220R # ifconfig -a lo0:... (5 Replies)
Discussion started by: lid-j-one
5 Replies

6. UNIX for Dummies Questions & Answers

Can not access internet?

Hi everybody. I've setup SunSolaris 10 on VirtualBox, but when I start Sun, I can connect to the Internet, when I open terminal and type command for list device ethernet: #ifconfig -a just only see loopback lo0 Can help me solve this problem? Thank you very much, ken (0 Replies)
Discussion started by: kenjingo
0 Replies

7. AIX

Limit user access

We have gotten an application that will read and display logs in a report format. The application need a user name and password to access the AIX servers where the logs reside. My problem is the logs are in a few different file systems on the server. Is there any way to lock the user to only the... (1 Reply)
Discussion started by: daveisme
1 Replies

8. UNIX and Linux Applications

pnp4nagios limit access

I have nagios contacts set up, and these successfully limit access to view hosts and services in the nagios web UI. But pnp4nagios gives access to all graphs (by editing the hostname and service name in the URL) - it does not respect the nagios-defined access controls. (0 Replies)
Discussion started by: ahmad.zuhd
0 Replies

9. Homework & Coursework Questions

Limit simultaneous file access

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: So my problem is: 4990 of 5000 users should be able to access a file. How can this be accomplished. 2.... (1 Reply)
Discussion started by: protiss
1 Replies

10. Cybersecurity

Limit access in Ubuntu

can we use semantec or any kind of software in ubuntu/linux to limit access of a user to edit a specific file? example::: a. will not play media player or use usb. we will edit blacklist.conf to do this. however user should still be able to do apt-get install, shutdown, edit other files etc.... (1 Reply)
Discussion started by: lhareigh890
1 Replies
t_getinfo(3)						     Library Functions Manual						      t_getinfo(3)

NAME
t_getinfo() - get protocol-specific service information SYNOPSIS
DESCRIPTION
The function returns the current characteristics of the underlying transport protocol associated with file descriptor fd. The info struc- ture is used to return the same information returned by This function enables a transport user to access this information during any phase of communication. This argument points to a structure which contains the following members: t_scalar_t addr; /* max size of the transport protocol address */ t_scalar_t options; /* max number of bytes of protocol-specific options */ t_scalar_t tsdu; /* max size of a transport service data unit,TSDU */ t_scalar_t etsdu; /* max size of expedited transport service data unit,ETSDU */ t_scalar_t connect; /* max data allowed on connection establishment functions */ t_scalar_t discon; /* max data allowed on t_snddis and t_rcvdis functions */ t_scalar_t servtype; /* service type supported by the transport provider */ t_scalar_t flags; /* other info about the transport provider */ The values of the fields have the following meanings: addr A value greater than or equal to zero indicates the maximum size of a transport protocol address. A value of -1 specifies that there is no limit on the address size. A value of -2 specifies that the transport provider does not provide user access to transport protocol addresses. options A value greater than or equal to zero indicates the maximum number of bytes of protocol-specific options supported by the provider. A value of -1 specifies that there is no limit on the option size. A value of -2 specifies that the transport provider does not support user-settable options. tsdu A value greater than zero specifies the maximum size of a transport service data unit (TSDU) A value of zero specifies that the transport provider does not support the concept of TSDU although it does support the sending of a data stream with no logical boundaries preserved across a connection. A value of -1 specifies that there is no limit on the size of a TSDU. A value of -2 specifies that the transfer of normal data is not supported by the transport provider. etsdu A value greater than zero specifies the maximum size of an expedited transport service data unit (ETSDU). A value of zero specifies that the transport provider does not support the concept of ETSDU although it does support the sending of an expedited data stream with no logical boundaries preserved across a connection. A value of -1 specifies that there is no limit on the size of an ETSDU. A value of -2 specifies that the transfer of expedited data is not supported by the transport provider. connect A value greater than or equal to zero specifies the maximum amount of data that may be associated with the connection establishment functions and A value of -1 specifies that there is no limit on the amount of data sent during connection establishment. A value of -2 specifies that the transport provider does not allow data to be sent with connection establishment func- tions. discon A value greater than or equal to zero specifies the maximum amount of data that may be associated with the and functions. A value of -1 specifies that there is no limit on the amount of data sent with these abortive release functions. A value of -2 specifies that the transport provider does not allow data to be sent with the abortive release functions. servtype This field specifies the service type supported by the transport provider, as described below. flags This is a bit field used to specify other information about the transport provider. If the bit is set in flags, this indicates that the underlying transport provider supports the sending of zero-length TSDUs. See Appendix A, "ISO Trans- port Protocol Information" of the manual for a discussion of the separate issue of zero-length fragments within a TSDU. Note: HP currently does not support flag within the module. If a transport user is concerned with protocol independence, the above sizes may be accessed to determine how large the buffers must be to hold each piece of information. Alternatively, the function may be used to allocate these buffers. An error will result if a transport user exceeds the allowed data size on any function. The value of each field may change as a result of option negotiation, and enables a user to retrieve the current characteristics of the underlying transport protocol. The servtype field of info specifies one of the following values on return: The transport provider supports a connection-mode service but does not support the optional orderly release facility. The transport provider supports a connection-mode service with the optional orderly release facility. The transport provider supports a connectionless-mode service. For this service type, will return -2 for etsdu, connect, and discon. Valid States All - apart from Fork Safety is not fork-safe. RETURN VALUE
Upon successful completion, a value of 0 is returned. Otherwise, a value of -1 is returned, and is set to indicate the error. ERRORS
On failure, is set to the following [TBADF] The specified identifier does not refer to a transport endpoint. [TSYSERR] A system error has occurred during execution of this function. [TPROTO] (XTI only) This error indicates that a communication problem has been detected between XTI and the transport provider for which there is no suitable XTI ( SEE ALSO
t_alloc(3), t_open(3), thread_safety(5). STANDARDS CONFORMANCE
t_getinfo(3)
All times are GMT -4. The time now is 01:55 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy