[Freeswitch-svn] [commit] r5285 - freeswitch/branches/cparker/conf

Freeswitch SVN cparker at freeswitch.org
Thu Jun 7 17:14:57 EDT 2007


Author: cparker
Date: Thu Jun  7 17:14:57 2007
New Revision: 5285

Modified:
   freeswitch/branches/cparker/conf/mod_radius_cdr.conf.xml

Log:
Updated example config file to use IPs instead of hostnames

Modified: freeswitch/branches/cparker/conf/mod_radius_cdr.conf.xml
==============================================================================
--- freeswitch/branches/cparker/conf/mod_radius_cdr.conf.xml	(original)
+++ freeswitch/branches/cparker/conf/mod_radius_cdr.conf.xml	Thu Jun  7 17:14:57 2007
@@ -8,9 +8,10 @@
 		<param name="radius_timeout" value="5"/>
 		<!-- accounting servers, up to 8 allowed -->
 		<!-- value is "host:port:secret", port is optional -->
-		<param name="acct_server" value="localhost:1813:testing123"/>
-		<param name="acct_server" value="otherhost:1813:testing123"/>
-		<param name="acct_server" value="thirdhost:1813:testing123"/>
+		<!-- use IP ADDRESSES, not hostnames -->
+		<param name="acct_server" value="127.0.0.1:1813:testing123"/>
+		<param name="acct_server" value="10.0.0.254:1813:testing123"/>
+		<param name="acct_server" value="192.168.10.10:1813:testing123"/>
 	</settings>
 </configuration>
 



More information about the Freeswitch-svn mailing list