Which is the effective ephemeral port range in Linux 2.6 for this set up?


 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Which is the effective ephemeral port range in Linux 2.6 for this set up?
# 1  
Old 02-17-2015
Which is the effective ephemeral port range in Linux 2.6 for this set up?

In my Linux system ephemeral port range is showing different ranges as follows

$ cat /proc/sys/net/ipv4/ip_local_port_range
32768 61000



cat /etc/sysctl.conf | grep net.ipv4.ip_local_port_range
net.ipv4.ip_local_port_range = 9000 65500

Which will be the effective ephemeral port range in my system?
# 2  
Old 02-17-2015
Assuming that you did not just change the value in /etc/sysctl.conf and have not rebooted, the range in /proc/sys/net/ipv4/ip_local_port_range applies.
This User Gave Thanks to fpmurphy For This Post:
# 3  
Old 02-17-2015
I set parameters in both way given in question . Moreover my startup script /etc/rc.local is taking care parameters of proc file system . So after I reboot what will be the effective range?

Last edited by steephen; 02-17-2015 at 08:59 PM..
# 4  
Old 02-17-2015
Should be the values in /etc/sysctl.conf
# 5  
Old 02-18-2015
sysctl -A | grep net.ipv4.ip_local_port_range

will give effective port range at any moment.

After reboot if we execute sysctl -p /etc/sysctl.conf system update kernel parameter net.ipv4.ip_local_port_range from /etc/sysctrl.conf file
# 6  
Old 02-19-2015
Quote:
Originally Posted by steephen
sysctl -A | grep net.ipv4.ip_local_port_range

will give effective port range at any moment.
Simpler to just use
Code:
cat /proc/sys/net/ipv4/ip_local_port_range

Quote:
After reboot if we execute sysctl -p /etc/sysctl.conf system update kernel parameter net.ipv4.ip_local_port_range from /etc/sysctrl.conf file
Unless you have modified the contents of /etc/sysctl.conf, this command should be unnecessary as the reboot causes /etc/sysctl.conf to be read. Also the default file is /etc/sysctl.conf, so sufficient to use
Code:
sysctl -p

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Cannot subset ranges from another range set

Ca21chr2_C_albicans_SC5314 2159343 2228327 Ca21chr2_C_albicans_SC5314 636587 638608 Ca21chr2_C_albicans_SC5314 5286 50509 Ca21chr2_C_albicans_SC5314 634021 636276 Ca21chr2_C_albicans_SC5314 1886545 1900975 Ca21chr2_C_albicans_SC5314 610758 613544... (9 Replies)
Discussion started by: cryptodice
9 Replies

2. UNIX for Beginners Questions & Answers

Bash script, find the next closed (not in use) port from some port range.

hi, i would like to create a bash script that check which port in my Linux server are closed (not in use) from a specific range, port range (3000-3010). the print output need to be only 1 port, and it will be nice if the output will be saved as a variable or in same file. my code is: ... (2 Replies)
Discussion started by: yossi
2 Replies

3. AIX

Forcing named 9 to use a fixed ephemeral port range

I'll start with I'm not an AIX expert, I inherited a lot of AIX servers to maintain. My problem is on AIX 7.1 TL4 SP4 environments. I'm running named as a DNS forwarder only to internal DNS servers. These AIX servers have a customized UDP ephemeral port range to avoid conflicting with the... (0 Replies)
Discussion started by: seanc
0 Replies

4. Shell Programming and Scripting

Help with sum range of data set together

Input File: 2000 3 1998 2 1997 2 1994 1 1991 1 1989 1 1987 2 1986 2 1985 1 1984 1 . . 10 277256 9 278274 8 282507 7 284837 6 287066 5 292967 (4 Replies)
Discussion started by: perl_beginner
4 Replies

5. UNIX for Dummies Questions & Answers

iptables to block port 25 only to a certain range

I want to limit all *outbound* traffic on eth0 (or all *.*) on port 25 to a specific (allowed) range... I.E. 192.168.1.5 (local ip) tries to connect to 1.2.3.4:25 (outside real world ip) It can proceed because 1.2.3.0/24 is the allowed range Now, 192.168.1.5 (local ip) tries to connect to... (1 Reply)
Discussion started by: holyearth
1 Replies

6. Shell Programming and Scripting

How to set end limit while copying files of a range??

I have files being generated in format A20140326.00........ to A20140326.24............. I need to copy these hourly basis from one location to another. Eg. If i copy from 14 to 19 the hour, I use wildcard as A201403226.1*. Requirement is : I need to copy from 06 hour and wil run the script... (1 Reply)
Discussion started by: Saidul
1 Replies

7. AIX

Allow port range using IPsec?

Hi Guys, Please could you tell me if it is possible to have a single rule/filter to allow a certain port range instead of a separate rule for each port? I'm sure it must be possible but I am unable to find the syntax. Thanks Chris (4 Replies)
Discussion started by: chrisstevens
4 Replies

8. Shell Programming and Scripting

use variable to set the range of a for loop

Hi; For sure there's an easy answer to this one that I am not finding.. I first set a variable, say b1a:] max=5 then I want to use max to set the range for a for loop like so (it should run for i in 1:5) b1a:] for i in {1..$max}; do echo $i; done {1..5} I would like the output... (2 Replies)
Discussion started by: jbr950
2 Replies

9. AIX

TCP/UDP port range for default AIX NFS?

May I know what is the TCP/UCP port range for any default AIX NFS? Based on rpcinfo -p, I got the following output: program vers proto port service 100000 4 udp 111 portmapper 100000 3 udp 111 portmapper 100000 2 udp 111 portmapper 100000 4 ... (4 Replies)
Discussion started by: famasutika
4 Replies

10. Solaris

how to set the variales for serial port

Hi, I am working with Solaris 9 Sun Blade-100.I am doing some changes for serial port and by mistaken I changed the serial port /dev/term/a variables. So I need to make the changes fro /dev/term/a same as /dev/term/b. So please tell me how can I do that ?? (1 Reply)
Discussion started by: smartgupta
1 Replies
Login or Register to Ask a Question