Sponsored Content
Full Discussion: Help with AIX port limit
Top Forums UNIX for Advanced & Expert Users Help with AIX port limit Post 302894067 by Lucas_0418 on Sunday 23rd of March 2014 10:46:27 PM
Old 03-23-2014
[solved]Help with AIX port limit

Hi guys,
I have a problem need to solve urgently, please help me, any suggestion will be great.
When my workmates installed a control-m agent in an AIX 6.1 OS, they got an error below:
Port exceeded maximum allowed value. No available port found in the specified range up to 65535.
I considered this problem due to user's privilege or the admin limited the port range that a normal user can use. The setup run well in every other AIX 6.1 but this one.
But I don't know where the limit could be set in AIX, in the ulimit I can't find any.
Someone has a experience like this ? Thank you all.

Finally find it's because of /etc/hosts, not a problem, just the BMC's software doesn't be compatible with some content of the /etc/hosts.

Last edited by Lucas_0418; 03-24-2014 at 11:09 PM..
 

10 More Discussions You Might Find Interesting

1. AIX

Is the Length of User ID for AIX Limit to 8 Characters?

Hi, I'm using AIX version 5.3 currently. I'm trying to create a user id, e.g. andyleong, which the system prompted the length is too long. 1. I would like to know is that the length of user id is limited to maximum 8 characters for AIX. 2. Is it apply to all versions of AIX? If no... (2 Replies)
Discussion started by: meihua_t
2 Replies

2. AIX

How to open a port in AIX

Hi Guys, i am trying to open a port in AIX. but i am not able to get the command for this. AIX is not having the iptables file present. So please any body can tell me how to open a port in AIX... Thanks sanju (2 Replies)
Discussion started by: sanju_d1231
2 Replies

3. AIX

How to display IPC limit on AIX?

Such as how to display these: number of message queue IDs : 4,096 bytes per message : 8,192 bytes per message queue : 65,536 messages per message queue : 8,192 (4 Replies)
Discussion started by: rainbow_bean
4 Replies

4. Shell Programming and Scripting

Awk limitations in AIX 5.2 - 399 byte limit!

AIX version 5.2 has an arbitrary limit of 399 on the length of regular expressions and literal strings in an Awk program. Apart from splitting down the string into multiple strings is there any way around this annoyance? I have a search string that ends up way way too long and blows out... (4 Replies)
Discussion started by: Peejay
4 Replies

5. AIX

Serial port in AIX

Hi, How can i configure my modem in AIX thru serial port (sa0-->tty0) I have two port serial card configured as sa0 I created tty1 which port is tty0 and which port is tty1 how can i know?? (1 Reply)
Discussion started by: pchangba
1 Replies

6. AIX

Who's using my port in AIX

Hello Gurus, I was trying to find who's using my port and got below answer from a IBM website. But the problem with the below answer is I need a root to run the rmsock, is there any other alternative to find out who is using my port with out a root access?? 1. netstat -Aan | grep <port... (1 Reply)
Discussion started by: tenderfoot
1 Replies

7. AIX

Limit a user on AIX

Hello, Sorry for my poor English. I have to reduce rights for a user on AIX system so that: When he does , he find in output, only filesystems on which he has permissions .He can't do to change user. Very thanks for helping. (2 Replies)
Discussion started by: edosseh
2 Replies

8. UNIX for Dummies Questions & Answers

Iptables, port forwarding, 64k connection limit?

I am having an issue with iptables. My server is a RHEL6 64bit system. In my application I have a large number of connected clients ~100k to a particular service. The application works fine when iptables is off, 100k clients are able to connect. However, when I turn iptables on and add a... (1 Reply)
Discussion started by: jtipp3tt
1 Replies

9. AIX

Limit directory Size in AIX

Hello I have a disk mounted on my AIX server and inside the disk, I want to create 3 directories with max size limit, so that the directories can be limited to pre-defined size. Eg: My total disk size is 350 GB and I want to limit dir1 to max of 100 GB, dir 2 to 75 GB and dir 3 to 60 GB and... (3 Replies)
Discussion started by: karumudi7
3 Replies

10. UNIX for Advanced & Expert Users

How to release port on AIX?

Hello all, I need your help with any command to release a port on AIX. Thanks for all. (5 Replies)
Discussion started by: Mcipamo
5 Replies
snmpa_network_interface_filter(3erl)			     Erlang Module Definition			      snmpa_network_interface_filter(3erl)

NAME
snmpa_network_interface_filter - Behaviour module for the SNMP agent network-interface filter. DESCRIPTION
This module defines the behaviour of the agent network interface filter. A snmpa_network_interface_filter compliant module must export the following functions: * accept_recv/2 * accept_send/2 * accept_recv_pdu/3 * accept_send_pdu/2 The semantics of them and their exact signatures are explained below. The purpose of the network interface filter is to allow for filtering of messages (accept or reject) receive and send. This is done on two levels: * The first level is at the UDP entry / exit point, i.e. immediately after the receipt of the message, before any message processing is done (accept_recv) and immediately before sending the message, after all message processing is done (accept_send). * The second level is at the MPD entry / exit point, i.e. immediately after the basic message processing (accept_recv_pdu) / immediately before the basic message processing (accept_send_pdu). Note that the network interface filter is something which is used by the network interface implementation provided by the application ( snmpa_net_if ). The default filter accepts all messages. A network interface filter can e.g. be used during testing or for load regulation. If the intended use is load regulation, see also req_limit and the function register_notification_filter . DATA TYPES
port() = integer() > 0 pdu_type() = 'get-request' | 'get-next-request' | 'get-response' | 'set-request' | trap | 'get-bulk-request' | 'inform-request' | report EXPORTS
accept_recv(Ip, Port) -> boolean() Types Ip = ip_address() Port = port() Called at the reception of a message (before any processing has been done). For the message to be discarded, the function must return false . accept_send(Ip, Port) -> boolean() Types Ip = ip_address() Port = port() Called before the sending of a message (after all processing has been done). For the message to be discarded, the function must return false . accept_recv_pdu(Ip, Port, PduType) -> boolean() Types Ip = ip_address() Port = port() PduType = pdu_type() Called after the basic message processing (MPD) has been done, but before the pdu is handed over to the master-agent for primary processing. For the pdu to be discarded, the function must return false . accept_send_pdu(Targets, PduType) -> Reply Types Targets = targets() targets() = [target()] target() = {ip_address(), port()} PduType = pdu_type() > 0 Reply = boolean() | NewTargets NewTargets = targets() Called before the basic message processing (MPD) is done, when a pdu has been received from the master-agent. For the message to be discarded all together, the function must return false . Note that it is possible for this function to filter out targets (but not add its own) by returning an updated Targets list ( New- Targets ). Ericsson AB snmp 4.19 snmpa_network_interface_filter(3erl)
All times are GMT -4. The time now is 03:37 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy