Source port on AIX for NAS is same?


 
Thread Tools Search this Thread
Operating Systems AIX Source port on AIX for NAS is same?
# 1  
Old 05-18-2018
Source port on AIX for NAS is same?

In AIX servers, for mounting NAS mount points only 1021 1022 1023 are used as source ports on more than 300 servers while destination port on storage end is 2049, is there any settings on servers where these ports are defined for mounting NAS mount points? Any body faced this scenario?

Thanks
# 2  
Old 05-18-2018
Do you mean NAS? Or did you mean NFS?
This User Gave Thanks to hicksd8 For This Post:
# 3  
Old 05-20-2018
Yes, NAS
# 4  
Old 05-20-2018
Hmmmm....ok......can you elaborate on why you are asking this question please.

Are you trying to make a NAS accessible from a large number of servers concurrently? What problems are you facing?

Certainly mountd and lockd can be configured to use a different port but now I'm not sure that is relevant to your question.

IBM How to force mountd/lockd to use a specific port. - United States
# 5  
Old 05-21-2018
"services" is only about the destination port.
Tweaking the source port range and others But this is Linux.
In AIX might be hard coded. Some parameters are changeable with the no command.
A list of these:
Code:
no -a

This post (in this forum!) suggests the nfso command.

Last edited by MadeInGermany; 05-21-2018 at 03:54 AM..
# 6  
Old 05-29-2018
In AIX system, we face NAS issue on system.

Working:-
Code:
root]df -gt
/ 
/boot
/var
10.208.108.9:/data /data <- NAS  mount point


Not working:-
Code:
/
/boot
/var
NFS is trying to mount using 10.208.108.9

in AIX , if we type "nfso -a"
we see some parameters, in which there is one which states that
Code:
nfs_use_reserved ports= 1 (use ports less than 1024)
nfs_use_reserved ports= 0(use ports more than 1024)

however keeping "0" value here does resolve the NAS issue of mounting but it is not safe as per SCD to allow NAS coomunication to happen between aix client and storage on random ports.

but when we keep 1 we face the issue as it only takes 1021 1022 1023 ports as source port for mounting.

so my question is , can we specified that only 3000 to 3020 ports be used for NAS mount points?

Thanks
# 7  
Old 05-30-2018
According to this link you can add a line to /etc/environment
Code:
NFS_PORT_RANGE=udp[4000-5000]:tcp[7000-8000]

that will be inherited in a new login shell.
(I am not sure how/if this will spread to a "NFS mount at boot".)
I do not understand why you bother with the source ports; it does not matter at all, and usually a firewall does not have rules about source ports.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. 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

2. AIX

XVFB Source package for AIX

Please send me link for XVFB Source package for AIX (3 Replies)
Discussion started by: prathap.g
3 Replies

3. Programming

Changing source port number of a TCP client packet

Hi all, I need to change the source port number of an outgoing TCP packet. First I have to bind the socket to a particular port(suppose 9001) but when I send the TCP packet I want to change the source port number lets say to 9002 still letting the socket to be bound to the same old port (9001).... (0 Replies)
Discussion started by: anuragrai134
0 Replies

4. 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

5. AIX

Compiling samba from source in AIX 5.3

Hello all. I have never had any issues like this when compiling applications from source. When I try to compile samba-3.5.0pre2, configure runs with no issues, but when the time comes to make, this happens: make: make 1254-025 There must be an existing description file or specify a target. ... (4 Replies)
Discussion started by: raidzero
4 Replies

6. AIX

AIX(VIO/LPAR) with Free NAS ISCSI solution

Hi, I was looking on Google for AIX-VIO/LPAR with ISCSI solution and found following really nice tutorial about how to setup ISCSI with free NAS. 1) Build Your Own Open Source NAS Device Using FreeNAS | Train Signal Training - Free Computer Training Videos 2) Build Your Own Open Source... (4 Replies)
Discussion started by: kabir
4 Replies

7. UNIX for Advanced & Expert Users

how to port a package to huge source code having its own make and compilers

In general for intalling a package like we do ./configure, make , make install But if we want to integrate the package with a huge source base what are the things to be taken care could some one have a light on purpose of ./configure , make and make install along with above question. I... (1 Reply)
Discussion started by: Gopi Krishna P
1 Replies

8. Programming

Source code for serial port

Hi, I am working with sun Solaris 5.9 and in my application,I have to communicate with Serial port(i.e /dev/term/a). So I need source code to by which I can do the following things-- 1)check the port is available or not.If it dosn't find the port,it should throw the error message(i.e. port not... (0 Replies)
Discussion started by: smartgupta
0 Replies

9. 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
Login or Register to Ask a Question