On Tue, Mar 11, 2014 at 9:20 AM, Giles Coochey giles@coochey.net wrote:
On 11/03/2014 11:46, Hadi Motamedi wrote:
Dear All Can you please let me know how can I check if a radius server application is present on my centos server ? Thank you
You can check if something called radius, or is listening on the radius
port with:
netstat -tulp | grep "radius"
You must be root for the "p" option of netstat to work.
Here's a one-liner that can run as any user. It looks for _common_ radius port numbers. netstat -tuln | egrep '1(81[234]|64[56])'
http://en.wikipedia.org/wiki/RADIUS#UDP_port_numbers
Typically, the radius package installed for linux systems is "freeradius", you could check whether you have that installed?
rpm -qa | grep "radius"
Or: yum search radius
Both these answers are easily found by a couple of free form google searches...
+1