I am trying to connect to RADIUS port in one of my project. The radius port is 1812 opened on RADIUS server. I added this port to ip table (ip natting) using
/sbin/iptables -t nat -A PREROUTING -p udp -s 0/0 -d 172.25.X.X/32 --destination-port 1813 -j REDIRECT --to-ports 58440
After this when I execute my script and do netstat -anp
at that time I am unable to see the port opened on my system. What am I doing wrong here?