3

I have configure freeradius following this tutorial.

But when I run a command

"freeradius -X" 

I got the following error radiusd:

Opening IP addresses and Ports #### listen { type = "auth" ipaddr =

127.0.0.1 port = 18120 Failed binding to auth address 127.0.0.1 port 18120 bound to server inner-tunnel: Address already in use /etc/freeradius/3.0/sites- enabled/inner-tunnel[33]: Error binding to port for 127.0.0.1 port 18120


Community
  • 1
  • 1

2 Answers2

7

The process is already running.To fix this run

netstat -tulp | grep "18120" 

check the PID of process, then run kill -9 (PID that you got) rerun freeradius -X

-1

I had the same problem. i restarted my server and my problem has been solved.

sudo reboot

after that

freeradius -X

Listening on auth address 127.0.0.1 port 18120 bound to server inner-tunnel
Listening on auth address * port 1812 bound to server default
Listening on acct address * port 1813 bound to server default
Listening on auth address :: port 1812 bound to server default
Listening on acct address :: port 1813 bound to server default
Listening on proxy address * port 55738
Listening on proxy address :: port 51220
Sarmad Nazir
  • 21
  • 1
  • 8