are you asking how to change your
ephemeral port range??
if so, the way to do it is with the
/proc/sys/net/ipv4/ip_local_port_range file... here's what mine looks like, for example:
Code:
win32sux@candystore:~$ cat /proc/sys/net/ipv4/ip_local_port_range
32768 61000
to change it just echo the new range into the file, like:
Code:
echo "3389 62000" > /proc/sys/net/ipv4/ip_local_port_range
or make the appropriate adjustment to your
/etc/sysctl.conf file...