This file is indexed.

/etc/freeradius/sites-available/coa is in freeradius 2.1.12+dfsg-1.2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# -*- text -*-
######################################################################
#
#  Sample virtual server for receiving a CoA or Disconnect-Request packet.
#

#  Listen on the CoA port.
#
#  This uses the normal set of clients, with the same secret as for
#  authentication and accounting.
#
listen {
	type = coa
	ipaddr = *
	port = 3799
	server = coa
}

server coa {
	#  When a packet is received, it is processed through the
	#  recv-coa section.  This applies to *both* CoA-Request and
	#  Disconnect-Request packets.
	recv-coa {
		#  CoA && Disconnect packets can be proxied in the same
		#  way as authentication or accounting packets.
		#  Just set Proxy-To-Realm, or Home-Server-Pool, and the
		#  packets will be proxied.

		#  Insert your own policies here.
		ok
	}

	#  When a packet is sent, it is processed through the
	#  recv-coa section.  This applies to *both* CoA-Request and
	#  Disconnect-Request packets.
	send-coa {
		#  Sample module.
		ok
	}

	#  You can use pre-proxy and post-proxy sections here, too.
	#  They will be processed for sending && receiving proxy packets.
}