Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

rlm_ippool_tool(8) [centos man page]

RLM_IPPOOL_TOOL(8)					      System Manager's Manual						RLM_IPPOOL_TOOL(8)

NAME
rlm_ippool_tool - dump the contents of the FreeRadius ippool database files SYNOPSIS
If an ipaddress is specified then that address is used to limit the actions or output. rlm_ippool_tool [-a] [-c] [-o] [-v] session-db index-db [ipaddress] Mark the entry nasIP/nasPort as having ipaddress rlm_ippool_tool -n session-db index-db ipaddress nasIP nasPort Update old format database to new. rlm_ippool_tool -u session-db new-session-db DESCRIPTION
rlm_ippool_tool dumps the contents of the FreeRADIUS ippool databases for analyses or for removal of active (stuck?) entries. Or with the -n argument adds a usage entry to the FreeRADIUS ippool databases. OPTIONS
-a Print all active entries. -c Report number of active entries. -r Remove active entries. -v Verbose report of all entries. -o Assume old database format (nas/port pair, not md5 output). -n Mark the entry nasIP/nasPort as having ipaddress. -u Update old format database to new. EXAMPLES
Given the syntax in the FreeRadius radiusd.conf: ippool myippool { range-start = 192.0.2.0 range-stop = 192.0.2.255 [...] session-db = ${raddbdir}/ip-pool.db ip-index = ${raddbdir}/ip-index.db } To see the number of active entries in this pool, use: $ rlm_ippool_tool -c ip-pool.db ip-index.db 13 To see all active entries in this pool, use: $ rlm_ippool_tool -a ip-pool.db ip-index.db 192.0.2.5 192.0.2.82 192.0.2.244 192.0.2.57 192.0.2.120 192.0.2.27 [...] To see all information about the active entries in the use, use: $ rlm_ippool_tool -av ip-pool.db ip-index.db NAS:172.16.1.1 port:0x2e8 - ipaddr:192.0.2.5 active:1 cli:0 num:1 NAS:172.16.1.1 port:0x17c - ipaddr:192.0.2.82 active:1 cli:0 num:1 NAS:172.16.1.1 port:0x106 - ipaddr:192.0.2.244 active:1 cli:0 num:1 NAS:172.16.1.1 port:0x157 - ipaddr:192.0.2.57 active:1 cli:0 num:1 NAS:172.16.1.1 port:0x2d8 - ipaddr:192.0.2.120 active:1 cli:0 num:1 NAS:172.16.1.1 port:0x162 - ipaddr:192.0.2.27 active:1 cli:0 num:1 [...] To see only information of one entry, use: $ rlm_ippool_tool -v ip-pool.db ip-index.db 192.0.2.1 NAS:172.16.1.1 port:0x90 - ipaddr:192.0.2.1 active:0 cli:0 num:0 To add an IP address usage entry, use: $ rlm_ippool_tool -n ip-pool.db ip-index.db 192.0.0.1 172.16.1.1 0x90 rlm_ippool_tool: Allocating ip to nas/port: 172.16.1.1/144 rlm_ippool_tool: num: 1 rlm_ippool_tool: Allocated ip 192.0.2.1 to client on nas 172.16.1.1,port 144 SEE ALSO
radiusd(8) AUTHORS
Currently part of the FreeRADIUS Project (http://www.freeradius.org) Originally by Edwin Groothuis, edwin@mavetju.org (http://www.mavetju.org) Mailing list details are at http://www.freeradius.org/ RLM_IPPOOL_TOOL(8)

Check Out this Related Man Page

IPPOOL(8)						      System Manager's Manual							 IPPOOL(8)

NAME
ippool - user interface to the IPFilter pools SYNOPSIS
ippool -a [-dnv] [-m <name>] [-o <role>] -i <ipaddr>[/<netmask>] ippool -A [-dnv] [-m <name>] [-o <role>] [-S <seed>] [-t <type>] ippool -f <file> [-dnuv] ippool -F [-dv] [-o <role>] [-t <type>] ippool -l [-dv] [-m <name>] [-t <type>] ippool -r [-dnv] [-m <name>] [-o <role>] -i <ipaddr>[/<netmask>] ippool -R [-dnv] [-m <name>] [-o <role>] [-t <type>] ippool -s [-dtv] [-M <core>] [-N <namelist>] DESCRIPTION
Ippool is used to manage information stored in the IP pools subsystem of IPFilter. Configuration file information may be parsed and loaded into the kernel, currently configured pools removed or changed as well as inspected. The command line options used are broken into two sections: the global options and the instance specific options. GLOBAL OPTIONS
-d Toggle debugging of processing the configuration file. -n This flag (no-change) prevents ippool from actually making any ioctl calls or doing anything which would alter the currently running kernel. -v Turn verbose mode on. COMMAND OPTIONS
-a Add a new data node to an existing pool in the kernel. -A Add a new (empty) pool to the kernel. -f <file> Read in IP pool configuration information from the file and load it into the kernel. -F Flush loaded pools from the kernel. -l Display a list of pools currently loaded into the kernel. -r Remove an existing data node from a pool in the kernel. -R Remove an existing pool from within the kernel. -s Display IP pool statistical information. OPTIONS
-i <ipaddr>[/<netmask>] Sets the IP address for the operation being undertaken with an all-one's mask or, optionally, a specific netmask given in either the dotted-quad notation or a single integer. -m <name> Sets the pool name for the current operation. -M <core> Specify an alternative path to /dev/kmem to retrieve statistical information from. -N <namelist> Specify an alternative path to lookup symbol name information from when retrieving statistical information. -o <role> Sets the role with which this pool is to be used. Currently only ipf, auth and count are accepted as arguments to this option. -S <seed> Sets the hashing seed to the number specified. Only for use with hash type pools. -t <type> Sets the type of pool being defined. Myst be one of tree, hash, group-map. -u When parsing a configuration file, rather than load new pool data into the kernel, unload it. FILES
/dev/iplookup /etc/ippool.conf SEE ALSO
ippool(5), ipf(8), ipfstat(8) IPPOOL(8)
Man Page